/* Design System - ProLaw Inspired with Business Card Branding */
:root {
    --primary-dark: #262626;
    --secondary-gray: #525252;
    --accent-teal: #002E2B;
    --accent-navy: #111029;
    --pure-white: #FFFFFF;
    
    /* Extended palette */
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --border-gray: #E9ECEF;
    --text-light: #495057;
    
    /* Typography */
    --font-heading: 'DM Serif Display', serif;
    --font-body: 'DM Sans', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--primary-dark);
    background: var(--pure-white);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gray);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.brand-info h1 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-body);
    color: var(--primary-dark);
}

.brand-info span {
    font-size: 0.7rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-teal);
}

.nav-dropdown {
    position: relative;
}

.dropdown-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.arrow-down {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .arrow-down {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border-gray);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: var(--primary-dark);
    color: white;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        border-top: 1px solid var(--border-gray);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        opacity: 0;
        visibility: hidden;
        transform: none;
        margin-top: 1rem;
        padding-left: 1rem;
        border-left: 2px solid var(--border-gray);
        max-height: 0;
        overflow-y: auto;
        transition: all 0.3s ease;
    }

    .nav-dropdown.active .dropdown-content {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
        overflow-y: auto;
    }
}

/* Mobile menu animation */
.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);
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.nav-link {
    display: block !important;
    padding: 0.75rem 1.25rem !important;
    color: var(--primary-dark) !important;
    text-decoration: none;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    transition: all 0.2s ease !important;
    border-radius: 6px !important;
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-dark) !important;
    color: var(--pure-white) !important;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.navbar-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-dark);
    transition: 0.3s;
    border-radius: 1px;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: 0.125em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 200px;
    padding: 0.5rem 0;
    margin: 0;
    background-color: var(--pure-white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    list-style: none;
}

.dropdown-menu.show,
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: var(--primary-dark);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--pure-white);
    background-color: var(--primary-dark);
}

.dropdown-item.active {
    color: var(--pure-white);
    background-color: var(--primary-dark);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--pure-white);
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Organik şekiller ve animasyonlar için alan hazır */
.organic-shape {
    position: absolute;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.hero-title .highlight {
    font-style: italic;
    color: var(--accent-teal);
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--primary-dark);
    color: var(--pure-white);
    border-color: var(--primary-dark);
}

.btn-primary:hover {
    background: var(--secondary-gray);
    border-color: var(--secondary-gray);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-visual {
    position: relative;
    height: 700px;
    border-radius: 12px;
    overflow: hidden;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-banner-img {
    width:85%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero görseli için placeholder stili */
.hero-placeholder,
.team-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    color: var(--medium-gray);
    border: 2px dashed var(--border-gray);
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.hero-placeholder p,
.team-placeholder p {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.7;
}

.hero-quote {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

#typewriter-text {
    min-height: 2.5rem;
    display: flex;
    align-items: center;
}

.hero-quote blockquote {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.hero-quote cite {
    font-size: 0.85rem;
    color: var(--medium-gray);
    font-style: normal;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-header {
    text-align: left;
    margin-bottom: 4rem;
    max-width: 600px;
}

.services-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.services-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--pure-white);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid var(--border-gray);
    animation: fadeInUp 0.8s ease-out;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-dark);
    color: var(--pure-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    animation: pulse 2s infinite;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    color: var(--accent-teal);
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: var(--pure-white);
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--primary-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: var(--pure-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--border-gray);
    animation: fadeInUp 0.8s ease-out;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.team-image {
    height: 350px;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
}

/* Team fotoğrafları için placeholder hazır */

.team-info {
    padding: 2rem;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.team-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-teal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.team-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.team-contact {
    border-top: 1px solid var(--border-gray);
    padding-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    font-weight: 600;
    color: var(--primary-dark);
    min-width: 30px;
}

.contact-item a {
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--primary-dark);
    color: var(--pure-white);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--pure-white);
}

.contact-info > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--pure-white);
    font-family: var(--font-body);
}

.contact-detail p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-detail a {
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 500;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--pure-white);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--pure-white);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--pure-white);
    background: rgba(255, 255, 255, 0.15);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

select.form-control {
    cursor: pointer;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--secondary-gray);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand .brand-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--pure-white);
    margin: 0 0 0.5rem 0;
    font-family: var(--font-body);
}

.footer-brand .brand-text span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-links h4,
.footer-legal h4 {
    color: var(--pure-white);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--pure-white);
}

.footer-bottom {
    text-align: center;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-text:last-child {
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.faq-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: var(--pure-white);
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
    font-family: var(--font-body);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-teal);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: var(--pure-white);
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.process-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-dark);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    font-family: var(--font-heading);
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-family: var(--font-body);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.testimonials-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.testimonial-author strong {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.95rem;
    color: var(--medium-gray);
}

/* Why Choose Us Section */
.why-section {
    padding: 6rem 0;
    background: var(--pure-white);
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.why-content > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.why-features {
    display: grid;
    gap: 2rem;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-icon {
    font-size: 2rem;
    min-width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    font-family: var(--font-body);
}

.feature-text p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.why-visual {
    height: 462px;
    border-radius: 12px;
    overflow: hidden;
}

.why-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.why-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    color: var(--medium-gray);
    border: 2px dashed var(--border-gray);
}

/* Detail Pages Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-gray) 100%);
    color: var(--pure-white);
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-header-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.page-header-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--pure-white);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.detail-content {
    padding: 4rem 0;
}

.detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.main-content {
    animation: fadeInLeft 1s ease-out;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--accent-teal);
    padding-bottom: 1rem;
}

.content-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.content-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-teal);
    margin-bottom: 1rem;
}

.content-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.sub-section {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-teal);
}

.sub-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.sub-section li {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.advantage-list {
    list-style: none;
    padding: 0;
}

.advantage-list li {
    background: var(--light-gray);
    padding: 1rem 1.5rem;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-teal);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.advantage-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-item {
    background: var(--pure-white);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-teal);
}

.service-item h4 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.service-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.sidebar {
    animation: fadeInRight 1s ease-out;
}

.contact-box,
.related-services {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-gray);
}

.contact-box h3,
.related-services h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.contact-box p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info .contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--pure-white);
    border-radius: 8px;
}

.contact-info .contact-item strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.contact-info .contact-item a {
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 500;
}

.contact-info .contact-item a:hover {
    text-decoration: underline;
}

.related-services ul {
    list-style: none;
    padding: 0;
}

.related-services li {
    margin-bottom: 0.75rem;
}

.related-services a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.75rem;
    display: block;
    background: var(--pure-white);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.related-services a:hover {
    background: var(--accent-teal);
    color: var(--pure-white);
    transform: translateX(5px);
}

/* Process Steps for Detail Pages */
.process-steps {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.process-step .step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-teal);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.process-step .step-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}

.process-step .step-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

/* About Page Styles */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content-section {
    padding: 4rem 0;
    background: var(--pure-white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.about-intro h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.about-intro .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    gap: 3rem;
}

.content-block {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.content-block h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.content-block p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
}

.content-block ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.content-block li {
    background: var(--pure-white);
    padding: 1rem;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-teal);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.content-block li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-block li strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 3rem;
    background: var(--primary-dark);
    border-radius: 16px;
    color: var(--pure-white);
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--pure-white);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-item .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.team-detail-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.team-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.lawyer-profile {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.lawyer-profile:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.lawyer-image {
    text-align: center;
    margin-bottom: 2rem;
}

.lawyer-placeholder {
    width: 200px;
    height: 200px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid var(--border-gray);
}

.lawyer-placeholder .placeholder-icon {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}

.lawyer-placeholder p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
    font-weight: 500;
}

.lawyer-info h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    text-align: center;
    font-family: var(--font-body);
}

.lawyer-info h4 {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--accent-teal);
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.lawyer-info > p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.lawyer-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.detail-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
}

.detail-item strong {
    color: var(--primary-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.detail-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-item li {
    background: var(--pure-white);
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    color: var(--text-light);
    border-left: 3px solid var(--accent-teal);
}

.contact-info {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    background: var(--pure-white);
    padding: 1rem;
    border-radius: 8px;
}

.contact-info .contact-item:last-child {
    margin-bottom: 0;
}

.contact-info .contact-item strong {
    color: var(--primary-dark);
    font-weight: 600;
    min-width: 40px;
}

.contact-info .contact-item a {
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 500;
}

.contact-info .contact-item a:hover {
    text-decoration: underline;
}

.why-choose-section {
    padding: 6rem 0;
    background: var(--pure-white);
}

.why-container h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 4rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-item {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: var(--pure-white);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.why-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.why-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Blog Section Styles */
.blog-section {
    padding: 6rem 0;
    background: var(--pure-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-card {
    background: var(--pure-white);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 250px;
    background: var(--light-gray);
    overflow: hidden;
    border-bottom: 1px solid var(--border-gray);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Blog Detail Styles */
.blog-detail {
    padding: 4rem 0;
    background: var(--pure-white);
}

.blog-detail-header {
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
    padding: 0 2rem;
}

.blog-detail-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.blog-detail-banner {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    border-radius: 16px;
    overflow: hidden;
}

.blog-detail-banner img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-detail-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-detail-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.blog-detail-footer {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    border-top: 1px solid var(--border-gray);
    padding-top: 2rem;
}

/* Contact Page Styles */
.contact-main-section {
    padding: 4rem 0;
    background: var(--pure-white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.contact-info > p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.contact-details {
    display: grid;
    gap: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.contact-detail:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.detail-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--primary-dark);
    color: var(--pure-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    font-family: var(--font-body);
}

.detail-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.detail-content a {
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 500;
}

.detail-content a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--border-gray);
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.contact-form > p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.message-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group .form-control {
    background: var(--pure-white);
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    padding: 1rem;
    font-size: 1rem;
    color: var(--primary-dark);
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.form-group .form-control:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(0, 46, 43, 0.1);
}

.form-group .form-control::placeholder {
    color: var(--medium-gray);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-check-input {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.form-check-label {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
}

.message-form .btn {
    background: var(--primary-dark);
    color: var(--pure-white);
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.message-form .btn:hover {
    background: var(--secondary-gray);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.quick-contact-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.quick-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.quick-container h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.quick-container > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lawyers-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.lawyer-contact-card {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-gray);
    text-align: center;
    transition: all 0.3s ease;
}

.lawyer-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.lawyer-avatar {
    margin-bottom: 2rem;
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    background: var(--primary-dark);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto;
}

.lawyer-contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}

.lawyer-contact-info > p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.specialties span {
    background: var(--light-gray);
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-call {
    background: var(--primary-dark);
    color: var(--pure-white);
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-call:hover {
    background: var(--secondary-gray);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--pure-white);
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.office-map-section {
    padding: 6rem 0;
    background: var(--pure-white);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.map-container h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 3rem;
}

.map-placeholder {
    background: var(--light-gray);
    border: 2px dashed var(--border-gray);
    border-radius: 16px;
    padding: 4rem 2rem;
    margin: 0 auto;
    max-width: 800px;
}

.map-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.map-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}

.map-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-dark);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
    }

    .hero-visual {
        height: auto;
    }

    .services-header {
        text-align: center;
        max-width: none;
    }

    .team-header {
        margin-bottom: 3rem;
    }

    .why-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sidebar {
        order: -1;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .lawyer-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lawyers-contact {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-section {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
        padding: 2rem;
    }

    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 1rem;
    }

    .logo-img {
        height: 50px;
    }

    .navbar-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--pure-white);
        border-top: 1px solid var(--border-gray);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav.active {
        display: flex;
    }

    .navbar-toggle {
        display: flex;
    }

    .hero-section {
        padding-top: 60px;
    }

    .hero-visual {
        height: 300px;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-image {
        height: 300px;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo-img {
        height: 50px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .why-visual {
    height: auto !important;
    
}

    /* Organik şekiller mobilde gizli */
}

@media (max-width: 480px) {
    .navbar-container,
    .hero-container,
    .services-container,
    .team-container,
    .contact-container,
    .footer-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        text-align: center;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .lawyer-placeholder {
        width: 150px;
        height: 150px;
    }

    .lawyer-profile {
        padding: 2rem;
    }

    .content-block {
        padding: 1.5rem;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
    }

    .stat-item .stat-number {
        font-size: 2rem;
    }

    .why-item {
        padding: 1.5rem;
    }

    .contact-detail {
        padding: 1.5rem;
    }

    .lawyer-contact-card {
        padding: 2rem;
    }

    .map-placeholder {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .stats-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .contact-detail {
        flex-direction: column;
        text-align: center;
    }

    .detail-icon {
        align-self: center;
    }

    .page-header {
        padding: 6rem 0 3rem;
    }

    .about-intro h2,
    .team-header h2,
    .quick-container h2,
    .map-container h2,
    .why-container h2 {
        font-size: 2rem;
    }

    .lawyer-details {
        gap: 1rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }
}