/* GENEL STİLLER */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #F4F4F4; /* Ana arka plan rengini açık gri yap */
}

.navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 1020;
    background-color: #1A2A3A;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100px;
}

.nav-links a {
    color: #FFFFFF;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #E9C46A;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 100px;
    filter: drop-shadow(0 0 10px rgba(233, 196, 106, 0.7));
}

.nav-links-left,
.nav-links-right {
    flex: 1;
    display: flex;
    gap: 5px;
}

.nav-links-left {
    justify-content: flex-start;
}

.nav-links-right {
    justify-content: flex-end;
}

/* HERO BÖLÜMÜ GENEL */
#hero {
    height: auto; /* Yüksekliği otomatik ayarla */
    padding-bottom: 60px; /* Alt boşluk */
    position: relative;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 42, 58, 0.6); /* Koyu Mavi Overlay */
    z-index: 1;
}

/* HERO - SLIDER KISMI */
.swiper-container {
    height: 800px; /* Slider'a özel yükseklik */
}

.swiper-slide {
    display: flex;
    align-items: center; /* Kartları dikeyde ortala */
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-container {
    background-color: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #E0E0E0;
    height: 600px; /* Tüm kartların aynı boyutta olması için sabit yükseklik */
    width: 100%; /* Genişliği tam ekran yap */
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 5%; /* İç boşlukları yatayda %5 yap */
    transform: translateY(5px);
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: #1A2A3A;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #555555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-button {
    background-color: #E9C46A;
    color: #1A2A3A;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #1A2A3A;
    color: #FFFFFF;
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; /* Ensure hero-image takes full height of hero-container */
}

.hero-image img {
    width: 100%;
    height: 100%; /* Fill the height of its parent */
    object-fit: cover; /* Cover the area, cropping if necessary */
    border-radius: 10px;
}

/* HERO - NEDEN BİZ KISMI */
.why-us-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #FFFFFF; /* Başlık rengi beyaz */
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    position: relative; /* ::after için gerekli */
    padding-bottom: 15px; /* Alt çizgi için boşluk */
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%; /* Alt çizgiyi ortala */
    bottom: 0;
    transform: translateX(-50%); /* Alt çizgiyi ortala */
    width: 60px; /* Alt çizgi genişliği */
    height: 3px; /* Alt çizgi kalınlığı */
    background-color: #E9C46A; /* Vurgu rengi */
}

.why-us-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.1); /* Transparent white background */
    border-radius: 15px; /* Rounded corners for the card */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); /* Shadow for the card */
    text-align: center;
    padding: 30px; /* Increase padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add transition for hover */
}

.feature-card:hover {
    transform: translateY(-10px); /* Lift card on hover */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF; /* White text */
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8); /* Slightly transparent white for paragraph */
    margin-bottom: 0;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Swiper Navigasyon ve Pagination */
.swiper-button-next, .swiper-button-prev {
    color:black;
    transform: translateY(5px) scale(1.2);
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    color: #E9C46A;
}

.swiper-pagination-bullet {
    background: #FFFFFF;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: #E9C46A;
    opacity: 1;
}

/* HİZMETLER SAYFASI STİLLERİ */
#services-hero {
    background-color: #1A2A3A; /* Koyu mavi arka plan */
    color: #FFFFFF;
    padding: 60px 0;
    text-align: center;
}

#services-hero h1 {
    font-size: 3rem;
    margin: 0 0 10px 0;
}

#services-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #E0E0E0;
}

/* HİZMETLER SAYFASI - YENİ TASARIM */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 80px; /* Hizmetler arası boşluk */
}

.service-item {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.service-item-image {
    flex: 1;
    max-width: 50%;
}

.service-item-image img {
    width: 100%;
    border-radius: 10px;
}

.service-item-text {
    flex: 1;
}

.service-item-text h3 {
    font-size: 2.2rem;
    color: #1A2A3A;
    margin-top: 0;
    margin-bottom: 20px;
}

.service-item-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
}

/* Ters sıralama için */
.service-item.service-item--reversed {
    flex-direction: row-reverse;
}

.page-content {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* ÖNE ÇIKAN HİZMETLER BÖLÜMÜ */
#featured-services {
    background-color: #FFFFFF; /* Beyaz arka plan */
    padding: 80px 0;
}

#featured-services .section-title {
    color: #1A2A3A; /* Koyu mavi başlık */
    margin-bottom: 60px;
    text-shadow: none; /* Hero bölümündeki gölgeyi kaldır */
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* Küçük ekranlarda alt alta düşmesi için */
}

.service-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1; /* Eşit genişlikte olmaları için */
    max-width: 280px; /* Maksimum genişlik belirle */
    text-align: center; /* İçeriği ortala */
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

.service-card img {
    width: 100%;
    height: 180px; /* Resim yüksekliğini ayarla */
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.4rem; /* Başlık boyutunu ayarla */
    font-weight: 700;
    color: #1A2A3A;
    margin: 15px 0 10px 0;
    padding: 0 15px; /* Başlık için yatay boşluk */
}

.service-card p {
    font-size: 0.95rem; /* Paragraf boyutunu ayarla */
    line-height: 1.6;
    color: #555555;
    margin: 0 0 20px 0;
    padding: 0 15px; /* Paragraf için yatay boşluk */
    flex-grow: 1;
}

/* İŞ ORTAKLARI VE TEDARİKÇİLER BÖLÜMÜ */
#partners-suppliers {
    background-color: #F4F4F4; /* Açık gri arka plan */
    padding: 80px 0;
    text-align: center; /* İçeriği ortala */
}

#partners-suppliers .section-title {
    color: #1A2A3A;
    margin-bottom: 20px;
    text-shadow: none;
}

.section-description {
    font-size: 1.1rem;
    color: #555555;
    max-width: 800px;
    margin: 0 auto 50px auto; /* Alt boşluğu artır */
    line-height: 1.7;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px; /* Logolar arası boşluk */
    flex-wrap: wrap;
}

.logo-item {
    flex: 0 0 150px; /* Genişliği sabitle, büyümesin/küçülmesin */
}

.logo-item img {
    width: 100%;
    height: auto;
    opacity: 0.6; /* Logoları biraz soluk göster */
    transition: opacity 0.3s ease;
}

.logo-item img:hover {
    opacity: 1; /* Hover durumunda tam görünür yap */
}

/* HAREKETE GEÇİRİCİ MESAJ (CTA) BÖLÜMÜ */
#cta {
    background-color: #1A2A3A; /* Koyu mavi arka plan */
    background-image: linear-gradient(rgba(26, 42, 58, 0.8), rgba(26, 42, 58, 0.8)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax efekti için */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
    opacity: 0.9;
}

/* Butonun mevcut .cta-button stilini kullanmasını sağlayacağız,
   ancak burada daha büyük ve dikkat çekici olması için özelleştirebiliriz. */
#cta .cta-button {
    padding: 20px 45px;
    font-size: 1.2rem;
    transform: scale(1.05); /* Biraz daha büyük */
}

/* BLOG HIGHLIGHTS BÖLÜMÜ */
#blog-highlights {
    background-color: #FFFFFF; /* Beyaz arka plan */
    padding: 80px 0;
}

#blog-highlights .section-title {
    color: #1A2A3A;
    margin-bottom: 60px;
    text-shadow: none;
}

.blog-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.blog-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    flex: 1;
    max-width: 350px; /* Kart genişliği */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.blog-card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1A2A3A;
    margin: 0 0 15px 0;
    min-height: 50px; /* Başlıklar için minimum yükseklik */
}

.blog-card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    flex-grow: 1;
    margin-bottom: 20px;
}

.read-more {
    color: #1A2A3A;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    align-self: flex-start; /* Sola hizala */
}

.read-more:hover {
    color: #E9C46A;
}

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

/* SIKÇA SORULAN SORULAR (FAQ) BÖLÜMÜ */
#faq {
    background-color: #FFFFFF; /* Beyaz arka plan */
    padding: 80px 0;
}

#faq .section-title {
    color: #1A2A3A;
    margin-bottom: 60px;
    text-shadow: none;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background-color: #FFFFFF;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    color: #1A2A3A;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f7f7f7;
}

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer-content {
    padding: 0 25px 20px 25px;
}

.faq-answer-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555555;
    margin: 0;
}

/* VISION & MISSION SECTION */
#vision-mission {
    background-color: #F4F4F4;
}

#vision-mission .section-title {
    color: #1A2A3A;
    text-shadow: none;
}

.vision-mission-frame {
    display: flex;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    padding: 50px;
    margin-top: 60px;
    gap: 40px;
}

.vm-column {
    flex: 1;
    text-align: center;
}

.vm-separator {
    width: 1px;
    background-color: #E0E0E0;
}

.vm-icon {
    font-size: 3rem;
    color: #E9C46A;
    margin-bottom: 20px;
}

.vm-column h3 {
    font-size: 1.8rem;
    color: #1A2A3A;
    margin-bottom: 15px;
}

.vm-column p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555555;
}

/* Responsive styles for Vision & Mission */
@media (max-width: 768px) {
    .vision-mission-frame {
        flex-direction: column;
        padding: 30px;
    }
    .vm-separator {
        width: 80%;
        height: 1px;
        margin: 20px auto; /* Center the separator */
    }
}

/* BLOG SAYFASI STİLLERİ */
#blog-hero {
    background-color: #1A2A3A;
    color: #FFFFFF;
    padding: 60px 0;
    text-align: center;
}

#blog-hero h1 {
    font-size: 3rem;
    margin: 0 0 10px 0;
}

#blog-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #E0E0E0;
}

.blog-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); /* 2 sütunlu */
    gap: 50px;
}

.blog-post-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center; /* İçeriği ortala */
}

.blog-card-image {
    width: 100%;
    height: 250px; /* Resim yüksekliğini ayarla */
    object-fit: cover;
}

.blog-card-body {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-title {
    font-size: 1.8rem;
    color: #1A2A3A;
    margin: 0 0 15px 0;
}

.blog-card-excerpt {
    font-size: 1rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1; /* Özetin esnek büyümesini sağla */
}

.read-more-btn {
    background-color: #E9C46A;
    color: #1A2A3A;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    align-self: center; /* Butonu ortala */
    text-decoration: none; /* Link alt çizgisini kaldır */
    display: inline-block;
}

/* TEKİL BLOG SAYFASI STİLLERİ */
.blog-post-full h1 {
    font-size: 2.8rem;
    color: #1A2A3A;
    margin-bottom: 30px;
}

.blog-post-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 40px;
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
}

.blog-post-content h3 {
    font-size: 1.8rem;
    color: #1A2A3A;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* İLETİŞİM BÖLÜMÜ */
#contact {
    background-color: #F4F4F4;
    padding: 80px 0;
}

#contact .section-title {
    color: #1A2A3A;
    margin-bottom: 20px;
    text-shadow: none;
}

#contact .section-description {
    max-width: 700px;
    margin: 0 auto 50px auto;
    text-align: center;
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.7;
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Harita 2/3, Bilgi 1/3 oranında */
    gap: 40px;
    align-items: center;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-map iframe {
    border-radius: 12px;
    height: 100%;
    min-height: 450px;
}

.contact-info {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #1A2A3A;
    margin-top: 0;
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-info p i {
    color: #E9C46A;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.read-more-btn:hover {
    background-color: #1A2A3A;
    color: #FFFFFF;
}

/* FOOTER BÖLÜMÜ */
#footer {
    background-color: #1A2A3A; /* Koyu Mavi */
    color: #FFFFFF;
    padding: 80px 0 0 0;
    border-top: 5px solid #E9C46A; /* Sarı üst çizgi */
}

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

.footer-col {
    font-size: 0.95rem;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 1.3rem;
    color: #E9C46A; /* Sarı Başlık */
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #E9C46A;
}

.footer-col p {
    line-height: 1.8;
    color: #E0E0E0; /* Biraz daha açık beyaz */
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #E0E0E0;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col ul li a:hover {
    color: #E9C46A;
    padding-left: 5px;
}



.footer-col p i {
    color: #E9C46A;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #E0E0E0;
}

/* MOBİL UYUMLULUK */

/* Mobil Navbar */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001; /* Menünün üstünde kalması için */
}

.mobile-nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100px; /* Navbar yüksekliği */
    left: 0;
    width: 100%;
    background-color: #1A2A3A;
    padding: 10px 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    z-index: 1000;
}

.mobile-nav-menu.active {
    display: flex;
}

.mobile-nav-menu a {
    color: #FFFFFF;
    padding: 15px 20px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.mobile-nav-menu a:hover {
    background-color: #E9C46A;
    color: #1A2A3A;
}


@media (max-width: 992px) {
    .navbar {
        display: flex;
        justify-content: center; /* Center the logo */
        align-items: center;
        position: relative; /* Needed for absolute positioning of children */
    }

    .nav-links-left,
    .nav-links-right {
        display: none;
    }

    .logo {
        order: 0;
    }
    
    .logo img {
        height: 80px; /* Mobil için logo boyutu */
    }

    .hamburger-menu {
        display: block;
        position: absolute; /* Take it out of the flex flow */
        right: 5px; /* Position it on the right */
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    /* HERO SECTION */
    .swiper-container {
        height: auto;
    }

    .hero-container {
        flex-direction: column;
        height: auto;
        min-height: 550px; /* Slightly increase min-height for more content flexibility */
        padding: 40px 20px;
        text-align: center;
        justify-content: space-around; /* Distribute space vertically */
        align-items: center; /* Center items horizontally */
    }

    .hero-text {
        flex: 1; /* Allow text to grow */
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center text content vertically */
        align-items: center; /* Center text content horizontally */
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-image {
        flex: none; /* Don't let it grow, set fixed height */
        height: 250px; /* Set a fixed height for images on mobile */
        margin-top: 30px;
        width: 100%;
        max-width: 400px;
        order: -1;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Swiper navigation buttons can be hidden on mobile for a cleaner look */
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    /* WHY US SECTION */
    .why-us-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .feature-card {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
        padding: 20px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        display: none;
    }

    /* PARTNERS & SUPPLIERS SECTION */
    #partners-suppliers {
        padding: 60px 0; /* Reduce vertical padding */
    }

    .logos-container {
        gap: 30px; /* Reduce gap between logos */
    }

    .logo-item {
        flex: 0 0 100px; /* Reduce the size of the logo items */
    }



    /* CTA SECTION */
    #cta {
        padding: 60px 20px;
    }
    .cta-content h2 {
        font-size: 2rem;
    }

    /* BLOG HIGHLIGHTS SECTION */
    #blog-highlights .blog-card { /* More specific selector */
        max-width: 400px; /* Allow cards to be a bit wider on mobile */
        flex-basis: 100%;
    }

    /* CONTACT SECTION */
    .contact-layout {
        grid-template-columns: 1fr; /* Stack map and info vertically */
    }

    /* FAQ SECTION */
    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .faq-answer-content p {
        font-size: 0.95rem;
    }

    /* FOOTER SECTION */
    .footer-grid {
        text-align: center;
    }
    .footer-col h4::after {
        /* Center the underline for the heading */
        left: 50%;
        transform: translateX(-50%);
    }

    /* HIZMETLER SAYFASI */
    .service-item,
    .service-item.service-item--reversed {
        flex-direction: column; /* Stack image and text */
        gap: 20px;
        padding: 20px;
    }

    .service-item-image {
        max-width: 100%; /* Allow image to take full width */
    }

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

    .service-item-text h3 {
        font-size: 1.8rem;
    }

    /* BLOG LISTELEME SAYFASI */
    .blog-layout {
        grid-template-columns: 1fr; /* Single column layout on mobile */
        gap: 30px;
    }

    .blog-card-title {
        font-size: 1.5rem;
    }

    /* TEKİL BLOG YAZISI SAYFASI */
    .blog-post-full h1 {
        font-size: 2rem;
    }

    .blog-post-content {
        font-size: 1rem;
    }
}

/* Featured Services Slider */
.services-slider {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 50px; /* Space for pagination */
}

.services-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Make cards stretch to fill height */
}

.services-slider .service-card {
    width: 100%;
    max-width: 280px;
    min-height: 350px; /* Set a minimum height for consistency */
    display: flex; /* Make card a flex container */
    flex-direction: column; /* Stack content vertically */
    justify-content: space-between; /* Distribute space between content */
}

/* Make sure pagination is visible and styled */
.services-slider .swiper-pagination-bullet-active {
    background: #1A2A3A; /* Match site theme */
}