/* 1. GENEL AYARLAR */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-light: #f1fafa;      
    --navy-blue: #243b5e;     
    --hover-blue: #49bce3;    
    --text-gray: #4a4a4a;     
}

/* 2. HEADER ve NAVBAR */
.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;
}

.logo img {
    height: 70px;
    display: block;
}

.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,
.main-nav ul li a.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.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);
}

/* 3. DİL SEÇİMİ */
.lang-wrapper {
    position: relative;
    cursor: pointer;
    padding: 10px 0;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-gray);
}

.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);
}

/* 4. HAMBURGER MENÜ STİLİ */
.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;
}

.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);
}

/* 5. HERO SECTION */
.hero-section {
    position: relative;
    height: 450px; 
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-subheading {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #49bce3;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.95;
}

/* 6. ABOUT EXPERT SECTION */
.about-expert-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fdff 100%);
    position: relative;
    overflow: hidden;
}

.about-expert-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.about-expert-content {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text-side {
    flex: 1;
}

.about-badge span {
    display: inline-block;
    background-color: #49bce3;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-main-title {
    color: #243b5e;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-main-title .title-highlight {
    color: #49bce3;
}

.about-paragraph {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.highlight-paragraph {
    color: #243b5e;
    font-weight: 600;
    border-left: 3px solid #49bce3;
    padding-left: 20px;
}

.about-image-side {
    flex: 1;
    display: flex;
    justify-content: center;
}

.expert-image-frame {
    width: 100%;
    max-width: 500px;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(36, 59, 94, 0.15);
}

.image-container {
    width: 100%;
    height: 100%;
}

.expert-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.expert-image-frame:hover .expert-photo {
    transform: scale(1.05);
}

/* İstatistikler */
.expert-stats-container {
    background: #ffffff;
    border-radius: 25px;
    padding: 60px 40px;
    box-shadow: 0 15px 40px rgba(36, 59, 94, 0.1);
    border: 1px solid rgba(73, 188, 227, 0.2);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #243b5e;
    margin-bottom: 5px;
}

.plus-sign {
    color: #49bce3;
    font-size: 32px;
    vertical-align: super;
}

.stat-label {
    color: #49bce3;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

/* 7. SELECTION (NEDEN BİZ) SECTION */
.selection-section {
    padding: 100px 0;
    background-color: #f6fcfe;
}

.selection-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

.selection-header { flex: 1; }
.badge { color: #00bcd4; font-weight: 700; font-size: 14px; letter-spacing: 2px; }
.main-title { color: #243b5e; font-size: 38px; font-weight: 800; margin-top: 10px; }

.selection-cards {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.card-item {
    background: #ffffff;
    border: 1px solid #e1eff2;
    border-radius: 25px;
    padding: 40px 20px;
    width: 200px;
    text-align: center;
    transition: transform 0.3s ease;
}

.card-item:hover { transform: translateY(-10px); }

.icon-wrapper {
    background-color: #b2ebf2;
    color: #00acc1;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.icon-wrapper svg { width: 32px; height: 32px; }
.card-item p { color: #243b5e; font-weight: 600; font-size: 15px; }

/* 8. FAQ (SSS) 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; padding: 0 20px; }

.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-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;
}

/* 9. FOOTER */
.byd-footer {
    background-color: #b7ecea !important;
    padding: 80px 0 25px 0;
    width: 100%;
}

.byd-container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

.byd-footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    gap: 40px;
    flex-wrap: wrap;
}

.byd-footer-col {
    flex: 1;
    min-width: 250px; 
}

/* Logo ve Hakkında */
.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;
}

/* Sosyal Medya */
.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; }

/* Linkler */
.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; }

/* İletişim */
.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; }

/* Alt Çizgi */
.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; }

/* 10. STICKY WHATSAPP */
.sticky-whatsapp {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background-color: #25d366; 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; }

/* ========================================= */
/* MOBILE RESPONSIVE AYARLARI                */
/* ========================================= */

@media (max-width: 1024px) {
    /* Header Ayarları */
    .site-header { padding: 0 15px; }
    .desktop-only { display: none !important; }
    .mobile-btn { display: flex; }

    /* Navigasyon Açılır/Kapanır */
    .main-nav {
        display: block; position: absolute; top: 100px; left: 0; width: 100%;
        background-color: #ffffff; padding: 0; max-height: 0; 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; z-index: 999;
    }
    .main-nav.nav-open { max-height: 400px; 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; border-bottom: 1px solid #f1f1f1; width: 100%; }
    .main-nav ul li a::after { display: none; }

    /* Hero */
    .hero-title { font-size: 36px; }

    /* About Expert Bölümü */
    .about-expert-content { flex-direction: column; text-align: center; }
    .about-text-side { padding-right: 0; margin-bottom: 30px; }
    .highlight-paragraph { border-left: none; border-top: 3px solid #49bce3; padding-left: 0; padding-top: 15px; }
    .about-image-side { width: 100%; }
    .expert-image-frame { max-width: 100%; height: 400px; }

    /* İstatistikler Mobilde 2'li Sıra */
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .stat-item::after { display: none; }

    /* Selection Bölümü Mobilde Tek Kolon */
    .selection-flex { flex-direction: column; text-align: center; }
    .selection-cards { justify-content: center; flex-wrap: wrap; width: 100%; }
    .card-item { width: 45%; max-width: none; }

    /* Footer - Mobilde Tam Ortala */
    .byd-footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .byd-footer-col {
        width: 100%;
        margin-bottom: 40px;
    }
    .byd-footer-about, .byd-social-links, .byd-contact-item {
        justify-content: center;
        margin: 0 auto 15px auto;
    }
    .byd-footer-bottom { text-align: center; }
}

@media (max-width: 576px) {
    .site-header { height: 80px; }
    .main-nav { top: 80px; }
    .logo img { height: 50px; }
    
    .hero-title { font-size: 28px; }
    .hero-section { height: 400px; }
    
    .about-main-title { font-size: 32px; }
    .expert-image-frame { height: 350px; }
    
    .stats-row { grid-template-columns: 1fr; gap: 30px; }
    .card-item { width: 100%; }
    
    .sticky-whatsapp { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 28px; }
}