/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Sayfa geçiş optimizasyonu */
* {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Ensure fixed elements (like WhatsApp button) behave correctly on iOS */
html, body {
    -webkit-perspective: none !important;
    perspective: none !important;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

/* Smooth loading için */
.page-content {
    opacity: 0;
    animation: fadeIn 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Resim yükleme optimizasyonu */
img {
    will-change: transform;
    transform: translateZ(0);
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Hero banner optimizasyonu */
.hero-banner {
    will-change: transform;
    transform: translateZ(0);
}

/* Grid animasyonları için */
.expertise-grid, .petitions-grid, .articles-grid {
    will-change: transform;
    transform: translateZ(0);
}

/* İletişim Formu Mesajları */
.form-message {
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message i {
    font-size: 1.2rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Hata Mesajları */
.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Loading Durumu */
.submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn.loading i.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Stilleri */
.header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 0;
    height: 130px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: background 0.3s ease;
}

.hamburger-menu { display: none; }

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 200px;
    height: 200px;
    max-height: 2000px;
    object-fit: contain;
    object-fit: contain;
}

.lawyer-name h2 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #fff;
    font-weight: 400;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #d4af37;
}

.nav-menu a.active {
    color: #d4af37;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #d4af37;
}

.contact-btn {
    background: #d4af37 !important;
    color: #1a1a1a !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500 !important;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #b8941f !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
    margin-top: 0;
    padding-top: 90px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.highlight {
    color: #d4af37;
    font-weight: 700;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #d4af37;
    transform: scale(1.2);
}

.dot:hover {
    background: #d4af37;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1100;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #fff;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ana Sayfa Ek Bölümler */
.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 25px;
    font-style: italic;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d4af37;
    color: #1a1a1a;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
    color: #1a1a1a;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.expertise-preview {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.expertise-grid-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.expertise-item-preview {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.expertise-item-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #b8941f);
}

.expertise-item-preview:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.expertise-item-preview .expertise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    position: relative;
}

.expertise-item-preview .expertise-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
}

.expertise-item-preview .expertise-icon i {
    font-size: 2rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.expertise-item-preview h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
}

.expertise-item-preview p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.expertise-cta {
    text-align: center;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1a1a1a;
    color: #fff;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(26, 26, 26, 0.3);
    border: 2px solid transparent;
}

.view-all-btn:hover {
    background: #d4af37;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    border-color: #b8941f;
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(3px);
}

/* Hakkımızda Sayfası Ek Bölümler */
.stats-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.mission-section {
    padding: 80px 0;
    background: #fff;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.mission-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.mission-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.mission-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 600px;
    margin: 0;
}

.mission-list li {
    padding: 15px 0;
    color: #666;
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.mission-list li:last-child {
    border-bottom: none;
}

.mission-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.2rem;
}

.values-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Uzmanlık Detay Sayfası */
.expertise-detail-section {
    padding: 80px 0;
    background: #fff;
}

.expertise-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.expertise-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.expertise-info .lead {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Dilekçe Modal */
.petition-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.petition-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: #fff;
    border-radius: 10px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    z-index: 10001;
    margin: auto;
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.modal-header h3 {
    margin: 0;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: #d4af37;
}

.modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.petition-content {
    font-family: 'Times New Roman', serif;
    line-height: 1.8;
    color: #333;
    white-space: pre-line;
    font-size: 14px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    background: #f8f9fa;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary {
    background: #6c757d;
    color: #fff;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-primary {
    background: #d4af37;
    color: #1a1a1a;
}

.btn-primary:hover {
    background: #b8941f;
}

/* Makale Detay Sayfası */
.article-detail-section {
    padding: 80px 0;
    background: #fff;
}

.article-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.article-category {
    background: #d4af37;
    color: #1a1a1a;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.article-date {
    color: #666;
    font-size: 0.9rem;
}

.article-author {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.3;
}

/* Ana Sayfa ve Diğer Sayfalar İçin Stiller */
main, .page-content {
    margin-top: 0;
    padding-top: 90px;
}

.hero-banner {
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-overlay p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Content Section */
.content-section {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.content-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #d4af37;
    margin: 30px 0 15px 0;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

.content-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
}

.content-image {
    position: relative;
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Values Section */
.values-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.values-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.value-item i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.value-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Expertise Section */
.expertise-section {
    padding: 80px 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.expertise-item {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    height: 280px; /* Daha küçük yükseklik */
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.expertise-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.expertise-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.4s ease;
}

.expertise-item:hover .expertise-background {
    transform: scale(1.1);
}

.expertise-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
    transition: opacity 0.4s ease;
}

.expertise-item:hover .expertise-background::before {
    opacity: 0.7;
}

.expertise-content {
    position: relative;
    z-index: 3;
    padding: 20px; /* Daha küçük padding */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* color: #fff; - Kaldırıldı, PHP sayfasında override ediliyor */
}

.expertise-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; /* Daha küçük font */
    /* color: #fff; - Kaldırıldı, PHP sayfasında override ediliyor */
    margin-bottom: 12px; /* Daha küçük margin */
    font-weight: 700;
    /* text-shadow: 0 2px 4px rgba(0,0,0,0.5); - Kaldırıldı, PHP sayfasında override ediliyor */
    line-height: 1.2;
}

.expertise-content p {
    /* color: #fff; - Kaldırıldı, PHP sayfasında override ediliyor */
    line-height: 1.6;
    margin-bottom: 15px; /* Daha küçük margin */
    /* font-size: 0.9rem; - Kaldırıldı, PHP sayfasında override ediliyor */
    /* opacity: 0.95; - Kaldırıldı, PHP sayfasında override ediliyor */
    /* text-shadow: 0 1px 2px rgba(0,0,0,0.5); - Kaldırıldı, PHP sayfasında override ediliyor */
}

.expertise-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px; /* Daha küçük gap */
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1a1a1a;
    padding: 8px 16px; /* Daha küçük padding */
    border-radius: 20px; /* Daha küçük border-radius */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem; /* Daha küçük font */
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4); /* Daha küçük shadow */
    border: 2px solid transparent;
}

.expertise-detail-btn:hover {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    border-color: #d4af37;
}

.expertise-detail-btn i {
    transition: transform 0.3s ease;
}

.expertise-detail-btn:hover i {
    transform: translateX(5px);
}

/* Uzmanlık Alanları Sayfası İçin Özel Stiller */
.expertise-item-page {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    height: 280px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.expertise-item-page:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.expertise-item-page .expertise-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.4s ease;
}

.expertise-item-page:hover .expertise-background {
    transform: scale(1.1);
}

.expertise-item-page .expertise-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
    transition: opacity 0.4s ease;
}

.expertise-item-page:hover .expertise-background::before {
    opacity: 0.7;
}

.expertise-item-page .expertise-content {
    position: relative;
    z-index: 3;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.expertise-item-page .expertise-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.expertise-item-page .expertise-content p {
    /* color: #fff; - Kaldırıldı, PHP sayfasında override ediliyor */
    line-height: 1.6;
    margin-bottom: 15px;
    /* font-size: 0.9rem; - Kaldırıldı, PHP sayfasında override ediliyor */
    /* opacity: 0.95; - Kaldırıldı, PHP sayfasında override ediliyor */
    /* text-shadow: 0 1px 2px rgba(0,0,0,0.5); - Kaldırıldı, PHP sayfasında override ediliyor */
}

.expertise-item-page .expertise-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    align-self: center;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    border: 2px solid transparent;
}

.expertise-item-page .expertise-detail-btn:hover {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    border-color: #d4af37;
}

.expertise-item-page .expertise-detail-btn i {
    transition: transform 0.3s ease;
}

.expertise-item-page .expertise-detail-btn:hover i {
    transform: translateX(5px);
}

/* Ana Sayfa Uzmanlık Alanları - Fotoğraflı Tasarım */
.expertise-item-preview-photo {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    height: 280px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.expertise-item-preview-photo:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.expertise-item-preview-photo .expertise-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.4s ease;
}

.expertise-item-preview-photo:hover .expertise-background {
    transform: scale(1.1);
}

.expertise-item-preview-photo .expertise-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
    transition: opacity 0.4s ease;
}

.expertise-item-preview-photo:hover .expertise-background::before {
    opacity: 0.7;
}

.expertise-item-preview-photo .expertise-content {
    position: relative;
    z-index: 3;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.expertise-item-preview-photo .expertise-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.expertise-item-preview-photo .expertise-content p {
    /* color: #fff; - Kaldırıldı, PHP sayfasında override ediliyor */
    line-height: 1.6;
    margin-bottom: 0;
    /* font-size: 0.9rem; - Kaldırıldı, PHP sayfasında override ediliyor */
    /* opacity: 0.95; - Kaldırıldı, PHP sayfasında override ediliyor */
    /* text-shadow: 0 1px 2px rgba(0,0,0,0.5); - Kaldırıldı, PHP sayfasında override ediliyor */
}

/* Eski stil (fallback için) */

/* CTA Section */
.cta-section {
    background: #1a1a1a;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #d4af37;
    color: #1a1a1a;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #b8941f;
    transform: translateY(-2px);
    color: #1a1a1a;
}

/* Articles Section */
.articles-section {
    padding: 80px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.article-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 30px;
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.article-date {
    color: #666;
    font-size: 0.9rem;
}

.article-category {
    background: #d4af37;
    color: #1a1a1a;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #b8941f;
}


/* Petitions Section */
.petitions-section {
    padding: 80px 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.section-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.petitions-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.petition-category {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.petition-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.petition-category h3 i {
    color: #d4af37;
}

.petition-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.petition-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.petition-item:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border-color: #d4af37;
}

.petition-info h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 600;
}

.petition-info p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.petition-category-badge {
    background: #d4af37;
    color: #1a1a1a;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 5px;
}

.download-btn {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1a1a1a;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
    border: 2px solid transparent;
}

.download-btn:hover {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    border-color: #d4af37;
}

.disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 30px;
    margin-top: 60px;
}

.disclaimer h3 {
    color: #856404;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer h3 i {
    color: #f39c12;
}

.disclaimer p {
    color: #856404;
    margin: 0;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: #fff;
}

.contact-details h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.contact-details p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.social-links {
    margin-top: 40px;
}

.social-links h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #d4af37;
    color: #fff;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #d4af37;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: #d4af37;
    color: #1a1a1a;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    background: #b8941f;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    /* Mobil hamburger menü */
    .hamburger-menu {
        display: block;
        cursor: pointer;
        padding: 10px;
    }

    .hamburger-icon {
        display: flex;
        flex-direction: column;
        width: 25px;
        height: 20px;
        justify-content: space-between;
    }

    .hamburger-icon span {
        width: 100%;
        height: 3px;
        background: #d4af37;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .hamburger-menu.active .hamburger-icon span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger-menu.active .hamburger-icon span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .hamburger-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }
    
    .logo-section {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    /* Larger logo on mobile as requested */
    .logo img {
        width: 150px;
        height: 150px;
    }

    /* Elegant name styling next to the logo */
    .lawyer-name h2 {
        font-size: 18px;
        line-height: 1.2;
        font-weight: 500;
        letter-spacing: 0.3px;
        color: #fff;
    }

    /* Increase header height to fit 150px logo */
    .header { height: 160px; }
    
    /* Only our hamburger icon should be visible */
    .header .mobile-menu-btn,
    .header .menu-toggle,
    .header .menu-btn { display: none !important; }

    .nav-menu {
        position: fixed;
        top: 160px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 18px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    /* Remove extra space between fixed header and hero on mobile */
    .hero-section { padding-top: 0; }
    main, .page-content { padding-top: 0; }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .whatsapp-float {
        position: fixed !important;
        width: 56px;
        height: 56px;
        font-size: 26px;
        bottom: max(18px, env(safe-area-inset-bottom));
        right: max(18px, env(safe-area-inset-right));
        z-index: 2000;
        transform: translateZ(0);
        will-change: transform;
        -webkit-transform: translateZ(0);
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .petitions-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .expertise-grid-preview {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .mission-content h2 {
        font-size: 2rem;
    }

    .mission-content p {
        font-size: 1.1rem;
    }

    /* Makale ve Uzmanlık Detay Sayfaları Responsive */
    .article-content h2 {
        font-size: 2rem;
    }

    .expertise-info h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
    }
    
    .nav-menu ul {
        gap: 15px;
        padding: 15px;
    }
    
    .nav-menu a {
        font-size: 16px;
        padding: 12px 0;
    }

    /* Ensure small phones also use the larger mobile logo */
    .logo img {
        width: 150px;
        height: 150px;
    }

    .lawyer-name h2 {
        font-size: 20px;
        line-height: 1.2;
        font-weight: 600;
        letter-spacing: 0.3px;
    }

    /* Match header/menu offsets with bigger logo */
    .header { height: 160px; }
    .nav-menu { top: 160px; }

    .hero-overlay h1 {
        font-size: 1.5rem;
    }

    .content-text h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .mission-content h2 {
        font-size: 1.8rem;
    }

    /* Makale ve Uzmanlık Detay Sayfaları Responsive - Mobil */
    .article-content h2 {
        font-size: 1.5rem;
    }

    .expertise-info h2 {
        font-size: 1.5rem;
    }

    .article-detail-content,
    .expertise-detail-content {
        padding: 0 15px;
    }
}
