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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

body.no-scroll {
    overflow: hidden;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background-color: #1a1a1a;
    color: rgba(230, 178, 68, 0.705);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header .logo {
    font-size: 24px;
    font-weight: 700;
    color: rgba(230, 178, 68, 0.705);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-header .logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 99px;
    margin-right: 15px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: rgba(230, 178, 68, 0.705);
}

#main-nav {
    position: relative;
}

.main-menu {
    display: flex;
    gap: 25px;
}

.main-menu > li {
    position: relative;
}

.main-menu a {
    display: block;
    padding: 10px 0;
    color: rgba(230, 178, 68, 0.705);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.main-menu a:hover {
    color: #FFFFFF;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    min-width: 200px;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-top: 3px solid #3498db;
}

.submenu li {
    position: relative;
}

.submenu a {
    padding: 12px 20px;
    color: rgba(230, 178, 68, 0.705);
    white-space: nowrap;
}

.submenu a:hover {
    background-color: #333;
    color: #FFFFFF;
}

.main-menu > li:hover > .submenu,
.submenu > li:hover > .submenu {
    display: block;
}

.submenu .submenu {
    left: 100%;
    top: 0;
}

body.no-scroll {
    overflow: hidden;
}

.menu-toggle {
    display: none;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: rgba(230, 178, 68, 0.705);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) { top: 0px; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }

.menu-toggle.active span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    left: -30px;
}
.menu-toggle.active span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease; /* Geçiş süresini yavaşlattık */
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

    #main-nav .submenu.active {
        display: block;
    }

    .has-submenu > a::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        float: right;
        transition: transform 0.3s ease;
    }

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

@media (max-width: 992px) {
    .site-header .container {
        flex-wrap: wrap;
        position: relative;
    }

    .site-header .logo {
        flex-grow: 0;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1002;
    }

    #main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        background-color: #000;
        z-index: 1000;
        padding-top: 80px;
        transition: right 0.9s cubic-bezier(0.23, 1, 0.32, 1);
        overflow-y: auto;
    }

    #main-nav.menu-open {
        display: block;
        right: 0;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    #main-nav .main-menu {
        flex-direction: column;
    }
    
    #main-nav ul li a {
        display: block;
        padding: 15px 25px;
        border-bottom: 1px solid #222;
        color: rgba(230, 178, 68, 0.705);
    }

    #main-nav .submenu {
        display: none;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #1a1a1a; /* Alt menü arkaplanı - Masaüstü ile aynı yapıldı */
        width: 100%;
        padding-left: 0;
    }
     #main-nav ul.submenu ul.submenu {
        padding-left: 35px;
        background-color: rgba(0, 0, 0, 0.5); /* Arka planı hafifçe koyulaştırarak ayrımı güçlendirir */
    }

}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.overlay.active {
    display: block;
}

/* === Sayfa İçerik Stilleri === */
.page-title-section {
    background-color: #1a1a1a;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c29525' fill-opacity='0.1' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    color: #fff;
    padding: 39px 0;
    text-align: center;
    border-bottom: 1px solid #333;
}

.page-title-section h1 {
    color: rgba(230, 178, 68, 0.9);
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    background-color: transparent;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumb-section {
    background-color: #f8f9fa;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.02);
}
.breadcrumb-section .container { padding: 0 20px; }

.breadcrumb-item a {
    color: #555;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #c29525;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: rgba(230, 178, 68, 0.705);
}

.breadcrumb-item+.breadcrumb-item::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f105";
    color: #aaa;
    margin: 0 0.75rem;
}

.breadcrumb-item a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.main-content {
    background-color: #fff;
}

.content-article h2, .content-article h3 {
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-article p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.content-article ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 1rem;
}

.content-article ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}

.content-article ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: rgba(230, 178, 68, 0.8);
    position: absolute;
    left: 0;
    top: 2px;
}

.content-article a {
    color: #c29525;
    font-weight: 500;
    text-decoration: underline;
}

.content-article a:hover {
    color: #000;
}

/* === Öne Çıkan Görsel Stilleri === */
.page-featured-image {
    width: 100%;
    max-height: 400px;
    aspect-ratio: 21 / 9;
    overflow: hidden;
    border-radius: 8px;
    background-color: #e9ecef;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 15px;
}

.page-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    margin-bottom: 5px;
}

/* === Footer Stilleri === */
.site-footer-main {
    background-color: #111;
    color: #aaa;
    padding-top: 50px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.widget-title {
    color: rgba(230, 178, 68, 0.9);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-logo {
    max-width: 150px;
    margin: 15px 0;
    opacity: 0.8;
}

.footer-menu li, .footer-contact li { margin-bottom: 10px; }
.footer-menu a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact i { color: rgba(230, 178, 68, 0.8); margin-right: 10px; width: 20px; }

.footer-bottom {
    background-color: #1a1a1a;
    padding: 20px 0;
    border-top: 1px solid #222;
    position: relative;
    overflow: hidden;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c29525' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: slide-right 60s linear infinite;
    z-index: 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.ena-grup { display: flex; align-items: center; gap: 8px; margin-bottom:13px; }
.ena-grup img { height: 25px; vertical-align: middle; }

/* === Sayfa İçi Hizmetler Bölümü Stilleri === */
.services-section-page {
    padding: 60px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.section-title-center {
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title-center h2 {
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 10px;
}

.section-title-center p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

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

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 35px 30px;
    text-align: center;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);    
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease;
}

/* JavaScript ile .animate sınıfı eklendiğinde çalışacak stil */
.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4) { transition-delay: 0.3s; }

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

.service-card-icon {
    font-size: 3rem;
    color: #c29525;
    margin-bottom: 20px;
}

.service-card-title {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
}

.service-card-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card-link {
    color: #c29525;
    font-weight: 600;
    display: inline-block;
    transition: color 0.3s ease;
}

.service-card-link:hover {
    color: #000;
}
.service-card-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}
.service-card-link:hover i {
    transform: translateX(5px);
}

/* === Sidebar Stilleri === */
.page-sidebar {
    padding-left: 20px;
}

.sidebar-widget {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
}

.sidebar-widget .widget-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
    font-size: 1.3rem;
}

.sidebar-menu li {
    margin-bottom: 10px;
}

.sidebar-menu li a {
    display: block;
    color: #555;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sidebar-menu li a:hover {
    background-color: #c29525;
    color: #fff;
    transform: translateX(5px);
}

.widget-why-us {
    background-color: #1a1a1a;
    color: #fff;
}
.widget-why-us .widget-title {
    color: rgba(230, 178, 68, 0.9);
    border-bottom-color: #333;
}
.why-us-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #ccc;
}
.why-us-list li i {
    color: #c29525;
    font-size: 1.2rem;
    width: 20px;
}

/* === Grid Sistemi (Bootstrap Benzeri) === */
/* Ana satır için flexbox tanımı */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    flex-wrap: wrap;    
}

.col-lg-8, .col-lg-4, .col-lg-10 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.offset-lg-1 {
    /* Mobil ve tabletlerde offset olmasın */
    margin-left: 0;
}




@media (min-width: 992px) {
    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-lg-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .offset-lg-1 {
        margin-left: 8.333333%;
    }
}


/* ==========================================================================
   Sidebar İletişim Widget Stilleri (Koyu Tema Alternatifi)
   ========================================================================== */
.sidebar-widget.widget-contact,
.sidebar-widget.widget-koyu {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.widget-contact .widget-title,
.widget-koyu .widget-title {
    color: rgba(230, 178, 68, 0.9);
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #333;
    padding-bottom: 15px;
}

.widget-koyu .sidebar-menu li a {
    color: #ddd;
}
.widget-koyu .sidebar-menu li a:hover {
    background-color: #c29525;
    color: #fff;
}

.widget-koyu .sidebar-menu li a.active {
    background-color: #c29525;
    color: #fff;
}

.widget-contact .sidebar-contact-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    color: #ccc;
}

.widget-contact .sidebar-contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.widget-contact .sidebar-contact-list li:last-child {
    margin-bottom: 0;
}

.widget-contact .sidebar-contact-list i {
    color: #c29525;
    font-size: 1.2rem;
    width: 35px;
    text-align: center;
    margin-right: 10px;
}

.widget-contact .sidebar-contact-list a {
    color: #ddd;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.widget-contact .sidebar-contact-list a:hover {
    color: #fff;
}

/* ==========================================================================
   Mobil Görünüm İçin Sidebar Konumlandırması
   ========================================================================== */
@media (max-width: 991.98px) {
    .col-lg-4 {
        display: none;
    }
}

/* ==========================================================================
   Belge Listesi Stilleri
   ========================================================================== */
.document-list-wrapper {
    margin-top: 40px;
    border-top: 2px solid #e9ecef;
    padding-top: 30px;
}

.document-list-title {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #333;
}

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

.document-list li {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    transition: box-shadow 0.3s ease;
}

.document-list li:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}

.document-icon {
    font-size: 2.5rem;
    color: #d9534f;
    margin-right: 20px;
}

.document-info {
    flex-grow: 1;
}

.document-name {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.document-download-btn {
    background-color: #c29525;
    color: #000;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.document-download-btn:hover {
    background-color: #000;
    color: #fff;
}

.document-download-btn i {
    margin-left: 8px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.contact-info-list i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--bs-primary);
    width: 30px;
    text-align: center;
}
.contact-info-list p {
    margin-bottom: 0.25rem;
}
.contact-info-list a {
    text-decoration: none;
    color: inherit;
}
.contact-info-list a:hover {
    color: var(--bs-primary);
}

.contact-form-wrapper {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

#iletisimFormu .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1rem;
}

#iletisimFormu .row {
    --bs-gutter-x: 1.5rem;
}

#iletisimFormu .form-label {
    font-weight: 500;
    margin-bottom: 0.1rem;
    margin-top: 15px;
}

#iletisimFormu .form-control {
    background-color: #f0f2f5;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 12px 18px;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;    
}

#iletisimFormu .form-control:focus {
    background-color: #fff;
    border-color: #c29525;
    box-shadow: 0 0 0 4px rgba(194, 149, 37, 0.1);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* Etiket ile input arasına boşluk ekler */
    padding:0 2rem;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-align: left;
    

}

.form-group textarea.form-control {
    height: auto;
}

#iletisimFormu .btn-primary {
    padding: 12px 25px;
    font-size: 1rem;
    width: 100%;
    margin-top: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

#iletisimFormu .btn-primary:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-3px);
}

/* ==========================================================================
   10. Referanslar (Logo Slider) Alanı
   ========================================================================== */
.references-section {
    padding: 60px 0;
    background-color: #fff;
    border-top: 1px solid #e9ecef;
}

.reference-swiper {
    padding: 20px 0;
}

.reference-swiper .swiper-wrapper {
    align-items: center;
    transition-timing-function: linear !important;
}

.reference-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.reference-item img {
    max-width: 150px;
    max-height: 70px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.reference-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==========================================================================
   9. Blog & Haberler Alanı (Ana Sayfa)
   ========================================================================== */

.blog-section-home {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.blog-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-slider-container {
    position: relative;
    padding: 0 40px;
}

.blog-swiper .swiper-slide {
    height: auto;
}

.blog-swiper-next, .blog-swiper-prev {
    color: #c29525;
}

.blog-grid-category {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-card-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-category {
    display: inline-block;
    background-color: rgba(194, 149, 37, 0.1);
    color: #c29525;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    align-self: flex-start;
}

.blog-card-title {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 15px;
    flex-grow: 1;
}

.blog-card-title a:hover {
    color: #c29525;
}

.btn-read-more {
    color: #c29525;
    font-weight: 600;
    align-self: flex-start;
}

.btn-read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   8. Sıkça Sorulan Sorular (FAQ) Alanı
   ========================================================================== */

.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #c29525;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.faq-question i {
    font-size: 1rem;
    color: #c29525;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   7. Müşteri Yorumları (Testimonials) Alanı
   ========================================================================== */

.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 3rem;
    color: rgba(194, 149, 37, 0.15);
    z-index: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    position: relative;
    z-index: 2;
}

.author-image {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.author-company {
    font-size: 0.9rem;
    color: #777;
}

.testimonial-swiper .swiper-pagination-bullet {
    background-color: #ccc;
    opacity: 1;
    transition: background-color 0.3s, transform 0.3s;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background-color: #c29525;
    transform: scale(1.2);
}
/* ==========================================================================
   Blog Kategori Sayfası Mobil Uyumluluk
   ========================================================================== */
@media (max-width: 767.98px) {
    .blog-grid-category {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Blog Detay - Benzer Yazılar Alanı
   ========================================================================== */
.similar-posts-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}
/* ==========================================================================
   Yeni İletişim Sayfası Stilleri
   ========================================================================== */
.contact-page-wrapper {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.contact-info-side {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-info-side h2 {
    color: rgba(230, 178, 68, 0.95);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.contact-info-side .contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-side .contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.contact-info-side .contact-info-list li i {
    color: #c29525;
    font-size: 1.4rem;
    margin-top: 4px;
    width: 25px;
}

.contact-info-side .contact-info-list strong {
    display: block;
    color: #fff;
    margin-bottom: 5px;
}

.contact-info-side .contact-info-list a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-side .contact-info-list a:hover {
    color: #fff;
}

.contact-form-side {
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form-side h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
}

.map-section {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.map-section iframe {
    display: block;
}

@media (max-width: 991.98px) {
    .contact-info-side {
        border-radius: 12px 12px 0 0;
    }
    .contact-form-side {
        border-radius: 0 0 12px 12px;
    }
    .col-lg-4 {
        display: block !important;
    }
}

/* ==========================================================================
   Ana Sayfa Stilleri
   ========================================================================== */

.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 2px solid transparent;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #c29525;
    color: #000;
    border-color: #c29525;
}

.btn-primary:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: #343a40;
    border-color: #343a40;
}

.btn-secondary:hover {
    background-color: #343a40;
    color: #fff;
    border-color: #343a40;
}

.btn-hero-outline {
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}
.btn-hero-outline:hover {
    color: #fff;
    background-color: #333;
    border-color: #c29525;
    transform: translateY(-3px);

}


.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    border-color: #25D366;
}
.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
}
.btn-whatsapp i {
    margin-right: 8px;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-background.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 120px 0;
    text-align: center;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: rgba(230, 178, 68, 0.95);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons .btn {
    margin: 10px;
}

.services-section-home {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-section-home {
    padding: 80px 0;
    background-color: #fff;
}

.about-image-home {
    position: relative;
    padding: 20px;
    max-height: 450px;
    overflow: hidden;
}

.about-image-home img {
    width: 100%;
    height: auto;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative; /* ::before pseudo-element'i için */
    z-index: 2; /* Dekorasyonun önünde durması için */
    display: block;
}

.about-image-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 80%;
    background-color: #f8f9fa;
    border: 10px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    z-index: 1;
    animation: pulse-decoration 5s infinite ease-in-out;
}

@keyframes pulse-decoration {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

.about-content-home {
    padding-left: 50px;
}

.about-content-home .section-subtitle {
    color: #c29525;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
    margin-top:15px;
}

.about-content-home h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content-home p {
    margin-bottom: 20px;
    color: #555;
}

.about-content-home .why-us-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-content-home .why-us-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #333;
}

.about-content-home .why-us-list li i {
    color: #c29525;
    font-size: 1.2rem;
}

.products-section-home {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.product-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card-home {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.product-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.product-card-home a {
    display: block;
    position: relative;
}

.product-card-home img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4;
    padding: 10px;
    object-fit: cover;
    display: block;
    background-color: #e9ecef;
}

.product-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 40px 20px 20px;
    color: #fff;
}

.product-card-overlay h3 {
    font-size: 1.5rem;
    margin: 0;
}

.stats-section {
    background-color: #1a1a1a;
    padding: 80px 0;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #c29525;
    margin-bottom: 5px;
}

.stat-item p.stat-title {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
}

.cta-section {
    background: linear-gradient(rgba(194, 149, 37, 0.9), rgba(194, 149, 37, 0.9)), url('../images/cta-background.jpg') no-repeat center center/cover;
    padding: 80px 0;
    text-align: center;
    color: #000;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* ==========================================================================
   Ana Sayfa Ürün Slider Stilleri
   ========================================================================== */
.product-slider-container {
    position: relative;
    padding: 0 40px;
}

.product-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card-slider {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-slider:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.product-card-slider-image {
    aspect-ratio: 3 / 4;
    background-color: #e9ecef;
}

.product-card-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-slider-content {
    padding: 20px;
    text-align: left;
}

.product-card-slider-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.product-card-slider-cta {
    color: #c29525;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-card-slider-cta:hover {
    color: #000;
}

.product-card-slider-cta i {
    margin-left: 5px;
}

.swiper-button-next, .swiper-button-prev {
    color: #c29525;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 2rem;
}

/* =================================
   1.1 - İletişim Bilgi Barı
   ==================================== */
.contact-info-bar {
    background-color: #1a1a1a;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    position: relative;
    overflow: hidden; /* Animasyonlu arka plan için */
}

.contact-info-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c29525' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: slide-left 60s linear infinite;
    z-index: 0;
}

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

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

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ccc;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-info-item i {
    font-size: 2rem;
    color: #c29525;
    transition: transform 0.3s ease;
}

.contact-info-item strong {
    display: block;
    font-weight: 600;
    color: #fff;
    font-size: 0.9rem;
}

.contact-info-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.contact-info-item a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .contact-info-item {
        font-size: 13px;
    }
    .contact-info-item {
       justify-content: center;
       text-align: center;
       flex-direction: column;
       gap: 5px;
    }
    .contact-info-item i {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   İletişim Formu Mobil İyileştirmeleri
   ========================================================================== */
@media (max-width: 767.98px) {
    #iletisimFormu .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ==========================================================================
   Contact Info Bar Mobil Gizleme
   ========================================================================== */

/* ==========================================================================
   Ana Sayfa SEO İçerik Alanı
   ========================================================================== */
.seo-content-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.seo-content-wrapper h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 20px;
    text-align: center;
}

.seo-content-wrapper .section-intro {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
}

.seo-content-block {
    margin-bottom: 35px;
}

.seo-content-block h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.seo-content-block p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.seo-content-block ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.seo-content-block ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.7;
}

.seo-content-block ul li::before {
    content: '\f058'; /* FontAwesome check-circle ikonu */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #c29525;
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 1.1rem;
}

.seo-content-block a {
    color: #c29525;
    font-weight: 600;
    text-decoration: underline;
}

.seo-content-block a:hover {
    color: #000;
}

/* ==========================================================================
   Ana Sayfa SEO İçerik Slider Stilleri
   ========================================================================== */
.seo-accordion-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.seo-slider-container {
    position: relative;
    padding: 0 40px; /* Oklar için yanlarda boşluk bırak */
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.seo-content-swiper {
    height: auto;
    padding: 40px 20px;
}

.seo-slide-item {
    text-align: left;
}

.seo-slide-item h3 {
    height: auto;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.seo-slide-content {
    color: #555;
    line-height: 1.8;
}

.seo-slide-content p {
    margin-bottom: 1rem;
}

.seo-slide-image {
    max-width: 275px;
    max-height: 155px;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.seo-swiper-next,
.seo-swiper-prev {
    color: #c29525;
}

.seo-swiper-pagination {
    position: static;
    padding-top: 20px;
}
.seo-swiper-pagination .swiper-pagination-bullet-active {
    background-color: #c29525;
}

/* ==========================================================================
   FİYAT LİSTESİ SAYFASI STİLLERİ
   ========================================================================== */
.price-update-info {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    background-color: #fff8e1;
    border-left: 4px solid #c29525;
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.price-update-info i {
    margin-right: 10px;
    color: #c29525;
}

.price-category-block {
    margin-bottom: 40px;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    background-color: #fff;
}

.price-category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    background-color: #343a40;
    padding: 20px;
    margin: 0;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
}
.price-category-title i {
    margin-right: 15px;
    color: #c29525;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}
.price-table th, .price-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.price-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #343a40;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.price-table tbody tr:hover {
    background-color: #e9ecef;
}

.price-table .price-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: #28a745;
}

.text-end {
    text-align: right !important;
}

.price-category-cta {
    padding: 20px;
    background-color: #f8f9fa;
    text-align: right;
    border-top: 1px solid #e9ecef;
}
.price-category-cta .btn {
    font-size: 0.95rem;
    padding: 10px 20px;
}

.final-cta-block {
    margin-top: 40px;
    padding: 30px;
    background-color: #343a40;
    color: #fff;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border: 1px solid #c29525;
}
.final-cta-block h3 {
    font-size: 2.2rem;
    color: #c29525;
    margin-bottom: 10px;
}
.final-cta-block p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    opacity: 0.9;
}
.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
}
.btn-whatsapp:hover {
    background-color: #1EBE57;
    color: #fff;
}


/* ==========================================================================
   FİYAT LİSTESİ MOBİL UYUMLULUK
   ========================================================================== */
@media (max-width: 768px) {
    .price-table thead {
        display: none;
    }

    .price-table, .price-table tbody, .price-table tr, .price-table td {
        display: block;
        width: 100%;
    }

    .price-table tr {
        margin-bottom: 20px;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    
    .price-table tbody tr:nth-child(even) {
        background-color: #fff;
    }

    .price-table td {
        text-align: right;
        position: relative;
        padding-left: 50%;
        border-bottom: 1px solid #f1f1f1;
        padding-top: 12px; /* Dikey padding'i ayarla */
        padding-bottom: 12px; /* Dikey padding'i ayarla */
    }

    .price-table td:last-child {
        border-bottom: none;
    }

    .price-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: calc(50% - 30px);
        text-align: left;
        font-weight: 700;
        color: #343a40;
        font-size: 0.95rem;
    }

    .price-table td[data-label="HURDA CİNSİ"] {
        font-weight: 600;
        color: #212529;
        font-size: 1.05rem;
    }

    .price-table td[data-label="BİRİM"] {
        display: none;
    }

    .price-table td[data-label="FİYAT"]::after {
        content: " / " attr(data-unit);
        font-weight: 500;
        color: #555;
        font-size: 0.9rem;
        margin-left: 5px;
    }

    .price-category-title {
        font-size: 1.5rem;
        padding: 15px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        letter-spacing: 0.5px;
        line-height: 1.3;
    }

    .price-category-cta {
        text-align: center;
        padding: 15px;
    }
    .final-cta-block {
        margin-top: 40px;
        padding: 30px;
    }
    .final-cta-block h3 {
        font-size: 1.8rem;
    }
    .final-cta-block p {
        font-size: 1rem;
    }
    .btn-whatsapp {
        font-size: 1rem;
        padding: 10px 25px;
    }
}

/* Genel bölüm başlıkları için boşluk ayarı */
.section-title-center {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.price-search-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.price-search-wrapper .search-icon {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 1.1rem;
}

#price-search-input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    font-size: 1.1rem;
    border-radius: 50px;
    border: 2px solid #e9ecef;
    background-color: #f8f9fa;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#price-search-input:focus {
    border-color: #c29525;
    box-shadow: 0 0 0 4px rgba(194, 149, 37, 0.1);
    outline: none;
    background-color: #fff;
}

.price-category-block.accordion-item {
    transition: border-color 0.3s ease;
}

.price-category-block.accordion-item.active {
    border-color: #c29525;
}

.price-category-title.accordion-toggle {
    width: 100%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-toggle .accordion-icon {
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.accordion-item.active .accordion-toggle .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    overflow: hidden;
}

.accordion-item.active .accordion-content {
    grid-template-rows: 1fr;
}

.accordion-content > .price-table {
    min-height: 0;
}

.price-category-title.accordion-toggle span {
    flex-grow: 1;
}

/* ==========================================================================
   FİYAT LİSTESİ HIZLI ERİŞİM MENÜSÜ
   ========================================================================== */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Sabit header/menü yüksekliğine göre ayarlandı */
}

.quick-access-menu {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 30px;
}

.quick-access-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 15px;
    text-align: center;
}

.quick-access-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.quick-access-menu ul li a {
    display: block;
    background-color: #fff;
    color: #495057;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.quick-access-menu ul li a:hover {
    background-color: #c29525;
    color: #fff;
    border-color: #c29525;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.quick-access-menu.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    animation: slideDown 0.5s ease-in-out;
}
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.quick-access-menu {
    position: relative;
    transition: all 0.5s ease;
    overflow: hidden;
}

.quick-access-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #aaa;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

.quick-access-close-btn:hover { color: #333; }

.quick-access-menu.collapsed {
    max-height: 45px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.quick-access-menu.collapsed .quick-access-title {
    margin-bottom: 0;
}

.quick-access-menu.collapsed ul {
    display: none;
}

.quick-access-menu.collapsed .quick-access-close-btn {
    top: 50%;
    transform: translateY(-50%);
}

.quick-access-menu.collapsed .quick-access-close-btn:hover {
    transform: translateY(-50%) scale(1.2);
}

.grecaptcha-badge {
    visibility: hidden;
}

/* ==========================================================================
   Özel Sayfalama (Pagination) Stilleri
   ========================================================================== */
.pagination-wrapper {
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
}

.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
    gap: 8px;
}

.page-item:first-child .page-link {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.page-item:last-child .page-link {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 1rem;
    color: #c29525;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.page-link:hover {
    z-index: 2;
    color: #8a681b;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #c29525;
    border-color: #c29525;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}


/* ==========================================================================
   15. İletişim Formu Başarı Sayfası (sonuctamam.php)
   ========================================================================== */

.success-page-section {
    background-color: #f4f7f6;
    padding: 80px 15px;
}

.success-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.success-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
    position: relative;
}

.success-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1;
}

.success-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.success-lead {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 10px;
}

.success-text {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 25px auto;
}

.success-text strong {
    color: var(--secondary-color);
}

.next-steps-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.next-steps-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.action-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.action-card-item {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.action-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.07);
    background-color: #fff;
    border-color: var(--primary-color);
}

.action-card-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 20px;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.action-card-body {
    flex-grow: 1;
}

.action-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #34495e;
    margin: 0 0 5px 0;
}

.action-card-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.5;
}

.action-card-arrow {
    font-size: 16px;
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.action-card-item:hover .action-card-arrow {
    color: var(--primary-color);
}

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

@media (max-width: 576px) {
    .success-card, .next-steps-card {
        padding: 25px;
    }
    .success-title {
        font-size: 2rem;
    }
    .success-lead {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   İletişim Formu İyileştirmeleri
   ========================================================================== */

#iletisimFormu .form-control {
    height: 50px;
    font-size: 1rem;
}

#iletisimFormu textarea.form-control {
    height: auto;
}

#iletisimFormu .form-control::placeholder {
    color: #999;
    opacity: 1;
}

#iletisimFormu .form-control:focus:valid {
    border-color: #28a745;
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.1);
}

#iletisimFormu .form-control:focus:invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.file-upload-area {
    margin-top: 1.5rem;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.file-upload-area:hover {
    border-color: #c29525;
    background-color: #fff;
}

.file-upload-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-label {
    cursor: pointer;
    color: #555;
}

.file-upload-label i {
    font-size: 2.5rem;
    color: #c29525;
    display: block;
    margin-bottom: 10px;
}

.file-upload-label strong {
    display: block;
    font-size: 1.1rem;
    color: #333;
}

.file-upload-hint {
    font-size: 0.9rem;
    color: #777;
}

.file-names-display {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    text-align: left;
    font-size: 0.9rem;
}

.file-names-display li {
    background-color: #e9ecef;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.file-names-display li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.file-names-display li i {
    margin-right: 8px;
    color: #555;
}


.file-names-display li .file-name-text {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-names-display li .file-size {
    color: #555;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.file-upload-footer {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
}
.remove-file-btn {
    background-color: #fbe9e7;
    border: 1px solid #ffcdd2;
    color: #dc3545;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.9rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.remove-file-btn:hover {
    background-color: #dc3545;
    color: #fff;
    opacity: 1;
    transform: scale(1.1); /* Hafif büyüme efekti */
}

.file-upload-area:hover,
.file-upload-area.dragover {
    border-color: #c29525;
}

.file-upload-area.dragover { background-color: #fef8e7; }
.file-upload-area:hover { background-color: #fff; }

/* ==========================================================================
   Dosya Yükleme Önizleme Stilleri
   ========================================================================== */
.file-preview-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
    flex-shrink: 0;
}

.file-preview-icon {
    width: 40px;
    font-size: 1.8rem;
    text-align: center;
}

/* ==========================================================================
   Blog Detay - Önceki/Sonraki Yazı Navigasyonu
   ========================================================================== */
.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.post-navigation .nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: #555;
    transition: all 0.3s ease;
    flex-basis: 50%;
}

.post-navigation .nav-link:hover {
    border-color: #c29525;
    background-color: #fdf8f0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.post-navigation .nav-link i {
    font-size: 1.5rem;
    color: #c29525;
}

.post-navigation .nav-link span {
    font-size: 0.9rem;
    color: #777;
    display: block;
}

.post-navigation .nav-link strong {
    font-size: 1.05rem;
    color: #333;
    font-weight: 600;
}

.post-navigation .next-link {
    text-align: right;
    justify-content: flex-end;
}


/*responsive.css bos*/

/* Sabit Eylem Butonları için Sarmalayıcı */
.floating-action-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1040; /* Diğer elementlerin üzerinde kalması için */
    display: flex;
    flex-direction: column; /* Butonları dikeyde hizala */
    align-items: flex-end; /* Butonları sağa hizala */
    gap: 10px; /* Butonlar arası boşluk */
}

/* Yeni Fiyat Listesi Butonu Stili */
.price-list-floating-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto; /* Genişliğin içeriğe göre ayarlanmasını sağlar */
    height: 55px;
    padding: 0 20px; /* İkon ve metin için yanlarda boşluk */
    gap: 10px; /* İkon ile metin arasına boşluk */
    background-color: #007bff; /* Mavi renk, isteğe göre değiştirilebilir */
    color: #fff;
    border-radius: 50px; /* Kapsül şekli için */
    font-size: 1rem; /* Metin boyutu */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.price-list-floating-btn i {
    font-size: 1.4rem; /* İkon boyutunu ayarla */
}
.price-list-floating-btn span {
    font-weight: 600; /* Metni kalınlaştır */
}

.price-list-floating-btn:hover {
    background-color: #0056b3; /* Hover rengi */
    color: #fff;
    transform: scale(1.1);
}

/* ================================================== */
/* ========= YUKARI ÇIK VE WHATSAPP BUTONLARI ========= */
/* ================================================== */

.scroll-to-top-btn {
    width: 45px;
    height: 45px;
    background-color: #343a40; /* Koyu gri tonu */
    color: #ffffff;
    text-align: center;
    line-height: 45px;
    font-size: 18px;
    border-radius: 50%;
    z-index: 998;
    cursor: pointer;
    display: none; /* Varsayılan olarak gizli */
    opacity: 0;
    transition: opacity 0.4s ease-in-out, background-color 0.3s;
}

.scroll-to-top-btn:hover {
    background-color: #c29525; /* Sitenin ana rengi */
    color: #ffffff;
}

/* Gelişmiş WhatsApp Butonu Stilleri */
.whatsapp-floating-btn {
    width: 55px;
    height: 55px;
    background-color: #25D366; /* WhatsApp yeşili */
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    animation-play-state: paused; /* Animasyonu durdur */
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}


