/*!
Theme Name: Kadence Child
Theme URI: https://www.kadencewp.com/kadence-theme/
Template: kadence
Author: Kadence WP
Author URI: https://www.kadencewp.com/
Description: A child theme for the Kadence Theme.
Version: 1.0.0
License: GNU General Public License v3.0 (or later)
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: kadence-child
*/

/* Theme customization starts here
-------------------------------------------------------------- */

/* Reset and Base Styles */

/* Sayfa içeriği ile header arasına boşluk ekle */
body {
    padding-top: 50px;
    /* Header yüksekliğine göre ayarla */
}

/* Mobilde biraz daha az boşluk verelim */
@media (max-width: 768px) {
    body {
        padding-top: 90px;
    }
}

/* ==== GLOBAL STYLES ==== */
body {
    font-family: 'Inter', sans-serif !important;
    color: #333;
    background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif !important;
    color: var(--navy);
    font-weight: 600;
}

a {
    color: var(--gold);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-600);
}

button,
input[type="submit"],
.btn {
    background-color: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

button:hover,
input[type="submit"]:hover,
.btn:hover {
    background-color: var(--gold-600);
    transform: scale(1.03);
}
/* Header her zaman lacivert olsun */
.header,
.header.scrolled {
    background: var(--navy) !important;
    box-shadow: none !important; /* gölge istemezsen */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Color Variables */
:root {
    --navy: #0A1D37;
    --navy-700: #0F2D57;
    --navy-900: #050E1C;
    --gold: #CFAE70;
    --gold-600: #C59D4A;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --green-500: #10b981;
    --green-600: #059669;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Icons */
.icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: var(--navy) !important;
    box-shadow: none !important;
}

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

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

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

.logo-icon {
    background: var(--gold);
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.logo-link:hover .logo-icon {
    transform: scale(1.1);
}

.logo-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.header.scrolled .logo-icon .icon {
    color: var(--navy);
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    transition: color 0.3s ease;
}

.header.scrolled .logo-text h1 {
    color: var(--navy);
}

.logo-text p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.header.scrolled .logo-text p {
    color: var(--gray-600);
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-desktop a {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    transition: color 0.3s ease;
}



.nav-desktop a:hover {
    color: var(--gold);
}

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

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.header.scrolled .mobile-menu-btn .icon {
    color: var(--navy);
}

.mobile-menu-btn .close-icon {
    display: none;
}

.mobile-menu-btn.active .menu-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

.mobile-menu {
    display: none;
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu nav {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu a {
    display: block;
    color: var(--navy);
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 50%, var(--navy-900) 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNDRkFFNzAiIGZpbGwtb3BhY2l0eT0iMC4wNSI+PHBhdGggZD0iTTM2IDE0YzAtMS4xLS45LTItMi0ycy0yIC45LTIgMiAuOSAyIDIgMiAyLS45IDItMnptLTggMGMwLTEuMS0uOS0yLTItMnMtMiAuOS0yIDIgLjkgMiAyIDIgMi0uOSAyLTJ6bS0xNiAwYzAtMS4xLS45LTItMi0ycy0yIC45LTIgMiAuOSAyIDIgMiAyLS45IDItMnoiLz48L2c+PC9nPjwvc3ZnPg==');
    opacity: 0.4;
}

.hero-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-blur-1 {
    top: 5rem;
    right: 5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(207, 174, 112, 0.1);
}

.hero-blur-2 {
    bottom: 5rem;
    left: 5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(207, 174, 112, 0.05);
}

.hero .container {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-content {
    animation: fadeIn 0.6s ease-out;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-badge span {
    background: rgba(207, 174, 112, 0.2);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(207, 174, 112, 0.3);
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.text-gold {
    display: block;
    color: var(--gold);
    margin-top: 0.5rem;
}

.hero-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.75;
    max-width: 40rem;
}

@media (min-width: 768px) {
    .hero-text {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 10px 15px -3px rgba(207, 174, 112, 0.3);
}

.btn-primary:hover {
    background: var(--gold-600);
    transform: scale(1.05);
    box-shadow: 0 10px 25px -3px rgba(207, 174, 112, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-navy {
    background: var(--navy);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-navy:hover {
    background: var(--navy-700);
    transform: scale(1.05);
}

.btn-full {
    width: 100%;
}

.hero-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .hero-contact {
        flex-direction: row;
    }
}

.contact-item {
    display: flex;
    align-items: center;
    color: white;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--gold);
}

.contact-icon {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-right: 0.75rem;
    transition: background 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: rgba(207, 174, 112, 0.2);
}

.contact-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.contact-value {
    font-weight: 600;
}

.hero-stats {
    display: none;
    position: relative;
    animation: scaleIn 0.4s ease-out;
}

@media (min-width: 1024px) {
    .hero-stats {
        display: block;
    }
}

.stats-blur {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(207, 174, 112, 0.2) 0%, transparent 100%);
    border-radius: 1.5rem;
    filter: blur(60px);
}

.stats-container {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
    font-size: 2.25rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.scroll-indicator a:hover {
    color: var(--gold);
}

/* Sections */
.section {
    padding: 6rem 0;
    background: white;
}

.section-gray {
    background: var(--gray-50);
}

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

.section-label {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--navy);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    color: var(--gray-600);
    max-width: 42rem;
    margin: 0 auto;
}

/* About Section */
.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-content {
    animation: slideUp 0.6s ease-out;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--gray-600);
    line-height: 1.75;
}

.about-cta {
    padding-top: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
    padding: 2rem;
    border-radius: 1rem;
    color: white;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.value-card:hover {
    transform: scale(1.05);
}

.value-icon {
    background: rgba(207, 174, 112, 0.2);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.value-icon .icon {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--gold);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Practice Areas */
.practice-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .practice-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.practice-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

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

.practice-icon {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.practice-card:hover .practice-icon {
    transform: scale(1.1);
}

.practice-icon .icon {
    width: 2rem;
    height: 2rem;
    color: var(--gold);
}

.practice-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.practice-card>p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.practice-services {
    border-top: 1px solid var(--gray-100);
    padding-top: 1.5rem;
}

.practice-services h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.practice-services ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.practice-services li {
    display: flex;
    align-items: flex-start;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.practice-services li::before {
    content: "•";
    color: var(--gold);
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.practice-link {
    display: inline-flex;
    align-items: center;
    color: var(--gold);
    font-weight: 600;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.practice-card:hover .practice-link {
    transform: translateX(0.5rem);
}

.practice-link:hover {
    color: var(--gold-600);
}

.practice-link .icon {
    margin-left: 0.5rem;
    width: 1rem;
    height: 1rem;
}

/* Lawyers Section */
.lawyer-card {
    max-width: 56rem;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: grid;
    gap: 0;
}

@media (min-width: 1024px) {
    .lawyer-card {
        grid-template-columns: 1fr 2fr;
    }
}

.lawyer-sidebar {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-600) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.lawyer-photo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.lawyer-photo>div {
    width: 10rem;
    height: 10rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.lawyer-photo-inner {
    width: 8rem;
    height: 8rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lawyer-initial {
    font-size: 3.75rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: bold;
    color: white;
}

.lawyer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lawyer-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
}

.lawyer-info-item .icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

.lawyer-info-item span {
    font-size: 0.875rem;
    font-weight: 500;
}

.lawyer-content {
    padding: 2.5rem;
    color: white;
}

.lawyer-header {
    margin-bottom: 1rem;
}

.lawyer-header h3 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.lawyer-title {
    color: var(--gold);
    font-size: 1.125rem;
    font-weight: 500;
}

.lawyer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.lawyer-specialties {
    margin-bottom: 1.5rem;
}

.lawyer-specialties h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.lawyer-specialties h4 .icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    color: var(--gold);
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.specialty-tags span {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lawyer-email {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.lawyer-email a {
    display: inline-flex;
    align-items: center;
    color: var(--gold);
    font-weight: 500;
    transition: color 0.3s ease;
}

.lawyer-email a:hover {
    color: rgba(207, 174, 112, 0.7);
}

.lawyer-email .icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.lawyer-cta {
    margin-top: 4rem;
    text-align: center;
}

.lawyer-cta p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

/* Blog Section */
.blog-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: var(--gray-50);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.blog-image {
    height: 12rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
    position: relative;
    overflow: hidden;
}

.blog-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNDRkFFNzAiIGZpbGwtb3BhY2l0eT0iMC4xIj48cGF0aCBkPSJNMzYgMTRjMC0xLjEtLjktMi0yLTJzLTIgLjktMiAyIC45IDIgMiAyIDItLjkgMi0yem0tOCAwYzAtMS4xLS45LTItMi0ycy0yIC45LTIgMiAuOSAyIDIgMiAyLS45IDItMnptLTE2IDBjMC0xLjEtLjktMi0yLTJzLTIgLjktMiAyIC45IDIgMiAyIDItLjkgMi0yeiIvPjwvZz48L2c+PC9zdmc+');
    opacity: 0.4;
}

.blog-category {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(207, 174, 112, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(207, 174, 112, 0.3);
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.blog-meta-item {
    display: flex;
    align-items: center;
}

.blog-meta-item .icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.25rem;
}

.blog-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--navy);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: var(--gold);
}

.blog-content>p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.blog-author {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.blog-author .icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--gold);
    font-weight: 600;
    transition: all 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.blog-card:hover .blog-read-more {
    transform: translateX(0.5rem);
}

.blog-read-more:hover {
    color: var(--gold-600);
}

.blog-read-more .icon {
    margin-left: 0.5rem;
    width: 1rem;
    height: 1rem;
}

.blog-cta {
    margin-top: 3rem;
    text-align: center;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.testimonial-quote {
    position: absolute;
    top: -1rem;
    left: -1rem;
    background: var(--gold);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.testimonial-quote .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--navy);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold);
}

.testimonial-card>p {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-author h4 {
    font-weight: 600;
    color: var(--navy);
}

.testimonial-author p {
    font-size: 0.875rem;
    color: var(--gold);
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.125rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: bold;
}

.testimonials-banner {
    margin-top: 4rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    color: white;
}

.testimonials-banner h3 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .testimonials-banner h3 {
        font-size: 2.25rem;
    }
}

.testimonials-banner>p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.banner-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 48rem;
    margin: 0 auto;
}

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

.banner-stat-value {
    font-size: 2.25rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.banner-stat p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Contact Section */
.contact-info-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-info-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
    padding: 2rem;
    border-radius: 1rem;
    color: white;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-info-card:hover {
    transform: scale(1.05);
}

.contact-info-icon {
    background: rgba(207, 174, 112, 0.2);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-info-icon .icon {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--gold);
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--gold);
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-form-wrapper {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 1rem;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--gray-300);
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(207, 174, 112, 0.1);
}

.form-group textarea {
    resize: none;
}

.form-row {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.btn-navy:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-loading {
    display: none;
}

.contact-form.submitting .btn-text {
    display: none;
}

.contact-form.submitting .btn-loading {
    display: inline;
}

.form-success {
    display: none;
    padding: 1rem;
    background: #dcfce7;
    border: 1px solid #86efac;
    border-radius: 0.5rem;
    color: #166534;
    font-size: 0.875rem;
}

.contact-form.success .form-success {
    display: block;
}

.contact-map {
    height: 100%;
    min-height: 37.5rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 50%, var(--navy-900) 100%);
    color: white;
}

.footer>.container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    background: var(--gold);
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.footer-logo-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--navy);
}

.footer-logo h3 {
    font-size: 1.25rem;
    font-weight: bold;
}

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

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
}

.footer-contact .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact span,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold);
}

.footer-disclaimer {
    background: var(--navy-900);
    padding: 1rem 0;
}

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

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--green-500);
    color: white;
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 50;
}

.whatsapp-button:hover {
    background: var(--green-600);
    transform: scale(1.1);
}

.whatsapp-button .icon {
    width: 1.75rem;
    height: 1.75rem;
}

.whatsapp-tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 1rem;
    background: var(--navy);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

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

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Kadence varsayılan header ve footer gizle */
.site-header,
.site-footer {
    display: none !important;
}

/* Mobil uyumlu düzenleme - Values Grid */
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr; /* 1 sütun, alt alta */
    gap: 1rem;
  }

  .value-card {
    padding: 1.25rem;
    text-align: center;
  }

  .value-card h3 {
    font-size: 1.1rem;
  }

  .value-card p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .value-icon {
    margin: 0 auto 1rem auto; /* ikon ortalansın */
  }
}

/* Tablet uyumu (örnek 769px–1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr); /* tablet görünümünde 2 sütun */
    gap: 1.25rem;
  }
}

.value-card h3 {
    color: #CFAE71 !important;
}


.lawyer-specialties h4  {
    color:#CFAE71;
    
}
.lawyer-header h3 {
    color: #CFAE71;
}

.contact-info-card h3 { 
    color: #CFAE71;
}
/* WordPress logoyu küçük göster */
.custom-logo {
  max-height: 85px; /* logo yüksekliği */
  width: auto;
  height: auto;
}

@media (max-width: 1024px) {
  .custom-logo {
    max-height: 45px; /* tablet */
  }
}

@media (max-width: 768px) {
  .custom-logo {
    max-height: 40px; /* mobil */
  }
}
/* Logo tamamen sola yaslansın */
.header-content {
  display: flex;
  justify-content: flex-start; /* sola hizala */
  align-items: center;
  gap: 2rem; /* logo ile menü arasında boşluk bırak */
}

/* Menü (nav) sağda kalsın */
.nav-desktop {
  margin-left: auto; /* menüyü sağa iter */
}

/* Logo alanı boşluk bırakmasın */
.logo-area,
.custom-logo-link {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
/* ===== Toggle Butonunu Sağa Yasla (mobilde) ===== */


/* Toggle butonu konum */
.mobile-menu-btn {
    margin-left: auto;
    /* sağ tarafa iter */
    background: #264271;


/* Masaüstünde gizle */
@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none !important;
    }
}
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #0A1D37;
  z-index: 100;
  padding: 1.5rem 1rem;
}

/* Mobil Menü */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 9999;
}

/* Menü aktif olunca */
.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Menü içeriği */
.mobile-menu nav {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu a {
    display: block;
    color: var(--navy);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--gold);
}

.lawyer-photo-inner {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lawyer-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.75rem 0.75rem 0 0;
}

.blog-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), #132c4d);
  border-radius: 0.75rem 0.75rem 0 0;
}

.blog-card {
  overflow: hidden;
  border-radius: 0.75rem;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}