/* --- TEMEL AYARLAR VE DEĞİŞKENLER --- */
:root {
    --primary-color: #222831;
    --secondary-color: #f8f9fa;
    --accent-color: #c5a47e;
    --text-color: #333;
    --light-text-color: #e0e0e0;
    --success-color: #28a745; 
    --error-color: #D9534F;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --container-width: 1200px;
    --header-height: 85px; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.7;
    font-weight: 400; 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body:not(.loaded) {
    overflow: hidden;
}


::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* --- GİRİŞ VE SAYFA YÜKLEME ANİMASYONLARI --- */
#intro-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-in-out;
}

#intro-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 1.2s cubic-bezier(0.76, 0, 0.24, 1);
}

@keyframes heartbeat {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

#intro-logo.animate-heartbeat {
    animation: heartbeat 1.2s ease-in-out 2;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader .loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-loader .loader-content img {
    width: 150px;
    height: 150px;
    animation: subtle-pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

.loader-dots {
    display: flex;
    margin-top: 2rem;
}

.loader-dots .dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: var(--accent-color);
    border-radius: 50%;
    animation: dot-pulse 1.4s infinite ease-in-out;
}

.loader-dots .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dots .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dot-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes subtle-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}


body.loaded .page-loader {
    opacity: 0;
    visibility: hidden;
}

/* --- ANİMASYON STİLLERİ BİTİŞ --- */


.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
}

.section-dark {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.section-title.light {
    color: var(--secondary-color);
}

/* --- BUTONLAR VE GENEL ELEMENTLER --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.25s ease-out;
    position: relative;
    overflow: hidden;
    z-index: 1; 
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(34, 40, 49, 0.2);
}

.btn .fa-spinner {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn .fa-paper-plane {
    margin-left: 8px;
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.3s ease-in-out;
}

.btn:hover .fa-paper-plane {
    opacity: 1;
    transform: translateX(0);
}


.btn-secondary {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    margin-left: 10px;
    background-color: transparent;
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* --- HEADER --- */
#main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    height: var(--header-height);
    display: flex; 
    align-items: center; 
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

#main-header.scrolled,
body:not(.dark-header-page) #main-header {
    background: rgba(248, 249, 250, 0.95); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

#main-header .container {
    display: flex;
    align-items: center; 
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px; 
    flex-shrink: 0; 
}

.logo img {
    height: 60px; 
    width: 60px;  
    border-radius: 50%;
    object-fit: contain; 
    padding: 5px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo:hover img {
    transform: scale(1.1);
}

.logo span {
    position: relative;
    transition: color 0.4s ease;
    color: var(--primary-color);
    background: linear-gradient(90deg, var(--accent-color), #e0c5a6);
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200% 100%;
    background-position: 100% 0;
    transition: background-position 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo:hover span {
    background-position: 0% 0;
}


.main-nav {
    display: flex;
    align-items: center; 
    margin-left: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.main-nav li {
    margin: 0 15px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    position: relative;
    padding: 5px 0;
    transition: color 0.4s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--primary-color);
}

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}

.dark-header-page #main-header {
    background: transparent;
    box-shadow: none;
}
.dark-header-page #main-header .logo span,
.dark-header-page #main-header .main-nav a,
.dark-header-page #main-header #mobile-menu-btn {
    color: var(--secondary-color);
}

.dark-header-page #main-header .main-nav a:hover,
.dark-header-page #main-header .main-nav a.active {
    color: #fff;
}
.dark-header-page #main-header .main-nav a:hover::after, 
.dark-header-page #main-header .main-nav a.active::after {
    background-color: #fff;
}


.dark-header-page #main-header.scrolled .logo span,
.dark-header-page #main-header.scrolled .main-nav a,
.dark-header-page #main-header.scrolled #mobile-menu-btn {
    color: var(--primary-color);
}

.dark-header-page #main-header.scrolled .main-nav a:hover, 
.dark-header-page #main-header.scrolled .main-nav a.active {
    color: var(--primary-color);
}
.dark-header-page #main-header.scrolled .main-nav a:hover::after, 
.dark-header-page #main-header.scrolled .main-nav a.active::after {
    background-color: var(--accent-color);
}

/* --- HERO BÖLÜMÜ --- */
#hero {
    background-color: var(--secondary-color);
    padding: 40px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--header-height));
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: calc(85vh - var(--header-height));
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 10px 10px 0 var(--accent-color);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-hero-text {
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
}


.grid-3, .grid-4 {
    display: grid;
    gap: 2rem;
}
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }


.value-card {
    text-align: center;
    padding: 2rem;
}

.value-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.value-card:hover i {
    transform: scale(1.1);
}

.value-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.grid-2-about {
    display: grid;
    grid-template-columns: 40% 55%;
    gap: 5%;
    align-items: center;
}
.grid-2-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
}
#hakkimizda .about-image img { box-shadow: 10px 10px 0px var(--accent-color); }
#hakkimizda-detay .about-image img { box-shadow: -10px -10px 0 var(--primary-color); }


.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease; 
}

.read-more i {
    margin-left: 5px;
    transition: margin-left 0.3s;
}

.read-more:hover {
    color: var(--primary-color);
}

.read-more:hover i {
    margin-left: 10px;
}

.accordion-item {
    border-bottom: 1px solid #444;
}
.accordion-light .accordion-item {
    border-bottom-color: #ddd;
}

.accordion-header {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 20px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--light-text-color);
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s;
}

.accordion-light .accordion-header {
    color: var(--text-color);
}
.accordion-light .accordion-header:hover {
    background-color: #fdfdfd;
}


.accordion-header::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
}

.accordion-header.active::after {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: rgba(0, 0, 0, 0.2);
}
.accordion-light .accordion-content {
    background: none;
}

.accordion-content p {
    padding: 20px;
}

#cta {
    background: var(--secondary-color);
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

#cta .btn-primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

#cta .btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

.grid-2-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem; 
    align-items: start; 
}

.modern-form .form-group {
    position: relative;
    margin-bottom: 2rem;
}

.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 2px solid #ccc;
    background: none;
    font-size: 1rem;
    font-family: var(--font-body);
}

.modern-form textarea {
    resize: vertical;
    min-height: 100px; 
}


.modern-form input:focus,
.modern-form textarea:focus {
    outline: none;
    border-bottom-color: #ccc;
}

.modern-form label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #999;
    transition: all 0.3s;
    pointer-events: none;
}

.modern-form .form-group input:required + label::after,
.modern-form .form-group textarea:required + label::after {
    content: ' *';
    color: var(--error-color);
    font-weight: 700;
    margin-left: 2px;
}

.form-group .focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
}

.modern-form input:focus+label,
.modern-form input:valid+label,
.modern-form textarea:focus+label,
.modern-form textarea:valid+label {
    top: -15px;
    font-size: 0.8rem;
    color: var(--accent-color);
}

.modern-form input:focus + label + .focus-line,
.modern-form textarea:focus + label + .focus-line {
    transform: scaleX(1);
}

.form-group .error-message {
    display: none;
    font-size: 0.85rem;
    color: var(--error-color);
    margin-top: 5px;
    font-weight: 500;
}

.modern-form .form-group.error input,
.modern-form .form-group.error textarea {
    border-bottom-color: var(--error-color);
}

.modern-form .form-group.error label {
    color: var(--error-color);
}

.modern-form .form-group.error .focus-line {
    background-color: var(--error-color);
}

.modern-form .form-goup.error input:focus+label,
.modern-form .form-group.error textarea:focus+label {
    color: var(--error-color);
}

.modern-form .form-group.error .error-message {
    display: block;
}


.full-width {
    width: 100%;
}

.contact-info h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}
.contact-info p {
    margin-bottom: 1rem;
}
.contact-info i {
    color: var(--accent-color);
    margin-right: 10px;
    transition: transform 0.3s ease-in-out;
}
.contact-info p:hover i {
    transform: scale(1.15) rotate(-5deg);
}
.contact-info p a {
    color: inherit; 
    text-decoration: none;
    transition: color 0.3s;
}
.contact-info p a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-info .office-status {
    margin: 0; 
}
.contact-info .office-status:not(:empty) {
    font-style: italic;
    font-size: 0.9rem;
    background-color: #fef9e6; 
    color: #8a6d3b;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #f9eebc;
}


#map {
    margin-top: 1.5rem;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

#map iframe {
    width: 100%;
    height: 300px; 
    border: 0;
}


#main-footer {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding-top: 25px; 
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 2rem;
    padding-bottom: 15px; 
}

#main-footer .footer-about .logo {
    margin-bottom: 0.8rem; 
}
#main-footer .logo span {
    color: var(--secondary-color);
}

.footer-grid h3,
.footer-grid h4 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 0.6rem; 
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.2rem; 
}
.footer-links a {
    color: var(--light-text-color);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--accent-color);
}
.footer-contact p {
    display: flex;
    align-items: start;
    margin-bottom: 0.3rem; 
    font-size: 0.95rem;
    color: var(--light-text-color);
}
.footer-contact p i {
    margin-right: 12px;
    color: var(--accent-color);
    font-size: 1.1rem;
    padding-top: 4px; 
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s ease;
}
.footer-contact p i.fa-whatsapp {
    font-size: 1.25rem;
}
.footer-contact p a {
    color: var(--light-text-color);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-contact p a:hover {
    color: var(--accent-color);
}

.footer-contact p:hover i.fa-map-marker-alt {
    transform: translateY(-4px) scale(1.1);
}
.footer-contact p:hover i.fa-phone {
    transform: rotate(-20deg) scale(1.1);
}
.footer-contact p:hover i.fa-whatsapp {
    transform: scale(1.25);
    color: #25D366; 
}
.footer-contact p:hover i.fa-envelope {
    transform: translateX(4px) scale(1.1);
}


.footer-social-icons {
    display: flex;
    gap: 1rem;
}
.footer-social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    font-size: 1.3rem;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}
.footer-social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.1);
}
.footer-social a {
    font-size: 1rem;
    margin-right: 0;
}
.footer-bottom {
    text-align: center;
    padding: 10px 0; 
    border-top: 1px solid #444;
    font-size: 0.9rem;
}
.footer-bottom .footer-credit {
    margin-top: 4px; 
    font-size: 0.85rem;
    color: #ccc; 
}
.footer-bottom .footer-credit a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s; 
}
.footer-bottom .footer-credit a:hover {
    color: var(--secondary-color); 
    text-decoration: none; 
}


.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.blog-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 2rem;
}

.blog-card {
    flex: 0 1 350px; 
    max-width: 350px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: scale(1);
    transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.3s ease;
}


.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);
    transition-delay: 0s !important; 
}


.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}
.blog-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-content h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.blog-card-content p {
    flex-grow: 1;
    margin-bottom: 1rem;
}
.blog-card .read-more {
    margin-top: auto;
}

.dark-header-page main {
    margin-top: calc(var(--header-height) * -1); 
}

.page-header {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 120px 0 30px 0; 
    text-align: center;
}

.dark-header-page .page-header {
    padding-top: calc(var(--header-height) + 30px); 
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 300;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}


#mobile-menu-btn {
    display: none; 
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
    margin-left: auto;
    transition: color 0.4s ease-in-out;
}

#mobile-nav {
    position: fixed;
    top: 0;
    left: -100%; 
    width: 100%;
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 2000;
    transition: left 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

#mobile-nav.is-open {
    left: 0; 
}

#mobile-menu-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
}

#mobile-nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

#mobile-nav li {
    margin: 2rem 0;
}

#mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    font-family: var(--font-heading);
}

.toast-notification {
    display: flex; 
    align-items: center;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    margin-top: 0;
    border-radius: 10px;
    font-weight: 600;
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out, margin-top 0.4s ease-out, padding 0.4s ease-out;
}
.toast-notification .toast-message {
    margin-right: 10px;
    flex-grow: 1; 
}
.toast-notification .toast-icon {
    margin-left: auto; 
}

.toast-notification.success {
    background-color: #e6f7ec;
    color: #0d6a2e;
    border: 1px solid #b7e8c9;
}

.toast-notification.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.toast-notification.show {
    max-height: 100px;
    opacity: 1;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
}

.back-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, background-color 0.3s, transform 0.3s;
    z-index: 999;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.reading-progress-bar {
    position: fixed;
    top: 0; 
    left: 0;
    height: 5px; 
    width: 0%; 
    background-color: var(--accent-color); 
    z-index: 9998; 
    transition: width 0.05s linear; 
}


.blog-detail-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 3rem;
    align-items: start;
}
.blog-post-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    max-height: 350px;       
    object-fit: cover;
    background-color: #eee;
}
.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #777;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.post-meta i {
    margin-right: 5px;
    color: var(--accent-color);
}
.blog-content {
    max-width: 75ch; 
    margin: 0 auto;  
}
.blog-content h2, .blog-content h3 {
    font-family: var(--font-heading);
    margin: 2rem 0 1rem 0;
    font-size: 2rem; 
}
.blog-content p, .blog-content ul {
    font-size: 1rem; 
    line-height: 1.8;
    color: #333;
}
.blog-content ul {
    list-style-position: inside;
    margin-bottom: 1rem;
    padding-left: 1rem;
}
.blog-content blockquote {
    border-left: 5px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 1.2rem; 
    font-style: normal;
    font-weight: 500;
    color: var(--primary-color);
    background: rgba(197, 164, 126, 0.05);
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.social-share {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}
.social-share strong {
    margin-right: 1rem;
}
.social-share a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 5px;
    transition: background 0.4s ease-in-out, color 0.4s ease-in-out, transform 0.3s ease-in-out;
}
.social-share a:hover {
    transform: scale(1.1);
}

.social-share a[aria-label*="Facebook"]:hover {
    background-color: #1877F2;
    color: #fff;
}
.social-share a[aria-label*="X"]:hover {
    background-color: #000000;
    color: #fff;
}
.social-share a[aria-label*="LinkedIn"]:hover {
    background-color: #0A66C2;
    color: #fff;
}

.blog-sidebar {
    position: sticky;
    top: 120px; 
}
.blog-sidebar .sidebar-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}
.sidebar-widget h3 {
    font-family: var(--font-heading);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
}
.sidebar-widget ul {
    list-style: none;
    padding: 0;
}
.sidebar-widget li {
    margin-bottom: 0.75rem;
}
.sidebar-widget a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s;
}
.sidebar-widget a:hover, .sidebar-widget a.active {
    color: var(--accent-color);
}

.blog-content .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.blog-content .animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.blog-content .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.blog-content .animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.blog-content .animate-on-scroll:nth-child(5) { transition-delay: 0.5s; }
.blog-content .animate-on-scroll:nth-child(6) { transition-depth: 0.6s; }
.blog-content .animate-on-scroll:nth-child(7) { transition-delay: 0.7s; }

.sidebar-widget.animate-on-scroll {
    transition-delay: 0.4s;
}
.sidebar-widget.animate-on-scroll:nth-child(2) {
    transition-delay: 0.6s;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}
.post-nav-link {
    text-decoration: none;
    color: var(--text-color);
    max-width: 48%;
}
.post-nav-link:hover span {
    color: var(--accent-color);
}
.post-nav-link .label {
    font-size: 0.9rem;
    color: #888;
    display: block;
}
.post-nav-link span {
    font-weight: 600;
    transition: color 0.3s;
}
.post-nav-link.next {
    text-align: right;
}

@media(max-width: 992px) {
    .hero-grid, .grid-2-about, .grid-2-contact, .grid-2-mission {
        grid-template-columns: 1fr;
    }
    .grid-4 { grid-template-columns: 1fr 1fr; } 
    .hero-image { display: none; }
    .about-image { margin-bottom: 2rem; }
    .section-title { font-size: 2.2rem; }
    .hero-title { font-size: 3rem; }
    
    .blog-detail-layout { grid-template-columns: 1fr; }
    .blog-content { max-width: 100%; } 
    .blog-sidebar { 
        position: relative; 
        top: auto; 
        margin-top: 3rem;
    }
    
    .grid-2-contact {
        gap: 4rem; 
    }
}

@media(max-width: 768px) {
    #main-header .container .main-nav { display: none; }
    #mobile-menu-btn { display: block; }
    .grid-3, .grid-4, .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid > div { 
        margin-bottom: 1.2rem; 
    }
}


.honeypot {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

/* === BLOG FİLTRELEME STİLLERİ === */
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.filter-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.filter-btn span {
    display: block;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s;
    white-space: nowrap;
}
.btn-text-original {
    transform: translateY(0);
}
.btn-text-hover {
    position: absolute;
    transform: translateY(150%);
    opacity: 0;
    font-weight: 600;
}
.filter-btn:hover .btn-text-original {
    transform: translateY(-150%);
    opacity: 0;
}
.filter-btn:hover .btn-text-hover {
    transform: translateY(0);
    opacity: 1;
    color: var(--secondary-color);
}

.filter-btn.active {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    font-weight: 600;
}
.filter-btn.active:hover .btn-text-hover {
    color: var(--primary-color);
}

.blog-card.card-hidden {
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-effect 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
/* === MİSYON & VİZYON BÖLÜMÜ === */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background-color: var(--accent-color);
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.is-visible .section-title::after {
    width: 80px;
}

.mission-vision-item {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 4rem;
    align-items: center;
}

.mission-vision-item:not(:last-child) {
    margin-bottom: 100px;
}

.mission-vision-item img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mission-vision-item:first-child img {
    box-shadow: 10px 10px 0px var(--accent-color);
}

.mission-vision-item.vision-item img {
    box-shadow: -10px 10px 0px var(--primary-color);
}

.mission-vision-item img:hover {
    transform: scale(1.03);
    box-shadow: 0px 20px 40px rgba(0,0,0,0.15);
}

@media(max-width: 992px) {
    .mission-vision-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .mission-vision-item:not(:last-child) {
        margin-bottom: 60px;
    }
    .mission-vision-item.vision-item .image-content {
        order: -1; 
    }
}
.title-container {
    text-align: center;
    margin-bottom: 1.5rem;
}
.section-title.no-underline::after {
    display: none;
}
/* === MOBİL İYİLEŞTİRMELER (GÜNCEL v33 - FİNAL) - BAŞLANGIÇ === */

/* Akordiyon İkon Düzeltmesi (Global) */
.accordion-header {
    padding-right: 45px; 
}
.accordion-header::after {
    top: 50%;
    transform: translateY(-50%);
}
.accordion-header.active::after {
    transform: translateY(-50%) rotate(180deg);
}

/* --- Mobil Menü Stilleri --- */
#mobile-nav {
    position: fixed; top: 0; left: 0; width: 100%;
    height: 100vh; height: 100dvh;
    background-color: var(--primary-color);
    z-index: 2000;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    padding: 2rem;
    opacity: 0; visibility: hidden;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0.4s;
}
#mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateX(0); }
#mobile-nav ul { display: flex; flex-direction: column; gap: 2rem; }
#mobile-nav a { 
    font-size: 1.2rem;
    position: relative; 
    padding-bottom: 5px; 
}
#mobile-nav li {
    margin: 0; opacity: 0; transform: translateY(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
#mobile-nav.is-open li { opacity: 1; transform: translateY(0); }
#mobile-nav.is-open li:nth-child(1) { transition-delay: 0.2s; }
#mobile-nav.is-open li:nth-child(2) { transition-delay: 0.3s; }
#mobile-nav.is-open li:nth-child(3) { transition-delay: 0.4s; }
#mobile-nav.is-open li:nth-child(4) { transition-delay: 0.5s; }
#mobile-nav.is-open li:nth-child(5) { transition-delay: 0.6s; }

/* === KESİN ANİMASYON ÇÖZÜMÜ === */
#mobile-nav a::after {
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 50%;
    transform: translateX(-50%); 
    width: 0; 
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.4s ease-out;
}
#mobile-nav.is-open a.active::after {
    width: 80%;
    transition-delay: 0.8s; 
}
/* --- Mobil Menü Stilleri Bitiş --- */


/* Mobil ikonları MASAÜSTÜNDE GİZLE (Düzeltme) */
.footer-mobile-icons {
    display: none;
}


/* === BLOG FİLTRE DÜZENİ (MASAÜSTÜ) (v24'ten) === */
.filter-dropdown-toggle {
    display: none;
}
.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    position: relative;
}
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}
/* === DÜZENLEME BİTİŞ === */


/* === YENİ (v33): BİLGİLENDİRME MESAJI (TOAST) STİLİ === */
.filter-toast {
    position: absolute;
    top: 100%; 
    margin-top: 15px;
    left: 20px;
    right: 20px;
    transform: translateY(-10px);
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 12px 18px;
    border-radius: 6px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.filter-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* === YENİ DÜZENLEME BİTİŞ === */



/* Tablet ve Altı (992px) Düzenlemeleri */
@media(max-width: 992px) {
    .hero-image { display: flex; margin-top: 3rem; }
    .hero-image img { 
        box-shadow: none;
        transition: transform 0.2s ease-out;
    }
    .hero-image img:active {
        transform: scale(1.03);
    }
}

/* Mobil (768px altı) Düzenlemeleri */
@media(max-width: 768px) {
    
    .page-header {
        text-align: center;
        padding-bottom: 20px;
    }
    .dark-header-page .page-header {
        padding-top: calc(var(--header-height) + 10px); 
    }
    
    .blog-list-page .page-header h1 {
        font-size: 2.3rem;
        white-space: nowrap;
    }
    .page-header p {
        font-size: 0.95rem;
        margin-top: 0.25rem;
    }
    
    .filter-container {
        position: relative;
        margin-bottom: 2rem;
        gap: 0; 
        z-index: 100;
    }
    
    .filter-buttons {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        z-index: 10;
        margin-top: 8px;
        gap: 0;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    opacity 0.4s ease-in-out,
                    visibility 0.5s,
                    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .filter-buttons.is-open {
        display: flex !important;
        max-height: 400px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    
    .filter-buttons .filter-btn {
        padding: 14px 20px;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid #f0f0f0;
        text-align: left;
        font-size: 1rem;
        height: auto;
        margin: 0;
        color: var(--text-color);
        transition: background-color 0.2s ease;
    }
    .filter-buttons .filter-btn:last-child {
        border-bottom: none;
    }
    .filter-buttons .filter-btn.active {
        background: var(--secondary-color);
        color: var(--accent-color);
        font-weight: 600;
    }
    
    .filter-buttons .filter-btn:hover {
        background: var(--primary-color);
    }
    .filter-buttons .filter-btn:hover .btn-text-original,
    .filter-buttons .filter-btn:hover .btn-text-hover {
        color: var(--secondary-color) !important;
    }

    .filter-buttons .filter-btn .btn-text-original {
        display: none;
    }
    .filter-buttons .filter-btn .btn-text-hover {
        display: inline;
        opacity: 1;
        transform: none;
        position: static;
        color: inherit;
    }

    .filter-dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        background: var(--secondary-color);
        border: 1px solid #eee;
        padding: 14px 22px;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 600;
        color: var(--primary-color);
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        transition: box-shadow 0.2s ease;
    }
    .filter-dropdown-toggle:hover {
         box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }
    .filter-dropdown-toggle i {
        transition: transform 0.3s ease;
        color: var(--accent-color);
    }
    .filter-dropdown-toggle[aria-expanded="true"] i {
        transform: rotate(180deg);
    }

    .logo { font-size: 1.3rem; gap: 12px; }
    .logo img { height: 50px; width: 50px; }

    .hero-title { 
        font-size: 2.5rem; 
        line-height: 1.3;
        text-align: center;
    }
    .hero-subtitle { 
        font-size: 1rem; 
        text-align: center;
    }
    
    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr; 
        gap: 10px;
    }
    .hero-buttons .btn {
        display: block; width: 100%; margin: 0;
        font-size: 0.9rem; padding: 12px 10px;
        text-align: center;
    }
    .hero-buttons .btn-secondary { margin-left: 0; }

    .accordion-header {
        font-size: 1.25rem; 
        padding-top: 18px;    
        padding-bottom: 18px; 
    }

    .section {
        padding: 60px 0;
    }
    #cta {
        padding: 50px 0;
    }
    #latest-blog {
        padding-top: 60px !important;
    }
    
    .grid-4 { 
        gap: 1.5rem;
    }
    .value-card {
        padding: 1.5rem 1rem;
    }
    .value-card h3 {
        font-size: 1.1rem;
    }
    
    .footer-grid { 
        grid-template-columns: 1fr; 
    }
    .footer-grid > div {
        text-align: center;
        margin-bottom: 0;
    }
    .footer-grid .footer-about,
    .footer-contact .footer-address-text,
    .footer-contact .original-contact-link,
    .footer-contact h4,
    .footer-social {
        display: none;
    }
    .footer-grid .footer-links {
        display: block;
        margin-bottom: 0.75rem; 
    }
    .footer-links h4 {
        display: none;
    }
    .footer-links ul { 
        padding: 0; 
        margin: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.25rem 1rem;
    }
    .footer-links li { 
        margin-bottom: 0;
        font-size: 0.9rem;
    }
    .footer-mobile-icons {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }
    .footer-mobile-icons a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--secondary-color);
        font-size: 1.3rem;
        text-decoration: none;
        transition: background-color 0.3s, color 0.3s, transform 0.3s;
    }
    .footer-mobile-icons a:hover {
        background-color: var(--accent-color);
        color: var(--primary-color);
        transform: scale(1.1);
    }
    .footer-bottom {
        text-align: center;
        border-top: none;
        margin-top: 0.75rem;
        padding-top: 0;
        padding-bottom: 5px;
    }
    .footer-bottom .footer-credit {
        margin-top: 8px;
    }
    
    .blog-card.animate-on-scroll {
        opacity: 0;
        transform: translateY(30px);
    }
    .blog-card.animate-on-scroll.is-visible {
        opacity: 1;
        transform: translateY(0);
    }
    .blog-card.card-hidden {
        opacity: 0 !important;
        transform: scale(0.9) !important;
    }
}
.value-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);
}

@media(max-width: 768px) {
    .grid-4 { 
        grid-template-columns: 1fr;
    }
}

@media(max-width: 768px) {
    
    .blog-detail-page .page-header h1 {
        white-space: normal;
        font-size: 2.1rem;
        line-height: 1.3;
    }

    .blog-detail-page .post-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .blog-detail-page .blog-post-image {
        max-height: 250px;
    }

    .blog-detail-page .social-share {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    .blog-detail-page .social-share strong {
        margin-right: 0;
    }

    .blog-detail-page .blog-content blockquote {
        font-size: 1.1rem;
        padding: 1.25rem;
    }

    .blog-detail-page .blog-content h2 {
        font-size: 1.8rem;
        margin-top: 2.5rem;
    }

    .blog-detail-page .blog-content h3 {
        font-size: 1.3rem !important; 
        margin-top: 2rem !important;
    }
}
.blog-detail-page .blog-content ul {
    list-style: none;
    padding-left: 0.5rem;
}

.blog-detail-page .blog-content li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.5rem;
}

.blog-detail-page .blog-content li::before {
    content: '\f0da';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.9rem;
}
.blog-sidebar .sidebar-widget:nth-of-type(2) ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding-left: 0;
}

.blog-sidebar .sidebar-widget:nth-of-type(2) li {
    margin-bottom: 0;
    padding-left: 0;
}

.blog-sidebar .sidebar-widget:nth-of-type(2) li::before {
    content: none;
}

.blog-sidebar .sidebar-widget:nth-of-type(2) li a {
    display: inline-block;
    background-color: #f0f0f0;
    border: 1px solid #e0e0e0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.blog-sidebar .sidebar-widget:nth-of-type(2) li a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.blog-detail-page .blog-content blockquote {
    position: relative;
    border-left: none;
    padding-left: 3.5rem;
    font-style: italic;
    font-weight: 500;
    font-size: 1.15rem !important; 
    padding: 1.5rem !important;
}

.blog-detail-page .blog-content blockquote::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    
    position: absolute;
    left: 0.5rem;
    top: 0.8rem;
    font-size: 2rem;
    opacity: 0.9;
}

@media(max-width: 992px) {
    .blog-detail-page .blog-sidebar {
        margin-top: 2.5rem;
        padding-top: 2.5rem;
        border-top: 2px solid #f0f0f0;
    }
}
@media(max-width: 768px) {
    
    .page-header h1 {
        font-size: 2.3rem;
        line-height: 1.3;
        white-space: normal;
    }

    .page-header p {
        font-size: 0.95rem;
        margin-top: 0.25rem;
    }

    .blog-list-page .page-header h1 {
        white-space: nowrap;
    }

    .blog-detail-page .page-header h1 {
        font-size: 2.1rem; 
    }
}
.accordion-light .accordion-header.active {
        color: var(--accent-color);
    }

.accordion-light .accordion-header.active::after {
        color: var(--accent-color);
    }
@media(max-width: 768px) {
    
    .page-uzmanlik .page-header h1 {
        white-space: nowrap;
    }
}
#uzmanlik-detay .accordion-light .accordion-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07); 
    margin-bottom: 1rem; 
    border-bottom: none; 
    overflow: hidden; 
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

#uzmanlik-detay .accordion-light .accordion-item:hover {
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

#uzmanlik-detay .accordion-light .accordion-header {
    padding: 22px 20px;
}

#uzmanlik-detay .accordion-light .accordion-content {
    background-color: #fdfdfd;
    padding-bottom: 5px;
}
.page-hakkimizda #mission-vision .vision-item .section-title {
    color: var(--primary-color);
}

.page-hakkimizda #mission-vision .vision-item .section-title::after {
    background-color: var(--primary-color);
}

.page-hakkimizda #mission-vision .mission-vision-item.vision-item img {
    box-shadow: -10px 10px 0 var(--primary-color);
}

@media(max-width: 992px) {
    .page-hakkimizda #mission-vision .mission-vision-item.vision-item img {
        box-shadow: -10px 10px 0 var(--primary-color);
    }
}
@media(max-width: 992px) {
    
    .mission-vision-item.vision-item .image-content {
        order: initial; 
    }

    .mission-vision-item.vision-item .text-content {
        order: -1;
    }
}
@media(max-width: 768px) {
    .page-sss .page-header h1 {
        white-space: nowrap;
        font-size: 2.1rem; 
    }
}

#faq-section .accordion-light .accordion-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    margin-bottom: 1rem;
    border-bottom: none;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
#faq-section .accordion-light .accordion-item:hover {
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

#faq-section .accordion-light .accordion-header {
    padding: 22px 45px 22px 20px;
}

#faq-section .accordion-light .accordion-content {
    background-color: #fdfdfd;
    padding-bottom: 5px;
}

.page-sss .accordion-light .accordion-header.active {
    color: var(--accent-color);
}
.page-sss .accordion-light .accordion-header.active::after {
    color: var(--accent-color);
}

a,
button,
.btn,
.filter-btn,
.accordion-header,
.back-to-top-btn,
.footer-mobile-icons a,
.footer-social-icons a {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

.filter-btn.active:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    cursor: default;
}

.filter-btn.active:hover .btn-text-hover {
    color: var(--primary-color) !important;
}


@media(min-width: 769px) {
    .filter-toast {
        position: fixed; 
        bottom: 30px; 
        left: 50%;
        z-index: 9999; 
        opacity: 0;
        transform: translateX(-50%) translateY(calc(100% + 40px));
        pointer-events: none;
        background-color: var(--primary-color);
        color: var(--light-text-color);
        border-radius: 10px;
        padding: 16px 24px;
        font-size: 1rem;
        box-shadow: 0 8px 25px rgba(34, 40, 49, 0.25);
        transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
                    opacity 0.6s ease;
    }

    .filter-toast.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }
    
    .filter-toast i {
        color: var(--accent-color);
        font-size: 1.2rem;
        margin-right: 12px;
    }
}