/* 1. Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-light: #f1fafa;      /* Arka plan buz mavisi */
    --navy-blue: #243b5e;     /* Buton ana rengi */
    --hover-blue: #49bce3;    /* Hover ve alt çizgi rengi */
    --text-gray: #4a4a4a;     /* Menü yazı rengi */
}

/* 2. Header ve Container */
.site-header {
    background-color: var(--bg-light);
    height: 100px;
    display: flex;
    align-items: center;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 3. Logo Boyutu */
.logo img {
    height: 70px;
    display: block;
}

/* 4. Navigasyon */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding-bottom: 8px;
    transition: color 0.3s;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--hover-blue);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li.active a::after {
    width: 100%;
}

/* 5. Buton ve Sağ Taraf */
.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Mobilde gizlemek için sınıf */
.desktop-only {
    display: inline-block;
}

.btn-contact {
    background-color: var(--navy-blue);
    color: white;
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
}

.btn-contact:hover {
    background-color: var(--hover-blue);
}

/* 6. Dil Seçeneği ve BAYRAKLAR */
.lang-wrapper {
    position: relative;
    cursor: pointer;
    padding: 10px 0;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px; /* Bayrak ile yazı arası boşluk */
    font-weight: 500;
    color: var(--text-gray);
}

/* Bayrak İkonları İçin Stil */
.lang-flag {
    width: 24px;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.chevron {
    border: solid var(--text-gray);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2.5px;
    transform: rotate(45deg);
    transition: transform 0.3s;
    margin-left: 2px;
}

.lang-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    background: #fff;
    list-style: none;
    min-width: 100px;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1001;
}

.lang-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--text-gray);
    font-size: 14px;
}

.lang-dropdown li a:hover {
    background-color: var(--bg-light);
    color: var(--hover-blue);
}

.lang-wrapper:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    top: 40px;
}

.lang-wrapper:hover .chevron {
    transform: rotate(-135deg);
}

/* 7. HAMBURGER MENU (CSS ile Tasarım) */
.mobile-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1002;
}

.mobile-btn span {
    width: 100%;
    height: 3px;
    background: var(--navy-blue);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Hamburger Aktif Olduğunda X Yapma */
.mobile-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.mobile-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* HERO SECTION */
.hero-section {
    background-color: var(--bg-light);
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    color: var(--navy-blue);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content .highlight {
    color: var(--hover-blue);
}

.hero-content p {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 500px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.btn-hero {
    display: inline-block;
    background-color: var(--navy-blue);
    color: white;
    padding: 15px 45px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 50px;
    transition: 0.3s;
}

.btn-hero:hover {
    background-color: var(--hover-blue);
    transform: translateY(-3px);
}

.hero-contact-info {
    display: flex;
    gap: 30px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: #bbf0f0;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #008080;
    font-size: 20px;
}

.text-box {
    display: flex;
    flex-direction: column;
}

.text-box .label {
    font-size: 14px;
    color: var(--text-gray);
}

.text-box .value {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-blue);
    text-decoration: none;
}

.hero-image-area {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.image-container {
    width: 100%;
    max-width: 550px;
    height: 550px;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BYD SERVICES SECTION */
.byd-services-section {
    padding: 90px 0;
    background-color: #f1fafa !important;
    width: 100%;
}

.byd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.byd-main-header { text-align: center; margin-bottom: 60px; }
.byd-tag { color: #49bce3; font-weight: 600; font-size: 14px; text-transform: uppercase; }
.byd-title { color: #243b5e; font-size: 34px; margin-top: 10px; }

.byd-content-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.byd-single-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.byd-merged-img {
    max-width: 100%;
    height: auto;
}

.byd-info-column { flex: 1.2; }
.byd-small-tag { color: #49bce3; font-weight: 600; font-size: 13px; text-transform: uppercase; }
.byd-info-heading { color: #243b5e; font-size: 32px; margin: 15px 0; line-height: 1.3; }
.byd-info-text { color: #666; margin-bottom: 30px; font-size: 15px; }

.byd-feature-list { display: flex; flex-direction: column; gap: 20px; }
.byd-feature-item { display: flex; align-items: flex-start; gap: 15px; }

.byd-icon-sq {
    width: 50px;
    height: 50px;
    background-color: #c7f2f2;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.byd-icon-sq svg {
    width: 24px;
    height: 24px;
}

.byd-feature-text h4 { color: #243b5e; font-size: 17px; margin-bottom: 3px; }
.byd-feature-text p { color: #777; font-size: 13px; line-height: 1.5; }

.byd-btn-center { text-align: center; margin-top: 50px; }
.byd-btn-navy {
    background-color: #243b5e;
    color: white;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.byd-btn-navy:hover { background-color: #49bce3; }

/* Sayfa Genel Ayarı - Boşlukları sıfırla */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

/* Galeri Alanı */
.gallery-section {
    width: 100%;
    /* GÖRSELDEKİ ARKA PLAN RENGİ BURADA: */
    background-color: #F0F8FB; 
    padding: 40px 0 60px 0; /* Üstten ve alttan makul boşluk */
    display: block; /* Yapıyı korur */
}

/* Konteyner - Header logosu ile aynı hizada olması için */
.container-custom {
    max-width: 1200px; /* Standart genişlik */
    width: 90%; /* Mobilde kenarlardan taşmaz */
    margin: 0 auto; /* Ortalar */
}

/* Başlık Alanı */
.gallery-header {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-header h2 {
    color: #0f2b44; /* Logo laciverti */
    font-size: 2rem;
    margin-bottom: 5px;
}

.gallery-header p {
    color: #555;
    font-size: 1rem;
    margin-top: 0;
}

/* Grid Yapısı - Bozulmayı önleyen düzen */
.gallery-grid {
    display: grid;
    /* Mobilde 1, Tablette 2, Masaüstünde 3 sütun */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px; /* Kartlar arası boşluk */
}

/* Kart Tasarımı */
.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Çok hafif gölge */
    cursor: pointer;
    background: #fff; /* Resim yüklenmezse beyaz zemin */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi kutuya tam oturtur */
    transition: transform 0.4s ease;
}

/* Hover Efektleri */
.gallery-item:hover img {
    transform: scale(1.08); /* Hafif büyüme */
}

.overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 43, 68, 0.4); /* Logo renginde saydam perde */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.icon {
    font-size: 30px;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .icon {
    transform: translateY(0);
}

/* --- LIGHTBOX (MODAL) --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999; /* En üstte durması için yüksek değer */
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
    animation: zoomIn 0.3s;
}

.close-btn {
    position: absolute;
    top: 20px; right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
}

@keyframes zoomIn {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

/* ABOUT SECTION */
.byd-about-section {
    padding: 80px 0;
    background-color: #f1fafa;
}

.byd-about-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.byd-about-content { flex: 1; }
.byd-about-tag { color: #49bce3; font-weight: 600; font-size: 14px; text-transform: uppercase; }
.byd-about-title { color: #243b5e; font-size: 34px; margin: 15px 0; }
.byd-about-text { color: #666; line-height: 1.6; margin-bottom: 30px; }

.byd-about-item { display: flex; gap: 15px; margin-bottom: 20px; }
.byd-about-icon {
    width: 45px; height: 45px; background: #c7f2f2;
    border-radius: 10px; display: flex; align-items: center;
    justify-content: center; color: #008080; flex-shrink: 0;
}

.byd-about-image { flex: 1; display: flex; justify-content: center; }
.byd-image-mask {
    width: 100%; max-width: 450px; height: 400px;
    border-radius: 50px; overflow: hidden;
}
.byd-image-mask img { width: 100%; height: 100%; object-fit: cover; }

/* Counter Kutuları */
.byd-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.byd-counter-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e1f0f0;
}

.byd-number-wrap {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: #243b5e;
    font-size: 32px;
    font-weight: 700;
}

.byd-counter-box p { color: #49bce3; font-weight: 500; font-size: 14px; margin-top: 5px; }


/* METHODS SECTION */
.byd-methods-section {
    padding: 80px 0;
    background-color: #f1fafa;
    width: 100%;
}

.byd-methods-header {
    text-align: center;
    margin-bottom: 40px;
}

.byd-methods-tag {
    color: #49bce3;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.byd-methods-title {
    color: #243b5e;
    font-size: 30px;
    margin-top: 10px;
    font-weight: 700;
}

.byd-methods-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}

.byd-method-card {
    background: #ffffff;
    border: 1px solid #c7f2f2;
    border-radius: 35px;
    flex: 1;
    max-width: 260px;
    padding: 35px 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.byd-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(73, 188, 227, 0.12);
    border-color: #49bce3;
}

.byd-method-icon {
    width: 80px;
    height: 80px;
    background-color: #c7f2f2;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    overflow: hidden;
}

.byd-method-icon img {
    width: 70%;
    height: auto;
}

.byd-method-card h4 {
    color: #243b5e;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

/* FAQ SECTION */
.byd-faq-section {
    padding: 100px 0;
    background-color: #f1fafa;
}

.byd-faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.byd-faq-tag {
    color: #49bce3;
    font-weight: 600;
    font-size: 14px;
}

.byd-faq-title {
    color: #243b5e;
    font-size: 34px;
    margin-top: 10px;
}

.byd-faq-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.byd-faq-item {
    background: #fff;
    border: 1px solid #49bce3;
    margin-bottom: 15px;
    border-radius: 4px;
}

.byd-faq-question {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #49bce3;
    font-weight: 500;
    font-size: 18px;
}

.byd-faq-icon {
    font-size: 20px;
    transition: 0.3s;
}

.byd-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.byd-faq-inner {
    padding: 0 30px 25px 30px;
}

.byd-faq-inner p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

.byd-faq-item.is-open .byd-faq-answer {
    max-height: 300px;
}

.byd-faq-action {
    text-align: center;
    margin-top: 50px;
}

.byd-btn-navy-big {
    background-color: #243b5e;
    color: white;
    padding: 16px 45px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

/* TESTIMONIAL SECTION */
.byd-testimonial-section {
    padding: 100px 0;
    background-color: #f1fafa;
    text-align: center;
    overflow: hidden;
}

.byd-testi-header {
    margin-bottom: 50px;
}

.byd-testi-tag {
    color: #49bce3;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.byd-testi-title {
    color: #243b5e;
    font-size: 34px;
    margin-top: 10px;
    font-weight: 700;
}

.byd-testimonial-slider {
    padding: 20px 0 80px 0 !important;
    max-width: 100%;
}

.byd-testi-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 30px;
    border: 1px solid #c7f2f2;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    height: auto;
    transition: all 0.3s ease;
}

.byd-user-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 5px;
}

.byd-user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.byd-testi-text {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 10px;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.byd-user-name {
    color: #243b5e;
    font-size: 17px;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 5px;
}

.byd-testi-stars {
    color: #49bce3;
    font-size: 12px;
    display: flex;
    gap: 5px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d1d1d1;
    opacity: 1;
    transition: background 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #49bce3 !important;
}


/* FOOTER */
.byd-footer {
    background-color: #b7ecea !important;
    padding: 80px 0 25px 0;
    width: 100%;
}

.byd-footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.byd-footer-col {
    flex: 1;
    min-width: 280px;
}

.byd-footer-logo img {
    height: 75px;
    margin-bottom: 20px;
}

.byd-footer-about {
    color: #243b5e;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 350px;
}

.byd-social-links {
    display: flex;
    gap: 12px;
}

.byd-social-item {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.byd-social-item svg {
    width: 22px;
    height: 22px;
    fill: #49bce3;
    transition: fill 0.3s;
}

.byd-social-item:hover {
    background: #49bce3;
}

.byd-social-item:hover svg {
    fill: #ffffff;
}

.byd-footer-title {
    color: #243b5e;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

.byd-footer-links {
    list-style: none;
    padding: 0;
}

.byd-footer-links li {
    margin-bottom: 12px;
}

.byd-footer-links a {
    text-decoration: none;
    color: #243b5e;
    font-weight: 600;
    font-size: 17px;
    transition: 0.3s;
}

.byd-footer-links a:hover {
    color: #49bce3;
}

.byd-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.byd-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.c-icon {
    width: 36px;
    height: 36px;
    background: #c7f2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.c-icon svg {
    width: 18px;
    height: 18px;
    fill: #49bce3;
}

.byd-contact-item a, .byd-contact-item span {
    text-decoration: none;
    color: #49bce3;
    font-weight: 600;
    font-size: 16px;
}

.byd-footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    text-align: right;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.byd-footer-bottom a {
    color: #243b5e;
    font-size: 14px;
    text-decoration: underline;
    font-weight: 500;
}

/* STICKY WHATSAPP BUTTON */
.sticky-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366; /* Whatsapp Yeşili */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    background-color: #20b957;
}


/* ========================================= */
/* RESPONSIVE & MOBILE MENU CSS        */
/* ========================================= */

@media (max-width: 1024px) {
    
    /* Header Yan Boşluklar */
    .site-header {
        padding: 0 15px;
    }

    /* Mobilde Header'daki Contact Butonunu Gizle */
    .desktop-only {
        display: none !important; 
    }

    .mobile-btn {
        display: flex; /* Hamburgeri göster */
    }

    /* NAVİGASYON - Slide Down Animasyonlu Yapı */
    .main-nav {
        display: block; 
        position: absolute;
        top: 100px; /* Header yüksekliği */
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 0;
        max-height: 0; /* Kapalı durum */
        overflow: hidden;
        transition: max-height 0.5s ease-in-out, box-shadow 0.3s ease;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        box-shadow: none;
    }

    /* JS ile eklenecek 'nav-open' sınıfı */
    .main-nav.nav-open {
        max-height: 400px; /* Açık durum yüksekliği */
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 20px 0;
    }

    .main-nav ul li {
        width: 100%;
        text-align: center;
    }

    .main-nav ul li a {
        display: block;
        padding: 15px;
        font-size: 18px;
        border-bottom: 1px solid #f1f1f1;
        width: 100%;
    }
    
    .main-nav ul li a:hover {
        background-color: var(--bg-light);
        color: var(--navy-blue);
    }
    
    .main-nav ul li a::after {
        display: none; 
    }

    /* Tablet/Mobil Genel Düzenlemeler */
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .hero-content p {
        margin: 0 auto 35px;
    }
    .hero-contact-info {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-image-area {
        justify-content: center;
    }
    .image-container {
        max-width: 400px;
        height: 400px;
        border-radius: 40px;
    }
    
    /* Services ve About Gridleri Tek Kolona Düşür */
    .byd-content-grid, 
    .byd-about-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .byd-feature-item {
        flex-direction: column;
        align-items: center;
    }
    
    /* Methods Kartları */
    .byd-methods-flex {
        flex-wrap: wrap;
        justify-content: center;
    }
    .byd-method-card {
        flex: none;
        width: 45%;
    }
    
    /* Sayaçlar */
    .byd-counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer */
    .byd-footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .byd-footer-about, .byd-social-links, .byd-contact-item {
        justify-content: center;
        margin: 0 auto;
    }
    .byd-footer-bottom {
        text-align: center;
    }
}

@media (max-width: 576px) {
    /* Çok Küçük Ekranlar */
    .byd-method-card {
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .image-container {
        height: 350px;
    }
    
    /* Header Sıkışıklığı Önleme */
    .header-right {
        gap: 10px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .site-header {
        height: 80px;
    }
    
    .main-nav {
        top: 80px; 
    }

    .hero-contact-info {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .contact-box {
        width: 100%;
        justify-content: center;
        background: #fff;
        padding: 10px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .sticky-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}