/* Genel Stil */
:root {
    --primary-color: #1a365d;
    --secondary-color: #4299e1;
    --text-color: #333;
    --light-bg: #f8fafc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a4a7d 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Grid ve Kart Stilleri */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Footer Stili */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Mobil Responsive Tasarım */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link {
        padding: 1rem;
        display: block;
        border-radius: 5px;
    }

    .nav-link:hover {
        background: var(--light-bg);
    }

    .grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

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

    .logo {
        font-size: 1.3rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .hero {
        padding: 100px 20px 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .card {
        padding: 1.5rem;
    }

    .hero-image {
        width: 100%;
        position: relative;
    }

    .hero-image img {
        width: 100%;
        margin-left: 0;
        transform: none;
    }

    .hero-content {
        position: relative;
        width: 100%;
        padding: 40px 20px;
        text-align: center;
        background: rgba(0, 0, 0, 0.5);
    }
}

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

    .logo {
        font-size: 1.2rem;
    }

    .logo i {
        font-size: 1.4rem;
    }

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

    .grid {
        padding: 1rem;
        gap: 1.5rem;
    }

    .hero-container {
        height: auto;
        min-height: 100vh;
    }

    .hero-image {
        height: 100%;
    }

    .hero-image img {
        height: 100%;
        object-position: center;
    }
}

/* Genel Yardımcı Sınıflar */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 4rem 0;
}

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

/* Animasyonlar */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Form Stilleri */
.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: #15294d;
    transform: translateY(-2px);
}

/* Tablo Stilleri */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

@media (max-width: 768px) {
    th, td {
        padding: 0.8rem;
    }
}

/* İmaj Responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Özel Scroll Bar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #15294d;
}

header {
    position: fixed;
    width: 100%;
    padding: 20px 40px;
    background: white;
    z-index: 100;
}

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

.logo {
    position: fixed;
    left: 40px;
    top: 50%;
    transform: rotate(-90deg) translateX(-50%);
    transform-origin: left;
    font-weight: bold;
    font-size: 2.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #002B3D;
    z-index: 100;
    transition: transform 0.3s ease;
}

.nav-links {
    margin-left: auto;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #002B3D;
    font-size: 1rem;
}

.hero-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    width: 50%;
    height: 100%;
    left: 0;
    overflow: hidden;
}

.hero-image img {
    width: 80%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) grayscale(100%);
    transform: scale(1.1);
    margin-left: 120px;
}

.dark-overlay {
    position: relative;
}

.dark-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3));
}

.tag {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #006241;
}

h1 {
    font-size: 4rem;
    line-height: 1.2;
    color: #002B3D;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Scroll sınıfları için yeni stiller */
.scroll-down .logo {
    transform: rotate(-90deg) translateX(-50%) translateY(150px);
    opacity: 0;
}

.scroll-up .logo {
    transform: rotate(-90deg) translateX(-50%) translateY(0);
    opacity: 1;
}

.second-section {
    min-height: 100vh;
    padding: 100px;
    background-color: white;
}

.about-container {
    max-width: 1000px;
    margin-bottom: 200px;
}

.about-tag {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #006241;
    margin-bottom: 30px;
}

.about-container h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #002B3D;
    margin-bottom: 40px;
    max-width: 900px;
}

.news-section h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #002B3D;
    margin-bottom: 40px;
}

.read-more, .view-all {
    display: inline-flex;
    align-items: center;
    color: #006241;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.arrow {
    margin-left: 10px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.read-more:hover, .view-all:hover {
    color: #004d33;
}

.read-more:hover .arrow, .view-all:hover .arrow {
    transform: translateX(5px);
}

.services-section {
    background-color: white;
    color: #002B3D;
    padding: 100px 50px;
    min-height: 100vh;
}

.services-header {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.services-header h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: #002B3D;
}

.services-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 900px;
    color: #666666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Overlay için yeni stiller */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.service-overlay h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-overlay .service-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-overlay .service-link:hover {
    background-color: white;
    color: black;
}

.service-card:hover::before,
.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon img {
    width: 50px;
    height: 50px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #002B3D;
}

.service-card p {
    color: #666666;
    line-height: 1.5;
}

/* Dropdown menü için yeni stiller */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 300px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 5px;
    padding: 10px 0;
}

.dropdown-content a {
    color: #002B3D;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.view-more-link {
    background-color: #f5f5f5;
    text-align: center;
    padding: 15px;
    border-top: 1px solid #eee;
    color: #006241;
    font-weight: bold;
}

.view-more-link:hover {
    background-color: #e5e5e5;
}

/* Arama kutusu için yeni stiller */
.search-box {
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #002B3D;
}

.search-input:focus {
    outline: none;
    border-color: #006241;
}

/* Arama sonuçları için stil */
.dropdown-content a.hidden {
    display: none;
}

/* Faaliyet Alanları Sayfası Stilleri */
.practice-areas-container {
    padding: 120px 50px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.practice-header {
    margin-bottom: 50px;
}

.practice-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #002B3D;
}

.practice-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
}

.practice-content {
    display: flex;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Sidebar için yeni stiller */
.sidebar {
    width: 200px; /* Genişliği artırdık */
    position: sticky;
    top: 120px;
    height: fit-content;
}

.search-section {
    margin-bottom: 20px;
    padding: 0 15px;
}

.area-search-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #002B3D;
    margin-bottom: 10px;
}

.area-search-button {
    width: 100%;
    padding: 8px;
    background-color: #006241;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.area-search-button:hover {
    background-color: #004d33;
}

.alphabet-index {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* Alfabetik İndeks */
.alphabet-index ul {
    list-style: none;
    border-left: 2px solid #eee;
}

.alphabet-index li {
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.alphabet-index li:hover,
.alphabet-index li.active {
    color: #006241;
    border-left: 2px solid #006241;
    margin-left: -2px;
    font-weight: bold;
}

/* Faaliyet Alanları Grid */
.areas-wrapper {
    flex: 1;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.area-card {
    padding: 30px;
    background: #f5f5f5;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.area-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #002B3D;
}

.area-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.area-link {
    display: inline-flex;
    align-items: center;
    color: #006241;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
}

.area-link .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.area-link:hover .arrow {
    transform: translateX(5px);
}

/* Sayfalama */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.page-numbers {
    display: flex;
    gap: 10px;
}

.page-numbers span {
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.page-numbers span.active {
    background: #006241;
    color: white;
}

.prev-page,
.next-page {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #006241;
    padding: 8px;
}

.prev-page:hover,
.next-page:hover {
    color: #004d33;
}

/* Detay sayfası stilleri */
.area-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.area-detail-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: #f9f9f9;
    border-radius: 10px;
}

.area-detail-header h1 {
    color: #002B3D;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.area-section {
    margin-bottom: 60px;
}

.area-section h2 {
    color: #006241;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.services-list ul,
.why-us ul {
    list-style: none;
    padding: 0;
}

.services-list li,
.why-us li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    color: #444;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.expertise-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.expertise-item h3 {
    color: #006241;
    margin-bottom: 15px;
}

.contact-button {
    display: inline-block;
    background: #006241;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: #004d33;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .area-detail-header h1 {
        font-size: 2rem;
    }
}

.navbar {
    background-color: #1a1a1a;
    position: static;
    width: 100%;
    padding: 1rem 0;
}

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

.navbar-logo {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
}

.navbar-menu {
    display: flex;
    gap: 2rem;
}

.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #c8a45c;
}

/* İçerik için margin eklemeye devam ediyoruz */
.area-detail-container {
    padding: 2rem;
}

/* İstatistikler bölümü */
.stats-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f2543 0%, #1a365d 100%);
    color: white;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/concrete-wall-3.png');
    opacity: 0.05;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 3.8rem; /* Biraz büyütüldü */
    margin-bottom: 10px;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.1;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* Müvekkil Yorumları Bölümü - Minimal Tasarım */
.testimonials-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 0;
    position: relative;
    transition: all 0.3s ease;
    border-left: 4px solid #1a365d;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateX(10px);
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 30px;
    font-style: italic;
    flex: 1;
}

.testimonial-content::before {
    content: '"';
    font-family: 'Georgia', serif;
    font-size: 4rem;
    position: absolute;
    left: 20px;
    top: 20px;
    color: #1a365d;
    opacity: 0.1;
}

.testimonial-author {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
    margin-top: auto;
}

.testimonial-author-name {
    font-weight: 700;
    color: #1a365d;
    font-size: 1rem;
    margin-bottom: 5px;
}

.testimonial-author-title {
    color: #718096;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
} 