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

:root {
    --primary: #000000;
    --secondary: #1a1a1a;
    --accent: #2d2d2d;
    --gold: #808080;
    --text-dark: #000000;
    --text-light: #666666;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --border: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

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

/* ==================== Navigation ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #666666;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #666666;
}

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

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 2rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-dark);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.lang-btn:hover {
    background: var(--bg-light);
}

.lang-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

/* ==================== Hero Section ==================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&q=80&w=2000') center/cover;
    opacity: 0.15;
    filter: grayscale(100%) contrast(1.2);
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: var(--white);
    filter: grayscale(0%);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-box strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-box span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Hero Form */
.hero-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header i {
    font-size: 3rem;
    color: #666666;
    margin-bottom: 1rem;
    display: block;
    filter: grayscale(100%);
}

.form-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.whatsapp-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: #333333;
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.whatsapp-btn:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ==================== Team Section ==================== */
.team-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.section-label {
    display: inline-block;
    color: #666666;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title-wrapper h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.lawyer-card-wrapper {
    display: flex;
    justify-content: center;
}

.lawyer-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.lawyer-card::after {
    content: 'Detaylar için tıklayın';
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: 0.5px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lawyer-card::before {
    content: '';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%23000000' d='M7 0L8.41 1.41L5.83 4H14V6H5.83L8.41 8.59L7 10L0 4L7 0Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    z-index: 2;
}

.lawyer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.lawyer-card:hover::before {
    opacity: 1;
    transform: translateX(3px);
    background-color: rgba(0, 0, 0, 0.15);
}

.lawyer-card:active {
    transform: translateY(-5px) scale(0.98);
}

.lawyer-photo {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lawyer-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.lawyer-card:hover .lawyer-photo img {
    filter: grayscale(0%);
}

.lawyer-details {
    padding: 2rem;
    text-align: center;
}

.lawyer-details h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.lawyer-role {
    display: block;
    color: #666666;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.lawyer-expertise {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==================== Services Section ==================== */
.services-section {
    padding: 6rem 0;
    background: #000000;
    color: var(--white);
}

.services-section .section-title-wrapper h2 {
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::after {
    content: 'Detaylar için tıklayın';
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 0L7.41 1.41L4.83 4H12V6H4.83L7.41 8.59L6 10L0 4L6 0Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-item:hover::after {
    opacity: 1;
}

.service-item:hover::before {
    opacity: 1;
    transform: translateX(3px);
}

.service-item:active {
    transform: translateY(-2px) scale(0.98);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    filter: grayscale(0%);
}

.service-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ==================== Blog Section ==================== */
.blog-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--border);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3rem;
}

.blog-card-content {
    padding: 2rem;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.blog-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-card-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-card-link:hover {
    gap: 1rem;
}

/* ==================== Testimonials Section ==================== */
.testimonials-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
    color: #666666;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 600;
}

.testimonial-info h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ==================== FAQ Section ==================== */
.faq-section {
    padding: 6rem 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* ==================== Contact Section ==================== */
.contact-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info>p {
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #666666;
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-map {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: var(--white);
    transition: all 0.3s ease;
}

.contact-map:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.map-container {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-light);
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
    z-index: 2;
    border-radius: 20px;
}

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

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

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    z-index: 1;
    background: transparent;
    pointer-events: auto;
    transition: background 0.3s ease;
}

.map-overlay:hover {
    background: rgba(0, 0, 0, 0.02);
}

.map-button {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, #1a1a1a 100%);
    color: var(--white);
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    letter-spacing: 0.3px;
    overflow: hidden;
}

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

.map-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35), 0 0 0 8px rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, #1a1a1a 0%, var(--primary) 100%);
}

.map-button:hover::before {
    width: 300px;
    height: 300px;
}

.map-button:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.map-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.map-button:hover i {
    transform: translateX(3px);
}

.map-button span {
    position: relative;
    z-index: 1;
}

/* ==================== Footer ==================== */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link-group h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ==================== Modal ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: relative;
    z-index: 2001;
    background: var(--white);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 2002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background: #000000;
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
    border-color: #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-close:active {
    transform: rotate(90deg) scale(0.95);
}

.modal-body {
    padding: 3rem;
    overflow-y: auto;
    max-height: calc(90vh - 6rem);
}

.lawyer-modal-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.lawyer-modal-content img {
    width: 100%;
    border-radius: 15px;
    object-fit: contain;
    background: #f5f5f5;
    filter: grayscale(100%);
}

.lawyer-modal-info h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.lawyer-modal-info .role {
    display: block;
    color: #666666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.lawyer-modal-info .expertise {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.lawyer-modal-info .bio {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1rem;
}

.lawyer-modal-info .education {
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.95rem;
}

.service-modal-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-modal-content .icon {
    font-size: 4rem;
    color: #666666;
    margin-bottom: 1.5rem;
}

.service-modal-content .description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.service-modal-content .services-list {
    list-style: none;
    margin-top: 2rem;
}

.service-modal-content .services-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: start;
    gap: 1rem;
}

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

.service-modal-content .services-list i {
    color: #666666;
    margin-top: 0.25rem;
}

/* ==================== Responsive ==================== */
@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

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

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .lang-switcher {
        margin-left: 0;
        margin-top: 1rem;
    }

    .lawyer-modal-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

    /* ==================== Mobile Navigation ==================== */
    .navbar {
        padding: 0.875rem 0;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        position: sticky;
        top: 0;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
        border-radius: 10px;
    }

    .logo-name {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .logo-subtitle {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }

    .nav-menu {
        background: var(--white);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        border-radius: 0 0 20px 20px;
        padding: 1.5rem;
        gap: 0.5rem;
    }

    .nav-menu a {
        font-size: 1.05rem;
        padding: 1.25rem 1rem;
        border-radius: 12px;
        border-bottom: none;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        background: var(--bg-light);
        transform: translateX(5px);
    }

    .lang-switcher {
        margin: 1.5rem 0 0 0;
        justify-content: center;
        width: 100%;
        gap: 0.75rem;
    }

    .lang-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    /* ==================== Mobile Hero ==================== */
    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 3rem;
        background: linear-gradient(180deg, #000000 0%, #1a1a1a 50%, #000000 100%);
        position: relative;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        position: relative;
        z-index: 1;
    }

    .hero-text {
        text-align: center;
        padding: 0;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.25rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.25;
        margin-bottom: 1.25rem;
        letter-spacing: -0.5px;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.7;
        opacity: 0.95;
        padding: 0 0.5rem;
        max-width: 100%;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 1.5rem;
        padding: 1.5rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .stat-box {
        text-align: center;
        flex: 1;
    }

    .stat-box strong {
        font-size: 2.25rem;
        display: block;
        margin-bottom: 0.25rem;
    }

    .stat-box span {
        font-size: 0.75rem;
        opacity: 0.9;
        letter-spacing: 0.5px;
    }

    .hero-form {
        padding: 2rem 1.5rem;
        margin-top: 0;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        background: var(--white);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .form-header {
        margin-bottom: 1.75rem;
    }

    .form-header i {
        font-size: 2.75rem;
        margin-bottom: 1rem;
    }

    .form-header h3 {
        font-size: 1.35rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .form-header p {
        font-size: 0.9rem;
        color: var(--text-light);
    }

    .whatsapp-btn {
        padding: 1.15rem 1.5rem;
        font-size: 1rem;
        border-radius: 12px;
        font-weight: 600;
        letter-spacing: 0.3px;
    }

    /* ==================== Mobile Sections ==================== */
    .team-section,
    .services-section,
    .faq-section,
    .contact-section {
        padding: 4rem 0;
    }

    .section-title-wrapper {
        margin-bottom: 3rem;
        padding: 0 0.5rem;
    }

    .section-label {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
        letter-spacing: 2px;
        font-weight: 700;
    }

    .section-title-wrapper h2 {
        font-size: 1.9rem;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .section-title-wrapper p {
        font-size: 0.95rem;
        margin-top: 0.75rem;
        color: var(--text-light);
    }

    /* ==================== Mobile Services ==================== */
    .services-section {
        background: #000000;
        padding: 4rem 0;
        position: relative;
    }

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

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

    .service-item {
        padding: 2rem 1.5rem;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .service-item::after {
        content: 'Detaylar için tıklayın';
        font-size: 0.7rem;
        bottom: 0.75rem;
        opacity: 0.5;
    }

    .service-item::before {
        width: 20px;
        height: 20px;
        top: 0.75rem;
        right: 0.75rem;
        background-size: 10px;
    }

    .service-item:active {
        transform: scale(0.98);
        background: rgba(255, 255, 255, 0.08);
    }

    .service-item:active::after {
        opacity: 0.8;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.12);
    }

    .service-item h4 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        font-weight: 600;
    }

    .service-item p {
        font-size: 0.95rem;
        line-height: 1.7;
        opacity: 0.85;
    }

    /* ==================== Mobile Team ==================== */
    .team-section {
        background: var(--bg-light);
    }

    .lawyer-card {
        max-width: 100%;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .lawyer-card::after {
        font-size: 0.7rem;
        bottom: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .lawyer-card::before {
        width: 24px;
        height: 24px;
        top: 0.75rem;
        right: 0.75rem;
        background-size: 12px;
    }

    .lawyer-photo {
        height: 320px;
        background: linear-gradient(180deg, #f5f5f5 0%, #e8e8e8 100%);
    }

    .lawyer-details {
        padding: 2rem 1.5rem;
        background: var(--white);
    }

    .lawyer-details h3 {
        font-size: 1.35rem;
        margin-bottom: 0.5rem;
    }

    .lawyer-role {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .lawyer-expertise {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* ==================== Mobile FAQ ==================== */
    .faq-container {
        margin-top: 2rem;
    }

    .faq-item {
        border-radius: 14px;
        margin-bottom: 1rem;
        border: 1px solid var(--border);
        background: var(--white);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .faq-item.active {
        border-color: var(--primary);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        border-radius: 14px;
    }

    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.5;
        padding-right: 2.5rem;
        font-weight: 600;
    }

    .faq-icon {
        font-size: 1.1rem;
        right: 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.7;
        color: var(--text-light);
    }

    /* ==================== Mobile Contact ==================== */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info h2 {
        font-size: 1.9rem;
        margin-bottom: 0.75rem;
        letter-spacing: -0.5px;
    }

    .contact-info>p {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
        color: var(--text-light);
    }

    .contact-details {
        gap: 2rem;
    }

    .contact-item {
        flex-direction: row;
        gap: 1.25rem;
        padding: 1.5rem;
        border-radius: 16px;
        background: var(--white);
        border: 1px solid var(--border);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        transition: all 0.3s ease;
        align-items: flex-start;
    }

    .contact-item:active {
        transform: scale(0.98);
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
    }

    .contact-item i {
        font-size: 1.5rem;
        color: var(--primary);
        margin-top: 0.25rem;
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-light);
        border-radius: 10px;
    }

    .contact-item strong {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        display: block;
        color: var(--text-dark);
        font-weight: 600;
    }

    .contact-item p {
        font-size: 0.95rem;
        line-height: 1.7;
        color: var(--text-light);
        word-break: break-word;
        hyphens: auto;
        margin: 0;
    }

    .contact-map {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .contact-map:hover {
        transform: none;
    }

    .map-container {
        border-radius: 20px;
    }

    .map-container iframe {
        height: 350px;
        filter: grayscale(0%);
    }

    .map-overlay {
        z-index: 1;
    }

    .map-button {
        bottom: 1.5rem;
        right: 1.5rem;
        left: auto;
        width: auto;
        padding: 1.15rem 2rem;
        font-size: 1rem;
        border-radius: 50px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
        justify-content: center;
        background: linear-gradient(135deg, var(--primary) 0%, #1a1a1a 100%);
        min-width: 180px;
    }

    .map-button:active {
        transform: scale(0.96);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .map-button:hover {
        transform: translateY(-2px) scale(1.01);
    }

    .map-button i {
        font-size: 1.1rem;
    }

    /* ==================== Mobile Footer ==================== */
    .footer {
        padding: 3rem 0 2rem;
        background: var(--primary);
    }

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

    .footer-brand h3 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
        letter-spacing: 1px;
    }

    .footer-brand p {
        font-size: 0.9rem;
        opacity: 0.8;
        line-height: 1.6;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        width: 100%;
    }

    .footer-link-group {
        width: 100%;
    }

    .footer-link-group h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
        font-weight: 600;
        opacity: 0.95;
    }

    .footer-links a {
        font-size: 0.9rem;
        padding: 0.6rem 0;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .footer-links a:active {
        background: rgba(255, 255, 255, 0.1);
    }

    .footer-bottom {
        padding-top: 2rem;
        font-size: 0.85rem;
        opacity: 0.7;
    }

    /* ==================== Mobile Modal ==================== */
    .modal-container {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
        max-width: 100%;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 42px;
        height: 42px;
        font-size: 1.4rem;
        z-index: 2002;
        background: rgba(0, 0, 0, 0.1);
        border: 2px solid rgba(0, 0, 0, 0.15);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .modal-body {
        padding: 1.5rem 1rem;
        max-height: calc(100vh - 4rem);
    }

    .lawyer-modal-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .lawyer-modal-content img {
        max-height: 300px;
        margin: 0 auto;
    }

    .lawyer-modal-info h2 {
        font-size: 1.5rem;
    }

    .lawyer-modal-info .bio {
        font-size: 0.95rem;
    }

    .service-modal-content h2 {
        font-size: 1.5rem;
    }

    .service-modal-content .icon {
        font-size: 3rem;
    }

    .service-modal-content .description {
        font-size: 1rem;
    }

    .service-modal-content .services-list li {
        padding: 0.75rem 0;
        font-size: 0.9rem;
    }
}

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

    .navbar {
        padding: 0.75rem 0;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .logo-name {
        font-size: 1rem;
    }

    .logo-subtitle {
        font-size: 0.6rem;
    }

    .hero {
        padding-top: 70px;
        padding-bottom: 2rem;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .stat-box strong {
        font-size: 2rem;
    }

    .stat-box span {
        font-size: 0.85rem;
    }

    .hero-form {
        padding: 1.5rem 1rem;
    }

    .form-header h3 {
        font-size: 1.25rem;
    }

    .form-header p {
        font-size: 0.85rem;
    }

    .whatsapp-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .section-label {
        font-size: 0.75rem;
    }

    .service-item {
        padding: 1.5rem 1rem;
    }

    .service-item::after {
        font-size: 0.65rem;
        bottom: 0.5rem;
    }

    .service-item::before {
        width: 18px;
        height: 18px;
        top: 0.5rem;
        right: 0.5rem;
        background-size: 9px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .service-item h4 {
        font-size: 1.1rem;
    }

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

    .lawyer-photo {
        height: 300px;
    }

    .lawyer-card::after {
        font-size: 0.65rem;
        bottom: 0.5rem;
        padding: 0.35rem 0.7rem;
    }

    .lawyer-card::before {
        width: 20px;
        height: 20px;
        top: 0.5rem;
        right: 0.5rem;
        background-size: 10px;
    }

    .lawyer-details {
        padding: 1.5rem;
    }

    .lawyer-details h3 {
        font-size: 1.25rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-item strong {
        font-size: 0.95rem;
    }

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

    .map-container iframe {
        height: 300px;
    }
    
    .map-button {
        bottom: 1.25rem;
        right: 1.25rem;
        left: auto;
        padding: 1rem 1.75rem;
        font-size: 0.95rem;
        min-width: 160px;
    }

    .modal-container {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 42px;
        height: 42px;
        font-size: 1.4rem;
        z-index: 2002;
        background: rgba(0, 0, 0, 0.1);
        border: 2px solid rgba(0, 0, 0, 0.15);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .modal-body {
        padding: 1.5rem 1rem;
    }

    .lawyer-modal-info h2 {
        font-size: 1.5rem;
    }

    .service-modal-content h2 {
        font-size: 1.5rem;
    }

    .service-modal-content .icon {
        font-size: 3rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
        padding: 1.5rem;
    }

    .nav-menu a {
        font-size: 1rem;
        padding: 0.75rem 0;
    }

    /* Daha iyi touch target'lar */
    .whatsapp-btn,
    .map-button,
    .service-item,
    .lawyer-card {
        min-height: 44px;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }

    /* Daha iyi okunabilirlik */
    .contact-item p {
        word-break: break-word;
        hyphens: auto;
    }

    /* Daha iyi spacing */
    .hero-stats {
        padding: 1.25rem 0.5rem;
    }

    .stat-box {
        padding: 0.5rem;
    }

    /* Daha iyi form görünümü */
    .hero-form {
        margin-top: 1.5rem;
    }

    /* Daha iyi harita görünümü */
    .map-container {
        margin-top: 1.5rem;
    }

    /* Daha iyi section spacing */
    .team-section,
    .services-section,
    .faq-section,
    .contact-section {
        padding: 3rem 0;
    }

    /* Daha iyi modal görünümü */
    .modal-container {
        padding: 1rem;
    }

    /* Daha iyi footer */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    /* Daha iyi logo görünümü */
    .logo {
        gap: 0.75rem;
    }

    /* Daha iyi buton görünümü */
    button,
    .btn {
        touch-action: manipulation;
    }
}

/* ==================== Ekstra Küçük Ekranlar (360px ve altı) ==================== */
@media (max-width: 360px) {
    .container {
        padding: 0 0.875rem;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .stat-box strong {
        font-size: 1.75rem;
    }

    .stat-box span {
        font-size: 0.8rem;
    }

    .section-title-wrapper h2 {
        font-size: 1.5rem;
    }

    .contact-info h2 {
        font-size: 1.75rem;
    }

    .logo-name {
        font-size: 0.9rem;
    }

    .logo-subtitle {
        font-size: 0.55rem;
    }

    .whatsapp-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .service-item {
        padding: 1.25rem 0.875rem;
    }

    .contact-item {
        padding: 1.25rem;
    }

    .map-container iframe {
        height: 250px;
    }
}

/* ==================== Landscape Mod (Yatay) ==================== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-wrapper {
        gap: 1.5rem;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .nav-menu {
        max-height: 80vh;
        overflow-y: auto;
    }
}

/* ==================== Touch Optimizasyonları ==================== */
@media (hover: none) and (pointer: coarse) {
    /* Touch cihazlar için */
    a,
    button,
    .service-item,
    .lawyer-card,
    .faq-question {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        cursor: pointer;
    }

    .service-item:hover,
    .lawyer-card:hover {
        transform: none;
    }

    .lawyer-card:hover::after {
        opacity: 0.8;
    }

    .lawyer-card:hover::before {
        opacity: 0.8;
    }

    .service-item:active,
    .lawyer-card:active {
        transform: scale(0.98);
    }

    .lawyer-card:active::after {
        opacity: 1;
    }

    .whatsapp-btn:active,
    .map-button:active {
        transform: scale(0.95);
    }
}