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

html {
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    width: 100%;
    min-height: 100%;
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

:root {
    --primary-color: #1A3E6E;
    --primary-light: #2C5F9C;
    --secondary-color: #E8F0FA;
    --accent-color: #2C5F9C;
    --gold-color: #d4af37;
    --gold-light: #e5c158;
    --gold-dark: #b8941f;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --bg-light: #f5f7fa;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    width: 100%;
    min-height: 100%;
    position: relative;
    padding-top: 72px; /* Header fixed olduğu için içerik altında kalmasın */
}

/* SEO için ekranda gizli, arama motorları görebilir */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hamburger menü açıkken sayfa kaymasın – sadece overflow (üst menü takılmasın) */
html.menu-open,
body.menu-open {
    overflow: hidden !important;
    touch-action: none;
    height: 100%;
}

.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.32s ease, visibility 0.32s ease;
    pointer-events: none;
}

.mobile-nav-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

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

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Header – her zaman üstte sabit (fixed), sayfa aşağı insa da görünsün */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}


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

.logo {
    flex-shrink: 0;
    min-width: 0;
}

.logo-link {
    font-family: 'Playfair Display', serif;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
}

.logo-mark {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.logo-text-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
    gap: 0.15rem;
    min-width: 0;
}

.logo .logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.logo-tagline {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted, #64748b);
}

/* Footer: isim + ikon */
.footer-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.footer-brand .logo-mark {
    width: 40px;
    height: 40px;
}

.footer-brand .footer-title {
    margin: 0;
}

.footer-copyright-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0;
}

.footer-copy-logo {
    flex-shrink: 0;
    opacity: 0.9;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.nav .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 25px;
    border: 1.5px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav .btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(26, 62, 110, 0.2);
}

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

.nav-menu li {
    position: relative;
}

/* Masaüstünde gizli; mobil panelde "Hemen Ara" (main.js ekler) */
.nav-menu-mobile-call {
    display: none !important;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-menu a i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 1.8rem;
}

.dropdown-menu a i {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    flex-shrink: 0;
    z-index: 1002;
    cursor: pointer;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 2px 14px rgba(26, 62, 110, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(26, 62, 110, 0.06);
    box-shadow: 0 4px 18px rgba(26, 62, 110, 0.18);
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.mobile-menu-toggle.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.mobile-menu-toggle.active span {
    background: var(--white);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold-color) 100%);
    border-color: var(--gold-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--gold-color);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero > .container {
    position: relative;
    z-index: 2;
}

/* Hero arka plan: görsel + video gibi yavaş zoom */
.hero-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: hero-zoom 22s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes hero-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 62, 110, 0.3) 0%, rgba(44, 95, 156, 0.25) 100%);
    z-index: 2;
}

/* Mavi efekt: görsellerin üzerinde hafif mavi katman */
.hero-overlay--blue {
    background: linear-gradient(135deg, rgba(26, 62, 110, 0.4) 0%, rgba(44, 95, 156, 0.32) 50%, rgba(26, 62, 110, 0.38) 100%);
}

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
}

.hero-title-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.35));
}

.hero-title-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-slider {
    position: relative;
    display: inline-block;
    width: 100%;
}

.hero-text-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    text-align: center;
    left: 0;
}

.hero-text-item.active {
    position: relative;
    opacity: 1;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: 30px 0;
}

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

.section-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

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

/* About Preview Section */
.about-preview {
    background: var(--secondary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.about-image {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
}

.about-image-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: none;
    object-fit: cover;
    transition: transform 0.3s ease;
    border: none;
    outline: none;
    filter: none !important;
    -webkit-filter: none !important;
    -moz-filter: none !important;
    -ms-filter: none !important;
    opacity: 1;
    display: block;
}

.about-image-img:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Hakkımda: ofis görseli + mavi efekt (arka plan hakkimda.php'de inline) */
.about-office-visual {
    position: relative;
    height: 320px;
    background: var(--primary-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.about-office-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 62, 110, 0.6) 0%, rgba(44, 95, 156, 0.5) 100%);
    z-index: 0;
}

.about-office-visual .container {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-office-visual .about-office-caption {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* İletişim: bölüm arka planı + mavi efekt (arka plan iletisim.php'de inline) */
.contact-section--with-bg {
    position: relative;
    background: #f4f7fb;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.contact-section--with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.42) 0%, rgba(244, 247, 251, 0.48) 50%, rgba(26, 62, 110, 0.06) 100%);
    z-index: 0;
}

.contact-section--with-bg .container {
    position: relative;
    z-index: 1;
}

/* Features Section */
.features {
    background: var(--white);
    padding: 60px 0;
}

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

/* Ana sayfa için masaüstünde 4 kart yan yana */
section.features.features-home .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.features-slider-container {
    display: none;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 1.5rem;
}

.features-slider {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-card {
    background: transparent;
    padding: 2.5rem;
    border-radius: 0;
    text-align: center;
    box-shadow: none;
    transition: all 0.3s ease;
    border: none;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.feature-icon i {
    font-size: 3.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
    color: var(--gold-color);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.feature-card:hover .feature-title {
    color: var(--primary-color);
}

.feature-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Stats Section */
.stats {
    background: var(--white);
    padding: 80px 0 120px 0;
    color: var(--text-dark);
}

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

.stats-slider-container {
    display: none;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 1.5rem;
}

.stats-slider {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: transparent;
    border-radius: 0;
    transition: all 0.3s ease;
    border: none;
    box-shadow: none;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    opacity: 1;
}

.stat-icon i {
    font-size: 3.5rem;
    color: var(--gold-color);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Services Section */
.services {
    background: var(--white);
}

.services-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 3rem;
}

.services-slider {
    display: flex;
    gap: 2rem;
    width: fit-content;
    animation: slide-services 30s linear infinite;
    transition: transform 0.5s ease;
    scroll-behavior: smooth;
}

.services-slider-container:hover .services-slider {
    animation-play-state: paused;
}

@keyframes slide-services {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.slider-btn-left {
    left: -60px;
}

.slider-btn-right {
    right: -60px;
}

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

.slider-btn:disabled:hover {
    transform: translateY(-50%);
    background: var(--primary-color);
    z-index: 1;
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(26, 62, 110, 0.1);
    position: relative;
    overflow: hidden;
    flex: 0 0 300px;
    min-width: 300px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(26, 62, 110, 0.15);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.service-icon i {
    font-size: 3rem;
    display: inline-block;
}

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

.service-card:hover .service-icon i {
    color: var(--gold-color);
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary-light);
}

.service-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Team Section */
.team {
    background: var(--secondary-color);
}

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

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.team-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-photo-placeholder {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.team-photo-placeholder i {
    font-size: 3.5rem;
}

.team-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.team-bio {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    background: var(--secondary-color);
    padding: 80px 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: stretch;
}

.why-choose-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.why-choose-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-grid-6 {
    grid-template-columns: repeat(3, 1fr);
}

.why-choose-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 1rem auto 0;
    text-align: left;
    max-width: 250px;
    width: 100%;
}

.service-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
    top: 0.4rem;
}

.why-choose-slider-container {
    display: none;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 1.5rem;
}

.why-choose-slider {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.why-choose-card {
    background: transparent;
    padding: 2.5rem;
    border-radius: 0;
    text-align: center;
    box-shadow: none;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: none;
}

.why-choose-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.why-choose-icon i {
    font-size: 3.5rem;
    display: inline-block;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.15) rotate(5deg);
}

.why-choose-card:hover .why-choose-icon i {
    color: var(--primary-light);
}

.why-choose-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.why-choose-card:hover .why-choose-title {
    color: var(--primary-light);
}

.why-choose-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.testimonials-slider-container {
    display: none;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 1.5rem;
}

.testimonials-slider {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    background: var(--secondary-color);
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

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

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Blog Preview Section */
.blog-preview {
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.blog-slider-container {
    display: none;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-slider {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-image-placeholder {
    width: 100%;
    height: 200px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0.8;
}

.blog-image-placeholder i {
    font-size: 4rem;
}

.blog-content {
    padding: 1rem;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.75rem;
}

.blog-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.blog-link:hover {
    color: var(--primary-light);
}

/* CTA Section: arka plan görseli + mavi efekt */
.cta {
    position: relative;
    background: var(--primary-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Mavi örtü hafif — CTA arka plan görseli daha görünsün */
    background: linear-gradient(135deg, rgba(26, 62, 110, 0.22) 0%, rgba(44, 95, 156, 0.18) 100%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45), 0 0 20px rgba(26, 62, 110, 0.35);
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.98);
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

.cta-buttons .btn i {
    margin-right: 0.5rem;
}

/* CTA mavi arka planda butonlar okunaklı */
.cta .btn-primary {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
}
.cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border-color: rgba(255, 255, 255, 0.9);
}
.cta .btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.9);
}
.cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: #fff;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
    align-items: start;
}

/* Hızlı Linkler + Hizmetlerimiz her zaman yan yana */
.footer-links-services-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
    min-width: 0;
}

/* Sosyal medya ikonları – footer sütunlarının altında, copyright üstünde */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-social a {
    color: var(--white);
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 1.1rem;
}
.footer-social a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Hızlı Linkler + Gizlilik yan yana */
.footer-quick-privacy {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
}
.footer-quick-links { min-width: 0; }
.footer-privacy .footer-links { margin-bottom: 0; }

.footer-column {
    min-width: 0;
    overflow: visible;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.footer-column * {
    max-width: 100%;
}

/* Adres için özel kural - tam görünsün */
.footer-contact li:has(.fa-map-marker-alt) a span {
    max-width: none;
    width: auto;
    display: block;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-subtitle {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.footer-column p {
    margin-bottom: 0.75rem;
    opacity: 0.9;
    line-height: 1.5;
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

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

.footer-links {
    padding: 0;
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

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

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.footer-contact li i {
    margin-top: 0.25rem;
    min-width: 20px;
    flex-shrink: 0;
}

.footer-contact li span,
.footer-contact li a {
    flex: 1;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.5;
}

/* Hızlı İletişim Butonları - Desktop */
.quick-contact-grid,
#quickContactGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Konu alanı – native select, hamburger/listbox yok */
.contact-konu-wrapper { position: relative; }
.contact-konu-select {
    display: block;
    width: 100%;
    padding: 1rem 1.25rem;
    padding-right: 2.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: border-color 0.25s ease, box-shadow 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}
.contact-konu-select:hover {
    border-color: var(--primary-color);
}
.contact-konu-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.contact-konu-select option {
    padding: 0.5rem;
    font-weight: 500;
}

/* İletişim bilgisi kartları – telefon ve e-posta tıklanabilir (aynı stil) */
.contact-item--link:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* İletişim sayfası mobil: Konu alanı ve form taşmasın, hamburger ile çakışma olmasın */
@media (max-width: 768px) {
    .contact-section {
        overflow-x: hidden;
    }
    .contact-section .container {
        overflow-x: hidden;
    }
    .contact-section .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        min-width: 0;
    }
    .contact-section .contact-form-wrapper,
    .contact-section .contact-form {
        max-width: 100%;
        min-width: 0;
        overflow-x: hidden;
    }
    .contact-section .contact-form input,
    .contact-section .contact-form textarea,
    .contact-section .contact-form .contact-file-dropzone {
        max-width: 100%;
        box-sizing: border-box;
    }
    .contact-konu-wrapper {
        max-width: 100%;
        min-width: 0;
    }
    .contact-konu-select {
        min-width: 0;
        box-sizing: border-box;
    }
}

/* Ana sayfa Bize Ulaşın (home-contact-form) mobil: Konu ve form taşmasın */
@media (max-width: 768px) {
    .home-contact-form {
        overflow-x: hidden;
    }
    .home-contact-form .container {
        overflow-x: hidden;
    }
    .home-contact-form .contact-form,
    .home-contact-form .form-group,
    .home-contact-form .contact-konu-wrapper {
        max-width: 100%;
        min-width: 0;
    }
    .home-contact-form .contact-form input,
    .home-contact-form .contact-form textarea {
        max-width: 100%;
        box-sizing: border-box;
    }
    .home-contact-form .contact-konu-select {
        min-width: 0;
        box-sizing: border-box;
    }
}

/* Ana sayfa SSS açılır kapanır (akordeon) */
.faq-preview-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-preview-item {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-preview-item.is-open {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(26, 62, 110, 0.12);
}
.faq-preview-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: background 0.2s ease;
}
.faq-preview-question:hover {
    background: var(--secondary-color);
}
.faq-preview-q-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-preview-q-icon i { font-size: 1.25rem; }
.faq-preview-q-text { flex: 1; }
.faq-preview-chevron {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.faq-preview-item.is-open .faq-preview-chevron {
    transform: rotate(180deg);
}
/* Varsayılan kapalı - sadece .is-open ile açılır */
.faq-preview-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-preview-item.is-open .faq-preview-answer {
    max-height: 400px;
}
.faq-preview-answer p {
    margin: 0;
    padding: 0 1.5rem 1.5rem 1.5rem;
    padding-left: calc(1.5rem + 48px + 1rem);
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}
@media (max-width: 768px) {
    .faq-preview-accordion { gap: 0.5rem; }
    .faq-preview-question { padding: 1rem 1.25rem; font-size: 1rem; }
    .faq-preview-q-icon { width: 42px; height: 42px; min-width: 42px; font-size: 1rem; }
    .faq-preview-answer p { padding-left: 1.5rem; padding-right: 1.5rem; padding-bottom: 1.25rem; }
}

@media (max-width: 1200px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: stretch;
    }
    
    .why-choose-grid-3, .why-choose-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Hakkimda sayfası için 2 kartlı düzen tablet */
    .expertise-2 .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
    
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experience-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .experience-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-contact li span {
        white-space: normal;
    }
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    word-break: break-all;
    display: inline;
    overflow-wrap: anywhere;
    font-size: 0.9rem;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-contact li a span {
    color: var(--white);
    font-size: 0.85rem;
    line-height: 1.5;
    display: block;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    width: 100%;
    max-width: 100%;
}

/* Saat bilgisi için tek satır */
.footer-contact li:has(.fa-clock) span {
    white-space: nowrap;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 0.75rem;
    text-align: center;
    opacity: 0.8;
    font-size: 0.8rem;
}

.footer-bottom p {
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Footer en altı: Web tasarımı kredisi (AIKEY-SOFT) */
.footer-web-credit {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1rem;
    text-align: center;
}

.footer-web-credit-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s ease;
}

.footer-web-credit-link:hover {
    color: #fff;
}

.footer-web-credit-logo {
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
}

.footer-web-credit-text {
    font-weight: 500;
}

/* Mobil: footer telif metni taşmasın, satır kırılsın */
@media (max-width: 576px) {
    .footer-bottom {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }
    .footer-bottom p {
        line-height: 1.5;
        max-width: 100%;
    }
    .footer-web-credit {
        padding: 0.6rem 0.75rem;
    }
    .footer-web-credit-link {
        font-size: 0.75rem;
    }
    .footer-web-credit-logo {
        width: 24px;
        height: 24px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        flex: 1;
        min-width: 0;
    }

    .logo .logo-title {
        font-size: 1.05rem;
    }

    .logo-mark {
        width: 36px;
        height: 36px;
    }

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

    .nav {
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .nav .btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex !important;
        order: 3;
    }

    /* Sağdan açılan panel */
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        left: auto !important;
        width: min(88vw, 300px);
        max-width: 300px;
        height: 100vh;
        height: 100dvh;
        margin: 0;
        padding: 0 0 max(1.5rem, env(safe-area-inset-bottom));
        padding-top: max(5.25rem, calc(env(safe-area-inset-top) + 4.25rem));
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        list-style: none;
        background: linear-gradient(165deg, #ffffff 0%, #f4f7fb 45%, #e8eef6 100%);
        box-shadow: -16px 0 48px rgba(15, 23, 42, 0.2);
        border-left: 1px solid rgba(26, 62, 110, 0.1);
        z-index: 1000;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        transform: translateX(105%);
        transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
        display: flex !important;
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--primary-light, #2d5a8c));
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(26, 62, 110, 0.08);
    }

    .nav-menu > li:last-child {
        border-bottom: none;
    }

    .nav-menu-mobile-call {
        display: list-item !important;
        margin-top: auto;
        padding: 1rem 1.25rem 0.5rem;
        border-top: 1px solid rgba(26, 62, 110, 0.12);
        border-bottom: none !important;
        flex-shrink: 0;
    }

    .nav-menu-mobile-call .nav-menu-call-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.65rem;
        width: 100%;
        padding: 1rem 1.25rem;
        margin: 0;
        font-size: 1.05rem;
        font-weight: 700;
        font-family: 'Inter', system-ui, sans-serif;
        color: #fff !important;
        text-decoration: none;
        background: linear-gradient(135deg, #0d7a4f 0%, #0a5c3c 100%);
        border-radius: 12px;
        box-shadow: 0 4px 14px rgba(13, 122, 79, 0.35);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .nav-menu-mobile-call .nav-menu-call-btn:hover {
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(13, 122, 79, 0.45);
    }

    .nav-menu-mobile-call .nav-menu-call-btn i {
        font-size: 1.1rem;
    }

    .nav-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.35rem;
        font-size: 1.05rem;
        font-weight: 600;
        font-family: 'Inter', system-ui, sans-serif;
        color: var(--text-dark);
        text-decoration: none;
        transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .nav-menu > li > a:hover,
    .nav-menu > li > a.active {
        color: var(--primary-color);
        background: rgba(26, 62, 110, 0.07);
    }

    .nav-menu > li > a.active {
        border-left: 4px solid var(--primary-color);
        padding-left: calc(1.35rem - 4px);
    }

    .nav-menu > li > a.active::after {
        display: none;
    }

    .has-dropdown > a i {
        display: inline-block;
        margin-left: 0.5rem;
        font-size: 0.75rem;
        transition: transform 0.25s ease;
    }

    .has-dropdown.dropdown-open > a i {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.75);
        margin: 0 0.65rem 0.65rem 1rem;
        padding: 0.4rem 0 0.6rem;
        border-radius: 0 0 12px 12px;
        border-left: 3px solid var(--primary-color);
        display: none;
    }

    .dropdown-menu li {
        margin: 0;
        border-bottom: none;
    }

    .dropdown-menu a {
        display: block;
        padding: 0.65rem 1rem 0.65rem 1.15rem;
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--text-dark);
        border-left: none;
    }

    .dropdown-menu a:hover {
        color: var(--primary-color);
        background: rgba(26, 62, 110, 0.05);
        padding-left: 1.35rem;
    }

    .header-content {
        padding: 0.8rem 0;
        gap: 0.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .why-choose-grid {
        display: none;
    }
    
    .why-choose-slider-container {
        display: block;
        overflow-x: visible;
        width: 100%;
    }
    
    .why-choose-slider {
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
        overflow-x: visible;
        padding: 0;
        width: 100%;
    }
    
    .why-choose-slider .why-choose-card {
        padding: 0.4rem 0.25rem;
        min-width: calc(50% - 0.25rem);
        max-width: calc(50% - 0.25rem);
        flex-shrink: 0;
        width: calc(50% - 0.25rem);
        box-sizing: border-box;
    }
    
    .why-choose-slider .why-choose-icon {
        font-size: 0.7rem;
        margin-bottom: 0.15rem;
    }
    
    .why-choose-slider .why-choose-icon i {
        font-size: 0.7rem;
    }
    
    .why-choose-slider .why-choose-title {
        font-size: 0.5rem;
        margin-bottom: 0.15rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .why-choose-slider .why-choose-description {
        font-size: 0.4rem;
        line-height: 1.2;
        margin-bottom: 0.15rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .why-choose-slider .why-choose-card p {
        font-size: 0.38rem;
        line-height: 1.2;
        margin-bottom: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .why-choose-slider .why-choose-card p strong {
        font-size: 0.38rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-image p {
        margin-left: 50px !important;
        text-align: left !important;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid .service-card {
        padding: 1.5rem;
        min-width: 100%;
        max-width: 100%;
    }
    
    .services-grid .service-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .services-grid .service-icon i {
        font-size: 2.5rem;
    }
    
    .services-grid .service-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .services-grid .service-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        display: none;
    }
    
    .testimonials-slider-container {
        display: block;
    }
    
    .testimonials-slider {
        gap: 0;
        flex-wrap: nowrap;
        flex-direction: row;
        align-items: stretch;
    }
    
    /* Mobil: sadece 1 yorum göster */
    .testimonials-slider .testimonial-card {
        padding: 1.25rem 1rem;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        flex-shrink: 0;
        box-sizing: border-box;
    }
    
    .testimonials-slider .testimonial-card:nth-child(n+2) {
        display: none;
    }
    
    .testimonials-slider .testimonial-stars {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .testimonials-slider .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .testimonials-slider .testimonial-author {
        padding-top: 0.75rem;
        border-top: 1px solid var(--border-color);
    }
    
    .testimonials-slider .testimonial-author strong {
        font-size: 1rem;
        margin-bottom: 0.25rem;
        display: block;
    }
    
    .testimonials-slider .testimonial-author span {
        font-size: 0.9rem;
        display: block;
    }
    
    .blog-grid {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-slider-container {
        display: none !important;
    }
    
    .blog-grid .blog-card {
        width: 100%;
    }
    
    .blog-grid .blog-image-placeholder {
        height: 200px;
    }
    
    .blog-grid .blog-content {
        padding: 1rem;
    }
    
    .blog-grid .blog-date {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .blog-grid .blog-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .blog-grid .blog-excerpt {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        max-height: 4.8rem;
    }
    
    .blog-grid .blog-link {
        font-size: 0.9rem;
    }
    
    /* Blog sayfalama mobil */
    .blog-pagination {
        gap: 0.4rem !important;
    }
    
    .blog-pagination .btn {
        padding: 0.6rem 0.8rem !important;
        min-width: 40px !important;
        font-size: 0.9rem !important;
    }
    
    .testimonials-grid-web {
        display: none !important;
    }
    
    .testimonials-grid-mobile {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    .testimonials-grid-mobile .testimonial-card {
        width: 100% !important;
    }
    
    .pagination-wrapper {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .pagination-numbers {
        justify-content: center !important;
    }
    
    .btn-pagination {
        width: 100% !important;
        max-width: 200px !important;
    }
    
    .cta {
        padding: 30px 0 !important;
    }
    
    .cta-content {
        padding: 0 15px;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }
    
    .cta-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
        text-align: center;
        padding: 0;
        hyphens: auto;
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .cta-buttons .btn {
        min-width: auto;
        width: 100%;
        max-width: 280px;
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 0 0.5rem;
    }

    .footer-column {
        width: 100%;
        max-width: 100%;
    }

    /* Hızlı Linkler ile Hizmetlerimiz mobilde de yan yana */
    .footer-links-services-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .footer-quick-privacy {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* Mobilde sıra: 1 İletişim, 2 Av. Abdulkadir, 3 Hızlı Linkler + Hizmetlerimiz (yan yana) */
    .footer-column:last-child {
        order: -1;
    }

    .footer-column:first-child {
        order: 0;
    }

    .footer-links-services-wrap {
        order: 1;
    }

    .footer-subtitle {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.35rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .footer-links a {
        display: inline-block;
        padding: 0.35rem 0;
        min-height: 2.5rem;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    .footer-contact li {
        margin-bottom: 0.85rem;
    }

    .footer-contact a,
    .footer-contact span {
        font-size: 0.9rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* Page Header: arka plan görseli + mavi efekt */
.page-header {
    position: relative;
    background: var(--primary-color);
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 62, 110, 0.22) 0%, rgba(44, 95, 156, 0.18) 100%);
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.page-subtitle-mobile {
    display: none;
    font-size: 1rem;
    opacity: 0.9;
}

/* Privacy / Gizlilik sayfası */
.privacy-section {
    padding: 80px 0;
    background: var(--white);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-intro {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary-color);
}

.privacy-intro p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-size: 1.1rem;
}

.privacy-intro strong {
    color: var(--text-dark);
}

.privacy-section-item {
    margin-bottom: 3rem;
}

.privacy-section-item .section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.privacy-section-item .section-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.privacy-section-item .section-title {
    margin: 0;
    color: var(--text-dark);
}

.privacy-section-item .section-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.privacy-section-item .section-content > p,
.privacy-section-item .section-content .privacy-list + p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-section-item .section-content > p:last-child,
.privacy-section-item .section-content .privacy-list + p {
    margin-top: 1rem;
    margin-bottom: 0;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.privacy-list li i {
    color: var(--primary-color);
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.privacy-contact-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.privacy-contact-box h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.privacy-contact-box .privacy-list li i {
    width: 20px;
}

.privacy-contact-box a {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-section-item .section-content > p:only-child {
    margin: 0;
}

.privacy-cerez-intro {
    background: var(--bg-light, #f5f7fa);
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--primary-color, #0066cc);
    border-radius: 0 8px 8px 0;
    margin-bottom: 1.25rem;
    font-weight: 500;
    color: var(--text-dark, #1a1a1a);
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 40px 0;
    }

    .privacy-section-item .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .privacy-section-item .section-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .privacy-section-item .section-content {
        padding: 1.5rem;
    }

    .privacy-intro {
        padding: 1.5rem;
    }

    .privacy-contact-box {
        padding: 1.5rem;
    }
}

/* About Detail */
.about-detail {
    padding: 80px 0;
    background: var(--white);
}

.about-detail-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-detail-image {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
}

.about-detail-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    border: none;
    background: none;
    padding: 0;
}

.about-detail-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.about-detail-text p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.about-detail-text p:last-child {
    margin-bottom: 0;
}

/* Hakkımda: tek kart — bir görsel + metin */
.about-detail-hakkimda-unified {
    padding: 60px 0 80px;
}

.hakkimda-intro-card {
    display: grid;
    grid-template-columns: minmax(260px, 420px) 1fr;
    gap: 2.5rem;
    align-items: center;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 2rem 2.25rem;
    overflow: hidden;
}

.hakkimda-intro-photo {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--light-bg);
}

.hakkimda-intro-photo img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    display: block;
    vertical-align: middle;
}

.hakkimda-intro-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 0.75rem;
    line-height: 1.4;
}

.hakkimda-intro-text .section-title {
    margin-top: 0;
    margin-bottom: 1rem;
}

.hakkimda-intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Hakkımda mobil: üst nefes, kafa kesilmesin, kutu doğal */
@media (max-width: 900px) {
    .about-detail-hakkimda-unified {
        padding-top: 2.5rem;
        padding-bottom: 3rem;
    }

    .hakkimda-intro-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.75rem 1.5rem 1.5rem;
        padding-top: 1.65rem;
        overflow: visible;
    }

    .hakkimda-intro-photo {
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-radius: 12px;
    }

    .hakkimda-intro-photo img {
        max-height: 380px;
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center top;
        display: block;
    }
}

/* Intro Section - Ceza Hukuku Nedir */
.intro-section {
    padding: 60px 0;
}

.intro-content {
    grid-template-columns: 1fr !important;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 100%;
}

.intro-text .section-title {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    text-align: center;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    text-align: justify;
    text-align-last: center;
    max-width: 100%;
    font-weight: 400;
    margin: 0 0 0.75rem 0;
    padding: 0;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* Experience */
.experience {
    padding: 80px 0;
    background: var(--white);
}

.experience .section-title {
    text-align: center !important;
    margin-bottom: 1rem;
    display: block;
    width: 100%;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-top: 2rem;
}

/* Hakkimda sayfası için 2 kartlı düzen */
.experience:not(.experience-timeline) .experience-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    padding-top: 0;
}

.experience:not(.experience-timeline) .experience-grid::before {
    display: none;
}

/* Hakkimda sayfası için experience-year düzenlemesi */
.experience:not(.experience-timeline) .experience-year {
    border-radius: 25px;
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    min-width: 100px;
    display: inline-flex;
}

.experience-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 5%;
    right: 5%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    z-index: 0;
}

.experience-slider-container {
    display: none;
}

.experience-slider {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
    align-items: stretch;
}

.experience-slider::-webkit-scrollbar {
    display: none;
}

.experience-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 1;
}

.experience-slider .experience-card {
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.experience-card:hover::before {
    transform: scaleX(1);
}

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

.experience-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.experience-icon i {
    display: inline-block;
    transition: all 0.3s ease;
}

.experience-card:hover .experience-icon {
    color: var(--primary-light);
}

.experience-card:hover .experience-icon i {
    transform: scale(1.1) rotate(5deg);
}

.experience-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 10px rgba(26, 62, 110, 0.3);
    position: relative;
    z-index: 2;
    margin-left: auto;
    margin-right: auto;
}

.experience-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.experience-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

/* Certificates */
.certificates {
    padding: 80px 0;
    background: var(--white);
}

.certificates .section-title {
    text-align: left;
}

.certificates .section-description {
    text-align: left;
    max-width: 100%;
    margin: 1rem 0 0 0;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

.certificates-slider-container {
    display: none;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 1.5rem;
}

.certificates-slider {
    display: flex;
    gap: 0.8rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.certificate-card {
    background: transparent;
    padding: 1rem;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: none;
}

.certificate-card:hover {
    transform: translateY(-3px);
    box-shadow: none;
}

.certificate-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.certificate-icon i {
    font-size: 3.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.certificate-card:hover .certificate-icon {
    color: var(--primary-light);
}

.certificate-card:hover .certificate-icon i {
    transform: scale(1.1);
    color: var(--primary-light);
}

.certificate-card h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Current Status */
.current-status {
    padding: 80px 0;
    background: var(--white);
}

.current-status .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.current-status .section-description {
    max-width: 100%;
    margin: 1rem 0 0 0;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Values */
.values {
    padding: 80px 0;
    background: var(--white);
}

.values .section-title {
    text-align: center !important;
    margin-bottom: 1rem;
}

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

.values-slider-container {
    display: none;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 1.5rem;
}

.values-slider {
    display: flex;
    gap: 0.8rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.value-card {
    background: transparent;
    padding: 2.5rem;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: none;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: none;
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-icon i {
    font-size: 3.5rem;
    color: var(--primary-color);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* Philosophy */
.philosophy {
    padding: 80px 0;
    background: var(--white);
}

.philosophy .section-title {
    text-align: center !important;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    background: var(--white);
    border-radius: 10px;
    font-family: 'Playfair Display', serif;
}

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

.philosophy-points-slider-container {
    display: none;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 1.5rem;
}

.philosophy-points-slider {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.philosophy-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    color: var(--text-dark);
}

.philosophy-points-slider .philosophy-point {
    min-width: 140px;
    max-width: 140px;
    flex-shrink: 0;
}

.philosophy-point i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: var(--white);
}

.success-stories .section-title {
    text-align: center !important;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Hakkimda sayfası için 2 kartlı düzen */
.success-stories-2 .stories-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
}

.stories-slider-container {
    display: none;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 1.5rem;
}

.stories-slider {
    display: flex;
    gap: 0.8rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.story-card {
    background: transparent;
    padding: 2.5rem;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: none;
}

.story-card:hover {
    transform: translateY(-3px);
    box-shadow: none;
}

.story-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.story-icon i {
    font-size: 3.5rem;
}

.story-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.story-card h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* Social Projects */
.social-projects {
    padding: 80px 0;
    background: var(--secondary-color);
}

.social-projects .section-title {
    text-align: center !important;
}

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

.projects-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 3rem;
    display: none;
}


.projects-slider {
    display: flex;
    gap: 1.5rem;
    width: fit-content;
    padding-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .projects-slider {
        animation: slide-projects-mobile 30s linear infinite;
    }
    
    .projects-slider:hover {
        animation-play-state: paused;
    }
}

@keyframes slide-projects-mobile {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobilde slider göster */
@media (max-width: 768px) {
    .projects-grid {
        display: none;
    }
    
    .projects-slider-container {
        display: block;
    }
    
    .project-card {
        min-width: 220px;
        max-width: 220px;
        padding: 1.5rem;
    }
}

.project-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 250px;
    max-width: 250px;
    flex-shrink: 0;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.project-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.project-icon i {
    font-size: 3.5rem;
}

.project-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* Expertise */
.expertise {
    padding: 80px 0;
    background: var(--white);
}

.expertise .section-title {
    text-align: center !important;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

/* Hakkimda sayfası için 2 kartlı düzen */
.expertise-2 .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
}

.expertise-card {
    background: transparent;
    padding: 2rem;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: none;
}

.expertise-card:hover {
    transform: translateY(-3px);
}

.expertise-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.expertise-icon i {
    display: inline-block;
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon i {
    transform: scale(1.1);
    color: var(--primary-light);
}

.expertise-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.expertise-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

.expertise-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem auto;
    text-align: left;
    max-width: 100%;
    width: 100%;
}

.expertise-card ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.expertise-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
    top: 0.4rem;
}

.expertise-card ul li a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(26, 62, 110, 0.25);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.expertise-card ul li a:hover {
    color: var(--primary-light, #2d5a8c);
    border-bottom-color: currentColor;
}

.expertise-card strong {
    color: var(--primary-color);
}

/* Expertise Slider Container */
.expertise-slider-container {
    display: none;
}

/* Achievements */
.achievements {
    padding: 80px 0;
    background: var(--secondary-color);
}

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

.achievement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.achievement-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background: var(--white);
}

.service-areas .container {
    max-width: 1400px;
}

.service-areas .section-title {
    text-align: center !important;
}

.service-areas-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.service-areas-map {
    width: 100%;
    max-width: 100%;
}

.service-areas .container {
    max-width: 1400px;
}

.service-areas-list h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-areas-list h4 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.areas-list {
    list-style: none;
    padding: 0;
}

.areas-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.areas-list li i {
    color: var(--primary-color);
}

.service-regions {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-regions-slider-container {
    display: none;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 1.5rem;
}

.service-regions-slider {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.region-item {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.region-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.region-item p {
    color: var(--text-light);
    margin: 0;
}

.interactive-map-container {
    width: 100%;
    max-width: 100%;
    height: 500px;
    position: relative;
    background: #f8fafc;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(26, 62, 110, 0.1);
}

.map-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background: #f5f5f5;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1400 800"><defs><pattern id="mapGrid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%23e0e0e0" stroke-width="0.5" opacity="0.3"/></pattern><linearGradient id="mountainGrad" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%23d4d4d4;stop-opacity:0.4" /><stop offset="100%" style="stop-color:%23b8b8b8;stop-opacity:0.2" /></linearGradient><linearGradient id="valleyGrad" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%23e8f5e9;stop-opacity:0.6" /><stop offset="100%" style="stop-color:%23c8e6c9;stop-opacity:0.4" /></linearGradient></defs><rect width="1400" height="800" fill="%23f5f5f5"/><rect width="1400" height="800" fill="url(%23mapGrid)"/><path d="M200 300 Q350 200 500 250 T800 280 L850 350 L800 420 L700 450 L600 430 L500 400 L400 380 L300 360 L200 340 Z" fill="url(%23mountainGrad)" stroke="%23c0c0c0" stroke-width="1" opacity="0.5"/><path d="M150 500 Q300 450 450 480 T700 500 L750 570 L700 640 L600 670 L500 650 L400 630 L300 610 L200 590 Z" fill="url(%23valleyGrad)" stroke="%23b0d4b0" stroke-width="1" opacity="0.6"/><path d="M900 200 Q1100 150 1300 200 L1350 280 L1300 360 L1200 390 L1100 370 L1000 350 L900 330 L800 310 L750 280 Z" fill="url(%23mountainGrad)" stroke="%23c0c0c0" stroke-width="1" opacity="0.4"/><path d="M100 600 Q250 550 400 580 T650 600 L700 670 L650 740 L550 770 L450 750 L350 730 L250 710 L150 690 Z" fill="url(%23valleyGrad)" stroke="%23b0d4b0" stroke-width="1" opacity="0.5"/></svg>');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Yeşil Alanlar - Google Maps tarzı */
.map-green-area {
    position: absolute;
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    z-index: 1;
    box-shadow: inset 0 1px 3px rgba(76, 175, 80, 0.1);
}

.map-green-area.area-1 {
    width: 220px;
    height: 180px;
    left: 10%;
    top: 20%;
    border-radius: 8px;
    clip-path: polygon(20% 0%, 80% 0%, 100% 30%, 90% 70%, 60% 100%, 30% 90%, 0% 60%, 10% 20%);
}

.map-green-area.area-2 {
    width: 190px;
    height: 160px;
    left: 55%;
    top: 55%;
    border-radius: 8px;
    clip-path: polygon(15% 10%, 85% 5%, 95% 40%, 85% 80%, 50% 95%, 20% 85%, 5% 50%);
}

.map-green-area.area-3 {
    width: 160px;
    height: 140px;
    left: 70%;
    top: 25%;
    border-radius: 8px;
    clip-path: polygon(25% 0%, 100% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 60%);
}

/* Yollar - Google Maps tarzı */
.map-road {
    position: absolute;
    background: #ffffff;
    border: 2px solid #f0f0f0;
    z-index: 3;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.map-road.road-1 {
    width: 380px;
    height: 12px;
    left: 12%;
    top: 44%;
    transform: rotate(18deg);
    border-radius: 6px;
    border-top: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
}

.map-road.road-2 {
    width: 340px;
    height: 12px;
    left: 38%;
    top: 30%;
    transform: rotate(-10deg);
    border-radius: 6px;
    border-top: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
}

.map-road.road-3 {
    width: 320px;
    height: 12px;
    left: 22%;
    top: 60%;
    transform: rotate(35deg);
    border-radius: 6px;
    border-top: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
}

.map-road.road-4 {
    width: 300px;
    height: 12px;
    left: 48%;
    top: 46%;
    transform: rotate(-22deg);
    border-radius: 6px;
    border-top: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
}

.map-road::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        #ffd700 0px,
        #ffd700 15px,
        transparent 15px,
        transparent 30px
    );
    transform: translateY(-50%);
    opacity: 0.7;
}

.map-road::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    border-radius: 6px;
}

.map-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.map-connections .connection-line {
    animation: dash 3s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -20;
    }
}

.map-point {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 15;
    opacity: 1;
}

.map-point.kahramanmaras {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    z-index: 20;
}

.map-point.gaziantep {
    left: 45%;
    top: 40%;
    transform: translate(-50%, -50%);
    opacity: 1;
}

.map-point.malatya {
    left: 55%;
    top: 35%;
    transform: translate(-50%, -50%);
    opacity: 1;
}

.map-point.adiyaman {
    left: 52%;
    top: 45%;
    transform: translate(-50%, -50%);
    opacity: 1;
}

.map-point.osmaniye {
    left: 48%;
    top: 55%;
    transform: translate(-50%, -50%);
    opacity: 1;
}

.map-point .point-marker.small {
    width: 14px;
    height: 14px;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary-color), 0 3px 8px rgba(26, 62, 110, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

.map-point .point-marker.small::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0.9;
}

.point-marker {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary-color), 0 4px 15px rgba(26, 62, 110, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.point-marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0.9;
}

.map-point.kahramanmaras .point-marker {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border: 5px solid var(--white);
    box-shadow: 0 0 0 4px var(--primary-light), 0 0 0 8px rgba(255, 255, 255, 0.5), 0 6px 20px rgba(26, 62, 110, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.map-point.kahramanmaras .point-marker::before {
    width: 12px;
    height: 12px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 4px var(--primary-light), 0 0 0 8px rgba(255, 255, 255, 0.5), 0 6px 20px rgba(26, 62, 110, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 6px var(--primary-light), 0 0 0 12px rgba(44, 95, 156, 0.3), 0 8px 25px rgba(26, 62, 110, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    }
}

.map-point:hover .point-marker {
    transform: scale(1.3);
    box-shadow: 0 0 0 3px var(--primary-color), 0 6px 20px rgba(0, 0, 0, 0.3);
}

.map-point.kahramanmaras:hover .point-marker {
    transform: scale(1.4);
}

.point-label {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(26, 62, 110, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(26, 62, 110, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, top 0.3s ease, visibility 0.3s ease;
    z-index: 20;
}

.point-label::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--white);
}

.map-point.kahramanmaras .point-label {
    opacity: 0;
    visibility: hidden;
}

.map-point:not(.kahramanmaras) .point-label {
    opacity: 0;
    visibility: hidden;
}

.map-point:hover .point-label {
    opacity: 1 !important;
    visibility: visible !important;
    top: -45px;
    pointer-events: auto;
}

.map-point.active .point-marker {
    background: var(--primary-light);
    transform: scale(1.2);
}

.map-point.active .point-label {
    opacity: 1;
    top: -40px;
}

.service-approach {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    text-align: center;
}

.service-approach h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.service-approach p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Mission Vision */
.mission-vision {
    padding: 80px 0;
    background: var(--white);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.mission-vision-slider-container {
    display: none;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 1.5rem;
}

.mission-vision-slider {
    display: flex;
    gap: 0.8rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.mission-card,
.vision-card {
    background: transparent;
    padding: 3rem;
    border-radius: 0;
    box-shadow: none;
    flex-shrink: 0;
}

.mission-icon,
.vision-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-icon i,
.vision-icon i {
    font-size: 3.5rem;
}

.mission-card .section-title,
.vision-card .section-title {
    margin-bottom: 1.5rem;
}

.mission-card p,
.vision-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Why Choose Detail */
.why-choose-detail {
    padding: 80px 0;
    background: var(--white);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.why-choose-detail .section-title {
    text-align: center !important;
}

.why-choose-detail .section-description {
    text-align: center;
}

/* Responsive for hakkimda page */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .page-subtitle {
        display: none;
    }
    
    .page-subtitle-mobile {
        display: block;
        font-size: 1rem;
        margin-top: 0.5rem;
        opacity: 0.9;
    }
    
    section {
        padding: 30px 0 !important;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .section-description {
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }
    
    .features-grid {
        display: none;
    }
    
    .features-slider-container {
        display: block;
        padding: 0 1rem;
        overflow: visible;
    }
    
    .features-slider {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 1fr;
        gap: 0.4rem;
        width: 100%;
        box-sizing: border-box;
        align-items: stretch;
    }
    
    .features-slider .feature-card {
        padding: 1rem 0.5rem;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        height: 100%;
        text-align: center;
        overflow: visible;
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 8px;
        background: var(--white);
    }
    
    /* Ceza hukuku sayfası için 2 kart alt alta - sadece tam 2 kartlı bölümler için */
    /* 2 kartlı bölümler için grid'i 1 sütun yap */
    section.features .features-slider:has(.feature-card:nth-child(1):nth-last-child(2)) {
        grid-template-columns: 1fr !important;
    }
    
    section.features .features-slider .feature-card:nth-child(1):nth-last-child(2),
    section.features .features-slider .feature-card:nth-child(2):nth-last-child(1) {
        grid-column: span 1 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Ana sayfa için mobilde 2'şer 2'şer - features-home class'ı ile */
    section.features.features-home .features-slider {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.4rem !important;
    }
    
    section.features.features-home .features-slider .feature-card {
        grid-column: span 1;
        width: 100%;
        max-width: 100%;
    }
    
    /* Ana sayfa için mobilde 2'şer 2'şer - tam 4 kart varsa (fallback) */
    section.features .features-slider:has(.feature-card:nth-child(1):nth-last-child(4)) {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.4rem !important;
    }
    
    section.features .features-slider .feature-card:nth-child(1):nth-last-child(4),
    section.features .features-slider .feature-card:nth-child(2):nth-last-child(3),
    section.features .features-slider .feature-card:nth-child(3):nth-last-child(2),
    section.features .features-slider .feature-card:nth-child(4):nth-last-child(1) {
        grid-column: span 1;
        width: 100%;
        max-width: 100%;
    }
    
    /* Aile hukuku sayfası için 12 kart - 2 sütun düzeni (zaten grid-template-columns: repeat(2, 1fr) var) */
    section.features .features-slider .feature-card:nth-child(n) {
        padding: 1rem 0.5rem !important;
        height: 100% !important;
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
        border-radius: 8px !important;
        background: var(--white) !important;
    }
    
    /* Aile hukuku için 2 sütun koru (12 kart için) - ama 2, 3 ve 4 kartlı bölümleri etkilemesin */
    section.features .features-slider:not(:has(.feature-card:nth-child(1):nth-last-child(2))):not(:has(.feature-card:nth-child(1):nth-last-child(3))):not(:has(.feature-card:nth-child(1):nth-last-child(4))) {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .features-slider .feature-icon {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
        flex-shrink: 0;
        text-align: center;
        width: 100%;
    }
    
    .features-slider .feature-icon i {
        font-size: 2.2rem;
        color: var(--primary-color);
    }
    
    .features-slider .feature-title {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
        line-height: 1.4;
        font-weight: 600;
        flex-shrink: 0;
        text-align: center;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        color: var(--text-dark);
    }
    
    .features-slider h3 {
        font-size: 0.95rem !important;
        margin-bottom: 0.6rem !important;
        line-height: 1.4 !important;
        font-weight: 600 !important;
        color: var(--text-dark) !important;
    }
    
    .features-slider .feature-description {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0.75rem !important;
        flex-grow: 1;
        text-align: center !important;
        width: 100% !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: var(--text-light) !important;
        padding: 0 !important;
    }
    
    .features-slider p {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0.75rem !important;
        text-align: center !important;
        color: var(--text-light) !important;
    }
    
    .features-slider .service-list {
        font-size: 0.7rem;
        margin-top: 0.5rem;
        flex-shrink: 0;
        padding: 0;
        margin-left: 0;
        margin-bottom: 0;
        width: 100%;
        text-align: left;
        list-style: none;
    }
    
    .features-slider .service-list li {
        padding: 0.25rem 0;
        padding-left: 1rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        position: relative;
        margin-left: 0;
        color: var(--text-light);
    }
    
    .features-slider .service-list li::before {
        content: '•';
        position: absolute;
        left: 0.2rem;
        color: var(--primary-color);
        font-weight: bold;
        font-size: 0.8rem;
        line-height: 1.4;
        top: 0.25rem;
    }
    
    .stats-grid {
        display: none;
    }
    
    .stats-slider-container {
        display: block;
    }
    
    .stats-slider {
        gap: 0.3rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stats-slider .stat-card {
        padding: 0.6rem 0.3rem;
        min-width: calc(33.333% - 0.3rem);
        max-width: calc(33.333% - 0.3rem);
        flex-shrink: 0;
    }
    
    .stats-slider .stat-icon {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .stats-slider .stat-icon i {
        font-size: 1rem;
    }
    
    .stats-slider .stat-number {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    
    .stats-slider .stat-label {
        font-size: 0.55rem;
    }
    
    .about-detail {
        padding: 30px 0 !important;
    }

    /* Hakkımda 768px: page header–kart arası nefes, kart üst padding, foto yapışmasın, kafa kesilmesin */
    .about-detail-hakkimda-unified {
        padding: 2.75rem 0 2.25rem !important;
    }

    .hakkimda-intro-card {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.5rem 1.15rem 1.25rem;
        padding-top: 1.65rem;
        border-radius: 12px;
        overflow: visible;
    }

    .hakkimda-intro-photo {
        margin-top: 0.5rem;
        padding-top: 0.75rem;
    }

    .hakkimda-intro-photo img {
        max-height: 360px;
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center top;
        display: block;
    }

    .hakkimda-intro-text {
        font-size: 1rem;
    }
    
    .experience {
        padding: 30px 0 !important;
    }
    
    /* Hakkimda sayfası için experience grid mobil */
    .experience:not(.experience-timeline) .experience-grid {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
        padding-top: 0;
        margin-top: 1.5rem;
    }
    
    .experience:not(.experience-timeline) .experience-slider-container {
        display: none !important;
    }
    
    /* Hakkimda sayfası için experience-card mobil */
    .experience:not(.experience-timeline) .experience-card {
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .experience:not(.experience-timeline) .experience-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .experience:not(.experience-timeline) .experience-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .experience:not(.experience-timeline) .experience-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .experience-grid {
        display: none;
    }
    
    /* Ceza Süreci için timeline mobil */
    .experience-timeline .experience-grid {
        display: none !important;
    }
    
    .experience-timeline .experience-slider-container {
        display: block !important;
    }
    
    .experience-slider-container {
        display: block;
    }
    
    .experience-slider {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .experience-slider .experience-card {
        min-width: calc(50% - 0.25rem);
        max-width: calc(50% - 0.25rem);
        flex-shrink: 0;
        padding: 0.8rem 0.5rem;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    
    .experience-slider .experience-icon {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }
    
    .experience-slider .experience-icon i {
        font-size: 1.2rem;
    }
    
    .experience-slider .experience-year {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
        margin-bottom: 0.4rem;
        border-radius: 15px;
        min-width: 50px;
        display: inline-flex;
    }
    
    /* Ceza Süreci için timeline year mobil */
    .experience-timeline .experience-slider .experience-year {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
        margin-bottom: 0.4rem;
        border-radius: 15px;
        min-width: 50px;
        display: inline-flex;
    }
    
    .experience-slider .experience-title {
        font-size: 0.65rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .experience-slider .experience-description {
        font-size: 0.55rem;
        line-height: 1.4;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Hakkimda sayfası için experience-year mobil */
    .experience:not(.experience-timeline) .experience-year {
        border-radius: 20px;
        width: auto;
        height: auto;
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        min-width: 80px;
        display: inline-flex;
    }
    
    .certificates {
        padding: 30px 0 !important;
    }
    
    .current-status {
        padding: 30px 0 !important;
    }
    
    .values {
        padding: 30px 0 !important;
    }
    
    .philosophy {
        padding: 30px 0 !important;
    }
    
    .success-stories {
        padding: 30px 0 !important;
    }
    
    .social-projects {
        padding: 30px 0 !important;
    }
    
    .expertise {
        padding: 30px 0 !important;
    }
    
    .service-areas {
        padding: 30px 0 !important;
    }
    
    .mission-vision {
        padding: 30px 0 !important;
    }
    
    .why-choose-detail {
        padding: 30px 0 !important;
    }
    
    .why-choose-grid {
        display: none;
    }
    
    .why-choose-slider-container {
        display: block;
    }
    
    .why-choose-slider {
        gap: 0.3rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .why-choose-slider .why-choose-card {
        padding: 1.25rem 0.875rem;
        min-width: calc(50% - 0.25rem);
        max-width: calc(50% - 0.25rem);
        flex-shrink: 0;
        width: calc(50% - 0.25rem);
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .why-choose-slider .why-choose-icon {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .why-choose-slider .why-choose-icon i {
        font-size: 2rem;
        color: var(--primary-color);
    }
    
    .why-choose-slider .why-choose-title {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
        font-weight: 600;
        color: var(--text-dark);
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .why-choose-slider .why-choose-card h3 {
        font-size: 0.95rem !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.4 !important;
        font-weight: 600 !important;
        color: var(--text-dark) !important;
        text-align: left !important;
    }
    
    .why-choose-slider .why-choose-description {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 0;
        color: var(--text-light);
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .why-choose-slider .why-choose-card p {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
        margin-bottom: 0.5rem !important;
        color: var(--text-light) !important;
        text-align: left !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .why-choose-slider .why-choose-card p:last-child {
        margin-bottom: 0 !important;
    }
    
    /* Madde işaretli liste için özel stil */
    .why-choose-slider .why-choose-description br,
    .why-choose-slider .why-choose-card p br {
        display: block;
        margin: 0.4rem 0;
        content: "";
    }
    
    .why-choose-slider .why-choose-card p strong {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text-dark);
    }
    
    .mission-vision-grid {
        display: none;
    }
    
    .mission-vision-slider-container {
        display: block;
    }
    
    .mission-vision-grid {
        display: none;
    }
    
    .mission-vision-slider-container {
        display: block;
    }
    
    .mission-vision-slider {
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: column;
    }
    
    .mission-vision-slider .mission-card,
    .mission-vision-slider .vision-card {
        padding: 1rem;
        min-width: 100%;
        max-width: 100%;
        flex-shrink: 0;
    }
    
    .mission-vision-slider .mission-icon,
    .mission-vision-slider .vision-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .mission-vision-slider .mission-icon i,
    .mission-vision-slider .vision-icon i {
        font-size: 2rem;
    }
    
    .mission-vision-slider .section-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .mission-vision-slider .mission-card p,
    .mission-vision-slider .vision-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }

    .about-detail-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-detail-image {
        margin-bottom: 0.5rem;
    }
    
    .about-detail-text {
        padding: 0;
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .intro-section {
        padding: 50px 0 !important;
    }
    
    .intro-text {
        font-size: 1rem;
        line-height: 1.7;
        padding: 0 1rem;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .intro-text .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        padding: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .intro-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: left;
        text-align-last: left;
        padding: 0;
        margin: 0 0 0.5rem 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .intro-content {
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    .service-list {
        font-size: 0.85rem;
        max-width: 100%;
    }
    
    .service-list li {
        padding: 0.3rem 0;
        padding-left: 1.2rem;
        font-size: 0.85rem;
    }
    
    .certificates-grid {
        display: none;
    }
    
    .certificates-slider-container {
        display: block;
    }
    
    .certificates-slider {
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .certificates-slider .certificate-card {
        padding: 0.5rem 0.3rem;
        min-width: 80px;
        max-width: 80px;
        flex-shrink: 0;
    }
    
    .certificates-slider .certificate-icon {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .certificates-slider .certificate-icon i {
        font-size: 1.5rem;
    }
    
    .certificates-slider .certificate-card h3 {
        font-size: 0.65rem;
        line-height: 1.2;
    }
    
    .values-grid {
        display: none;
    }
    
    .values-slider-container {
        display: block;
    }
    
    .values-slider {
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .values-slider .value-card {
        padding: 1rem 0.5rem;
        min-width: calc(33.333% - 0.4rem);
        max-width: calc(33.333% - 0.4rem);
        flex-shrink: 0;
    }
    
    .values-slider .value-icon {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }
    
    .values-slider .value-icon i {
        font-size: 1.5rem;
    }
    
    .values-slider .value-card h3 {
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
    }
    
    .values-slider .value-card p {
        font-size: 0.6rem;
        line-height: 1.3;
    }

    .experience-grid {
        display: none;
    }
    
    /* Ceza Süreci için timeline mobil */
    .experience-timeline .experience-grid {
        display: none !important;
    }
    
    .experience-timeline .experience-slider-container {
        display: block !important;
    }
    
    .experience-slider-container {
        display: flex;
        align-items: stretch;
    }

    .experience-slider {
        display: flex;
        gap: 0.5rem;
        overflow-x: hidden;
        width: 100%;
        box-sizing: border-box;
        align-items: stretch;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .experience-slider::-webkit-scrollbar {
        display: none;
    }
    
    .experience-slider .experience-card {
        padding: 0.8rem 0.5rem;
        min-width: calc(50% - 0.25rem);
        max-width: calc(50% - 0.25rem);
        flex-shrink: 0;
        box-sizing: border-box;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    
    .experience-slider-container {
        margin-top: 1rem;
    }
    
    .experience-timeline .experience-slider-container {
        display: block !important;
        margin-top: 1rem;
    }
    
    .experience-slider .experience-icon {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }
    
    .experience-slider .experience-icon i {
        font-size: 1.2rem;
    }
    
    .experience-slider .experience-year {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
        margin-bottom: 0.4rem;
        border-radius: 15px;
        width: auto;
        height: auto;
        min-width: 50px;
        display: inline-flex;
    }
    
    /* Ceza Süreci için timeline year mobil */
    .experience-timeline .experience-slider .experience-year {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
        margin-bottom: 0.4rem;
        border-radius: 15px;
        min-width: 50px;
        display: inline-flex;
    }
    
    /* Hakkimda sayfası için experience-year slider mobil */
    .experience:not(.experience-timeline) .experience-slider .experience-year {
        border-radius: 20px;
        width: auto;
        height: auto;
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        min-width: 80px;
        display: inline-flex;
    }
    
    .experience-slider .experience-title {
        font-size: 0.65rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .experience-slider .experience-description {
        font-size: 0.55rem;
        line-height: 1.4;
        margin-bottom: 0;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .service-areas-content {
        grid-template-columns: 1fr;
    }
    
    .service-regions {
        display: none;
    }
    
    .service-regions-slider-container {
        display: block;
    }
    
    .service-regions-slider {
        gap: 0.3rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .service-regions-slider .region-item {
        padding: 0.8rem 0.5rem;
        min-width: calc(33.333% - 0.3rem);
        max-width: calc(33.333% - 0.3rem);
        flex-shrink: 0;
        margin-bottom: 0;
    }
    
    .service-regions-slider .region-item strong {
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
    }
    
    .service-regions-slider .region-item p {
        font-size: 0.6rem;
        line-height: 1.3;
    }
    
    .expertise-grid {
        display: none;
    }
    
    .expertise-slider-container {
        display: block;
    }
    
    /* Hakkimda sayfası için 2 kartlı düzen mobil */
    .expertise-2 .expertise-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .expertise-2 .expertise-slider-container {
        display: none;
    }
    
    .expertise-slider {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        overflow-x: visible;
        width: 100%;
        box-sizing: border-box;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
    
    .expertise-slider::-webkit-scrollbar {
        display: none;
    }
    
    .expertise-slider .expertise-card {
        padding: 1.25rem 1.15rem;
        min-width: 100%;
        max-width: 100%;
        flex-shrink: 0;
        width: 100%;
        box-sizing: border-box;
        background: linear-gradient(165deg, #fff 0%, #f4f7fb 100%);
        border-radius: 14px;
        border: 1px solid rgba(26, 62, 110, 0.1);
        box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
        text-align: left;
    }
    
    .expertise-slider .expertise-icon {
        font-size: 2rem;
        margin-bottom: 0.65rem;
        text-align: center;
    }
    
    .expertise-slider .expertise-icon i {
        font-size: 2rem;
    }
    
    .expertise-slider .expertise-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.65rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
    }
    
    .expertise-slider .expertise-card p {
        font-size: 0.9rem;
        line-height: 1.55;
        margin-bottom: 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .expertise-slider .expertise-card ul {
        font-size: 0.95rem;
        margin: 0.35rem 0 0;
        padding: 0;
        list-style: none;
        max-width: 100%;
        text-align: left;
    }
    
    .expertise-slider .expertise-card ul li {
        padding: 0.4rem 0;
        padding-left: 1.35rem;
        position: relative;
        line-height: 1.5;
        color: var(--text-dark);
        font-size: 0.95rem;
    }
    
    .expertise-slider .expertise-card ul li::before {
        content: '•';
        position: absolute;
        left: 0;
        color: var(--primary-color);
        font-weight: bold;
        font-size: 1.1rem;
        line-height: 1.2;
        top: 0.35rem;
    }
    
    .expertise-slider .expertise-card ul li a {
        font-size: 0.95rem;
        font-weight: 600;
        display: inline;
    }
    
    .expertise-slider .expertise-card p strong {
        font-size: 0.9rem;
    }

    .philosophy-quote {
        font-size: 1.2rem;
        padding: 1.5rem;
    }

    .philosophy-points {
        display: none;
    }
    
    .philosophy-points-slider-container {
        display: block;
    }
    
    .philosophy-points-slider {
        gap: 0.4rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .philosophy-points-slider .philosophy-point {
        padding: 0.6rem 0.4rem;
        min-width: calc(50% - 0.3rem);
        max-width: calc(50% - 0.3rem);
        gap: 0.5rem;
        font-size: 0.7rem;
    }
    
    .philosophy-points-slider .philosophy-point i {
        font-size: 0.7rem;
    }
    
    .stories-grid {
        display: none;
    }
    
    .stories-slider-container {
        display: block;
    }
    
    .stories-slider {
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stories-slider .story-card {
        padding: 1rem 0.5rem;
        min-width: calc(50% - 0.3rem);
        max-width: calc(50% - 0.3rem);
        flex-shrink: 0;
    }
    
    /* Hakkimda sayfası için 2 kartlı düzen mobil */
    .success-stories-2 .stories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }
    
    .success-stories-2 .stories-slider-container {
        display: block;
    }
    
    .success-stories-2 .stories-grid {
        display: none;
    }
    
    .success-stories-2 .stories-slider .story-card {
        min-width: calc(50% - 0.3rem);
        max-width: calc(50% - 0.3rem);
    }
    
    .stories-slider .story-icon {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .stories-slider .story-icon i {
        font-size: 1.8rem;
    }
    
    .stories-slider .story-card h3 {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .stories-slider .story-card h4 {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
    
    .stories-slider .story-card p {
        font-size: 0.65rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0;
    }
    
    .cta-content {
        padding: 0 10px;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }
    
    .cta-title {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
        line-height: 1.2;
        text-align: center;
        padding: 0;
        hyphens: auto;
        width: 100%;
        box-sizing: border-box;
        display: block;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-title-text {
        white-space: normal;
    }

    .hero-title-icon {
        width: 44px;
        height: 44px;
    }

    section {
        padding: 60px 0;
    }

    /* SSS Özeti Mobil - açılır kapanır zaten alt alta */
    .faq-preview-accordion {
        gap: 0.5rem !important;
    }

    /* Ana Sayfa Yeni Bölümler - Mobil */
    .quick-contact-grid,
    #quickContactGrid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.5rem !important;
        padding: 0 !important;
    }

    .quick-contact-card {
        padding: 1rem 0.5rem !important;
        min-width: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .quick-contact-card h3 {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.25rem !important;
    }

    .quick-contact-card p {
        font-size: 0.7rem !important;
        line-height: 1.3 !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }

    .quick-contact-card > div {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 0.5rem !important;
    }

    .quick-contact-card i {
        font-size: 1rem !important;
    }

    .home-contact-form .contact-form {
        gap: 1rem !important;
    }

    .home-contact-form .contact-form > div {
        grid-template-columns: 1fr !important;
    }

    .certificates-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }

    .service-areas-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Mobil: 2 sütun, alt alta (2x2) */
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    .trust-badge {
        padding: 1rem 0.5rem !important;
    }

    .trust-badge > div {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 0.5rem !important;
    }

    .trust-badge i {
        font-size: 1.2rem !important;
    }

    .trust-badge h3 {
        font-size: 0.8rem !important;
        margin-bottom: 0.25rem !important;
    }

    .trust-badge p {
        font-size: 0.7rem !important;
    }

    .newsletter-form {
        flex-direction: column !important;
    }

    .newsletter-form input {
        min-width: 100% !important;
    }

    .section-title {
        font-size: 1.75rem;
    }
    
    .services-slider-container {
        margin-left: 0;
        margin-right: 0;
    }
    
    .slider-btn {
        display: none;
    }
}

/* iPhone ve küçük ekranlar için özel CTA düzenlemesi */
@media (max-width: 390px) {
    .cta-content {
        padding: 0 8px;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }
    
    .cta-title {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
        line-height: 1.2;
        text-align: center;
        padding: 0;
        hyphens: auto;
        width: 100%;
        box-sizing: border-box;
        display: block;
    }
    
    .cta-description {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(26, 62, 110, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(26, 62, 110, 0.6);
    background: var(--primary-light);
}

/* Footer üzerindeyken beyaz – sitedeki renginden ayrı, okunaklı */
.scroll-to-top.scroll-to-top--on-footer {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.scroll-to-top.scroll-to-top--on-footer:hover {
    background: #f0f0f0;
    color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 20px;
        left: 20px;
        font-size: 1rem;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

/* Blog Arama ve Filtreleme */
.blog-search-filter {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-search-filter-simple {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    transition: all 0.3s ease;
}

.blog-search-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.blog-search-form .search-input-wrapper {
    flex: 1;
    min-width: 250px;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.blog-search-form .search-input-wrapper input {
    flex: 1;
    min-width: 0;
}

.blog-search-form .blog-search-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.25rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.2s ease;
}

.blog-search-form .blog-search-submit:hover {
    background: var(--primary-light);
}

.blog-search-form .blog-search-submit:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 62, 110, 0.3);
}

.blog-search-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.blog-search-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.blog-search-form .filter-results-wrapper {
    width: 100%;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-search-form .filter-results-wrapper .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.blog-search-form .search-results-text {
    color: var(--text-light);
    font-size: 0.9rem;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0 !important;
    }
    
    .blog-search-filter {
        padding: 1.5rem !important;
        margin-bottom: 2rem !important;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
        max-width: calc(100% - 2rem) !important;
        box-sizing: border-box;
        border-radius: 12px !important;
    }
    
    .blog-search-filter-simple {
        margin-bottom: 2rem !important;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
        max-width: calc(100% - 2rem) !important;
        box-sizing: border-box;
    }
    
    .blog-search-form {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: stretch !important;
    }
    
    .blog-search-form .search-input-wrapper {
        width: 100% !important;
        min-width: 100% !important;
        flex: none !important;
        flex-wrap: nowrap;
    }

    .blog-search-form .blog-search-submit {
        flex-shrink: 0;
        padding: 0.8rem 1rem;
    }
    
    .blog-search-form input {
        font-size: 16px !important; /* iOS zoom önleme */
        width: 100% !important;
        box-sizing: border-box;
        padding: 0.8rem 1rem !important;
    }
    
    .blog-search-form .filter-results-wrapper {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.8rem !important;
        align-items: stretch !important;
        margin-top: 0.5rem !important;
    }
    
    .blog-search-form .filter-results-wrapper .btn {
        width: 100% !important;
        text-align: center !important;
        box-sizing: border-box !important;
        display: block !important;
    }
    
    .blog-search-form .search-results-text {
        display: block !important;
        margin: 0 !important;
        text-align: center !important;
        width: 100% !important;
        word-wrap: break-word !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 40px 0 !important;
    }
    
    .blog-search-filter {
        padding: 1rem !important;
        border-radius: 10px !important;
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
        max-width: calc(100% - 1rem) !important;
    }
    
    .blog-search-filter-simple {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
        max-width: calc(100% - 1rem) !important;
    }
    
    .blog-search-form {
        gap: 0.8rem !important;
    }
    
    .blog-search-form label {
        font-size: 0.85rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .blog-search-form input,
    .blog-search-form select {
        padding: 0.7rem 0.9rem !important;
        font-size: 16px !important;
    }
    
    .blog-search-form button {
        padding: 0.7rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
    
    .blog-search-form .search-results-text {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
}

/* Müvekkil Yorumları Form Mobil */
@media (max-width: 768px) {
    section[style*="background: var(--secondary-color)"] .container > div {
        padding: 1.5rem !important;
        margin: 0 1rem !important;
    }
    
    section[style*="background: var(--secondary-color)"] .form-group label {
        font-size: 0.9rem !important;
    }
    
    section[style*="background: var(--secondary-color)"] input,
    section[style*="background: var(--secondary-color)"] textarea {
        font-size: 16px !important; /* iOS zoom önleme */
        padding: 0.7rem 0.9rem !important;
    }
    
    section[style*="background: var(--secondary-color)"] .form-group label[for="rating"] ~ div {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    section[style*="background: var(--secondary-color)"] .form-group label[for="rating"] ~ div label {
        width: 100% !important;
        justify-content: center !important;
    }
    
    /* Müvekkil Yorumları Sayfası Mobil */
    .testimonials-grid-web {
        display: none !important;
    }
    
    .testimonials-grid-mobile {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    .testimonials-grid-mobile .testimonial-card {
        width: 100% !important;
        padding: 1.5rem !important;
    }
    
    .pagination-wrapper {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .pagination-numbers {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    
    .btn-pagination {
        width: 100% !important;
        max-width: 200px !important;
    }
}

@media (max-width: 480px) {
    section[style*="background: var(--secondary-color)"] .container > div {
        padding: 1rem !important;
        margin: 0 0.5rem !important;
    }
    
    section[style*="background: var(--secondary-color)"] h2 {
        font-size: 1.5rem !important;
    }
    
    .pagination-numbers .btn {
        padding: 0.6rem 1rem !important;
        font-size: 0.9rem !important;
        min-width: 40px !important;
    }
}

