/* ==========================================
   WEBGRAFIK 35 - ÖZEL GOLD SARI & KURUMSAL CSS
   ================================---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    background-color: #fff;
    color: #212529;
    padding-top: 74px;
}

/* 1. ORTAK HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.brand-logo img {
    height: 38px;
    display: block;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: #212529;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #ecc911;
}

/* HAMBURGER MENÜ BUTONU (Masaüstünde Gizli, Büyük İkon) */
.mobile-menu-toggle {
    display: none;
    font-size: 32px !important;
    background: none;
    border: none;
    cursor: pointer;
    color: #20202a;
    padding: 5px;
}

/* TÜM BUTONLAR İÇİN ORTAK GOLD GRADYAN */
.btn-gradient-yellow {
    display: inline-block;
    background: linear-gradient(135deg, #ffe11b, #f5af19) !important;
    color: #111 !important;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(245, 175, 25, 0.4);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-gradient-yellow:hover {
    box-shadow: 0 6px 20px rgba(245, 175, 25, 0.6);
    transform: translateY(-2px);
}

/* 2. HERO (MANŞET) ALANI & SÜZÜLEN KARTLAR */
.hero-section {
    padding: 60px 50px 80px 50px;
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 520px;
    position: relative;
}

.hero-left {
    flex: 1.1;
}

.hero-left h1 {
    font-size: 50px;
    font-weight: 800;
    color: #20202a;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-left h1 span {
    background: linear-gradient(135deg, #ffe11b, #ecc911);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-left p {
    font-size: 16px;
    color: #48525c;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-right {
    flex: 1.3;
    position: relative;
    height: 480px;
}

.floating-cards-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
    overflow: hidden;
    border: 1px solid #ffe11b;
    animation: levitate 5s ease-in-out infinite alternate;
}

.floating-card span {
    background: linear-gradient(135deg, #ffe11b, #f5af19);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    display: block;
    text-align: center;
    padding: 5px;
}

.floating-card img {
    display: block;
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.card-1 { width: 240px; top: 20px; left: 10px; animation-delay: 0s; z-index: 2; transform: rotate(-3deg); }
.card-2 { width: 200px; top: 0px; right: 20px; animation-delay: -1.5s; z-index: 1; transform: rotate(4deg); }
.card-3 { width: 260px; bottom: 30px; left: 120px; animation-delay: -3s; z-index: 4; transform: rotate(-1deg); }
.card-4 { width: 210px; bottom: 10px; right: 10px; animation-delay: -2s; z-index: 3; transform: rotate(2deg); }

@keyframes levitate {
    0% { transform: translateY(0px) rotate(var(--rot, 0deg)); }
    50% { transform: translateY(-15px) rotate(var(--rot, 0deg)); }
    100% { transform: translateY(0px) rotate(var(--rot, 0deg)); }
}

/* 3. SEKMELİ (TAB) İÇERİK ALANI */
.tabs-section {
    padding: 80px 50px;
    max-width: 1320px;
    margin: 0 auto;
}

.tabs-header {
    display: flex;
    border: 1px solid #ffe11b;
    border-bottom: 0;
    background: #fffdf0;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
}

.tab-menu-item {
    flex: 1;
    padding: 18px 20px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border-right: 1px solid #ffe11b;
    background: #fffdf0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s, color 0.3s;
}

.tab-menu-item:last-child { border-right: none; }
.tab-menu-item.active { background: #fff; border-bottom: 2px solid #ecc911; color: #000; }

.tab-body-container {
    border: 1px solid #ffe11b;
    border-top: 0;
    background: #fff;
    padding: 40px;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.tab-pane {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.tab-pane.active-pane { display: flex; }

.tab-pane-left { flex: 1.2; }
.tab-pane-left h2 { font-size: 2rem; font-weight: 800; color: #20202a; margin-bottom: 15px; line-height: 1.2; }
.tab-pane-left h3 { font-size: 1.25rem; font-weight: 700; color: #ecc911; margin-bottom: 10px; }
.tab-pane-left p { color: #48525c; line-height: 1.6; margin-bottom: 20px; font-size: 15px; }

.tab-pane-right { flex: 1; text-align: center; }
.tab-pane-right img { max-width: 100%; border-radius: 4px; border: 1px solid #eaeaea; }

/* 4. HİZMETLER & PAKETLER BÖLÜMÜ (4'lü Sütun) */

.services-pricing-section {
    padding: 80px 50px;
    max-width: 1320px;
    margin: 0 auto;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #20202a;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.price-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #ffe11b;
    overflow: hidden;
    transition: transform 0.3s;
}

.price-card:hover { transform: translateY(-8px); }

.price-header {
    background: linear-gradient(135deg, #ffe11b, #f5af19);
    color: #111;
    padding: 25px 15px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
}

.price-body {
    padding: 25px 20px;
    text-align: center;
}

.price-amount {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
    display: block;
}

.price-amount span { font-size: 13px; font-weight: 400; color: #555; }
.price-body p { font-size: 13.5px; color: #666; line-height: 1.6; }

/* 5. İLKER HOCA & AJANS TANITIM BÖLÜMÜ */
.about-section {
    padding: 80px 50px;
    background-color: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.about-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text { flex: 1.3; }
.about-text h2 { font-size: 32px; font-weight: 800; color: #20202a; margin-bottom: 20px; line-height: 1.2; }
.about-text p { font-size: 15px; color: #48525c; line-height: 1.8; margin-bottom: 15px; }

.about-features {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-box {
    background: #fffdf0;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border-left: 4px solid #ffe11b;
}

.feature-box h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: #111; }
.feature-box p { font-size: 13.5px; color: #666; line-height: 1.5; margin: 0; }

/* 6. SIKÇA SORULAN SORULAR (AKORDEON) */
.faq-section {
    padding: 80px 50px;
    max-width: 1320px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq-item {
    background: #fffdf0;
    border: 1px solid #ffe11b;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 15px 20px;
    font-size: 14px;
    color: #48525c;
    line-height: 1.6;
    display: none;
    border-top: 1px solid #ffe11b;
    background: #fff;
}

.faq-item.open .faq-answer { display: block; }

/* 7. ORTAK FOOTER */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a, #111);
    color: #fff;
    padding: 80px 50px 30px 50px;
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; color: #ffe11b; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #ccc; text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-col ul li a:hover { color: #ffe11b; }

.footer-bottom {
    max-width: 1320px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #aaa;
    flex-wrap: wrap;
    gap: 15px;
}

/* 8. SAĞ ALT SABİT BUTONLAR */
.floating-action-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
}

.fab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13.5px;
    box-shadow: 4px 4px 15px rgba(0,0,0,0.18);
    transition: transform 0.3s;
}

.fab-btn:hover { transform: scale(1.05); }
.fab-whatsapp { background-color: #25D366; color: #fff; }
.fab-phone { background: linear-gradient(135deg, #ffe11b, #f5af19); color: #111; }
.fab-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }

/* KOYU SARI (GOLD) ÜST BAŞLIK SINIFI */
.section-subtitle {
    color: #f5c70e !important;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

/* ==========================================
   MOBİL UYUM & HAMBURGER MENÜ (992px altı)
   ================================---------- */
@media (max-width: 992px) {
    .header {
        padding: 0 15px !important;
        height: 65px !important;
    }

    body {
        padding-top: 65px !important;
    }

    .brand-logo img {
        height:45px !important;
    }

    /* Hamburger ikonunu mobilde göster */
    .mobile-menu-toggle {
        display: block !important;
    }

    /* Masaüstü Hemen Ara butonunu mobilde gizle */
    .desktop-call-btn {
        display: none !important;
    }

    /* Açılır mobil menü yapısı */
    .nav-links {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 25px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        border-bottom: 3px solid #ffe11b;
        gap: 15px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        padding: 8px 0;
        font-size: 16px;
        font-weight: 600;
    }

    /* Hero alanı düzenlemesi */
    .hero-section {
        flex-direction: column !important;
        padding: 40px 15px !important;
        text-align: center;
        gap: 30px;
    }

    .hero-left h1 {
        font-size: 32px !important;
    }

    .hero-right {
        height: 300px !important;
        width: 100% !important;
    }

    /* Fiyat 4'lü grid yapısını mobilde alt alta tek sütun yap ve taşmayı önle */
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .faq-grid, .about-container, .tabs-header {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
    }

    .services-pricing-section, .tabs-section, .about-section, .faq-section {
        padding: 40px 15px !important;
    }

    .about-features {
        grid-template-columns: 1fr !important;
    }

    /* Sağ alttaki sabit hızlı erişim butonlarının mobilde tam sığması */
    .floating-action-buttons {
        bottom: 12px;
        right: 10px;
        left: 10px;
        gap: 6px;
    }

    .fab-btn {
        padding: 8px 6px !important;
        font-size: 11px !important;
        letter-spacing: -0.3px;
        white-space: nowrap;
        flex: 1;
        justify-content: center;
        text-align: center;
    }

    .fab-btn i {
        font-size: 13px !important;
    }
}
/* İlker Hoca & Ajans Tanıtım Kutuları Hover Efekti */
.feature-box {
    transition: all 0.3s ease !important;
    cursor: pointer;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.25) !important;
    border-left-color: #ffaa00 !important;
    background-color: #fff !important;
}
/* Scroll Animasyonları - Güvenli Başlangıç */
.hero-left, .floating-card {
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* JS Yüklendikten Sonra Çalışacak Efekt İçin Sınıf */
.js-enabled .hero-left, 
.js-enabled .floating-card {
    opacity: 0;
    transform: translateY(40px);
}

.js-enabled .hero-left.aos-animate, 
.js-enabled .floating-card.aos-animate {
    opacity: 1;
    transform: translateY(0);
}


/* Hero Alanı Sağ Kısım ve Süzülen Kartlar Yerleşimi */
.hero-right {
    position: relative;
    width: 100%;
    min-height: 450px;
}

.floating-cards-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
}

/* 5 Kartın Birbirinin Üzerine Binmeden Süzülmesi İçin Mutlak Konumlandırma */
.floating-card {
    position: absolute;
    width: 240px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    transform: rotate(var(--rot, 0deg));
    transition: transform 0.3s ease, z-index 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-8px) rotate(0deg) scale(1.03);
    z-index: 50;
    box-shadow: 0 25px 50px rgba(255,215,0,0.3);
}

/* Her Bir Kartın Sağa Sola Dağılım Konumları */
.floating-card.card-1 {
    top: 10px;
    left: 40px;
    z-index: 1;
}

.floating-card.card-2 {
    top: 60px;
    left: 180px;
    z-index: 2;
}

.floating-card.card-3 {
    top: 240px;
    left: 110px;
    z-index: 3;
}

.floating-card.card-4 {
    top: 20px;
    right: 10px;
    z-index: 4;
}

.floating-card.card-5 {
    top: 260px;
    right: 60px;
    z-index: 5;
}
/* DEĞERLER KUTULARI GENEL GEÇİŞ VE HOVER EFEKTİ */
.value-card {
    background: #fff;
    border: 1px solid #ffe11b;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpCards 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Kartların sırayla (gecikmeli) gelmesi için her birine ayrı gecikme verebilirsin */
.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }
.value-card:nth-child(5) { animation-delay: 0.5s; }
.value-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUpCards {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* MENÜLER ÜZERİNE GELİNCE ALTINDA ÇIKAN SARI ÇİZGİ EFEKTİ */
.nav-links li a {
    position: relative;
    text-decoration: none;
    color: #212529;
    font-weight: 500;
    font-size: 14px;
    padding-bottom: 5px;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #b8960f;
}

/* Sarı Çizgi Animasyonu */
.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2.5px;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, #ffe11b, #b8960f);
    transition: width 0.3s ease-in-out;
    border-radius: 2px;
}

.nav-links li a:hover::after {
    width: 100%;
}



/* Mouse üzerine gelince (Hover) oluşacak şık hareket */
.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #f5c70e;
    box-shadow: 0 15px 35px rgba(184, 150, 15, 0.15);
    
}

.value-card:hover div:first-child {
    transform: scale(1.15) rotate(5deg);
    transition: transform 0.3s ease;
}

.value-card div:first-child {
    transition: transform 0.3s ease;
}
