/* --- GENEL AYARLAR --- */
:root {
    /* GÖRSELDEKİ RENK PALETİ EŞLEŞTİRMESİ: */
    /* primary-orange (Eski Turuncu) -> #FF6F3D (Yeni Canlı Turuncu) */
    /* primary-purple (Eski Mor)    -> #3E503C (Yeni Koyu Yeşil) */
    /* marker-yellow (Eski Sarı)    -> #7F886A (Yeni Adaçayı Yeşili) */
    /* bg-light (Eski Açık Gri)     -> #F3ECDB (Yeni Krem) */
    
    --primary-orange: #FF6F3D; 
    --primary-purple: #3E503C; 
    --marker-yellow: #7F886A; 
    --text-dark: #222;
    --text-grey: #555;
    --bg-light: #F3ECDB;
    --white: #fff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; transition: 0.3s; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- BUTON STİLLERİ --- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; border-radius: 8px; cursor: pointer; transition: 0.3s; border: none; padding: 12px 25px; }
.btn-purple-nav { background: var(--primary-purple); color: #fff; font-size: 14px; }
.btn-purple-nav:hover { background: var(--primary-orange); transform: translateY(-2px); }

/* Turuncu gradient yerine yeni turuncu rengi kullanıldı */
.btn-orange-big { background: linear-gradient(90deg, #FF6F3D 0%, #e65525 100%); color: #fff; padding: 15px 30px; font-size: 15px; box-shadow: 0 5px 15px rgba(255, 111, 61, 0.3); }
.btn-orange-big:hover { transform: translateY(-3px); }

/* Mor buton artık Koyu Yeşil */
.btn-purple-big { background: var(--primary-purple); color: #fff; padding: 15px 30px; font-size: 15px; box-shadow: 0 5px 15px rgba(62, 80, 60, 0.3); }
.btn-purple-big:hover { background: var(--marker-yellow); transform: translateY(-3px); }

.btn-text { color: var(--text-dark); font-weight: 700; font-size: 14px; border-bottom: 2px solid var(--primary-orange); display: inline-block; padding: 5px 0; border-radius: 0; }
.btn-text:hover { color: var(--primary-orange); }

.btn-whatsapp-full { background: #25D366; color: #fff; width: 100%; padding: 15px; font-size: 16px; margin-top: 10px; }
.btn-whatsapp-full:hover { background: #1ebc57; }

/* --- 1. TOP BAR --- */
/* Arka planı koyu gri yerine Koyu Yeşil (#3E503C) yaptık */
.top-bar { background: var(--primary-purple); color: #f1f1f1; font-size: 13px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.contact-info a, .contact-info span { margin-right: 20px; color: #f1f1f1; }
.contact-info i { color: var(--primary-orange); margin-right: 5px; }
.social-icons a { margin-left: 10px; color: #f1f1f1; }
.social-icons a:hover { color: var(--primary-orange); }

/* --- 2. NAVBAR --- */
.navbar { background: #fff; padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo h2 { font-size: 24px; font-weight: 800; color: var(--primary-purple); }
.logo .thin { font-weight: 300; }
.nav-links { display: flex; gap: 25px; }
.nav-links a { font-weight: 500; font-size: 15px; color: var(--primary-purple); }
.nav-links a:hover, .nav-links a.active { color: var(--primary-orange); }
.hamburger { display: none; font-size: 24px; cursor: pointer; color: var(--primary-purple); }

/* --- 3. HERO SECTION --- */
/* Arka plan geçişi Krem tonuna ayarlandı */
.hero-section { padding: 80px 0; background: linear-gradient(135deg, #fff 0%, var(--bg-light) 100%); min-height: 85vh; display: flex; align-items: center; }
.hero-wrapper { display: flex; align-items: center; gap: 50px; }
.hero-content { flex: 1; }
.hero-content h4 { color: var(--marker-yellow); letter-spacing: 1px; font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.hero-content h1 { font-size: 56px; line-height: 1.1; margin-bottom: 20px; font-weight: 800; color: var(--primary-purple); }
.text-orange { color: var(--primary-orange); }
/* Highlight rengi Krem olarak güncellendi */
.yellow-highlight { background: linear-gradient(180deg, transparent 65%, var(--bg-light) 65%); display: inline-block; padding: 0 5px; }
.hero-desc { font-size: 16px; color: var(--text-grey); margin-bottom: 30px; max-width: 90%; }
.hero-buttons { display: flex; gap: 15px; }
.hero-image { flex: 1; position: relative; }
.brush-mask { width: 100%; clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%); }

/* --- 4. PARTNERS (REFERANS) --- */
.partners-bar { padding: 40px 0; border-bottom: 1px solid #eee; background: #fff; }
.partners-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; color: #ccc; font-weight: 800; font-size: 22px; text-transform: uppercase; }

/* --- 5. ABOUT SECTION --- */
.about-section { padding: 80px 0; background: #fff; }
.about-wrapper { display: flex; align-items: center; gap: 60px; }
.about-text { flex: 1; }
.sub-title { color: var(--marker-yellow); font-weight: 700; display: block; margin-bottom: 10px; }
.about-text h2 { font-size: 36px; margin-bottom: 20px; line-height: 1.3; font-weight: 800; color: var(--primary-purple); }
.about-text p { margin-bottom: 20px; color: var(--text-grey); }
.about-image-col { flex: 1; }
.about-image-col img { border-radius: 10px; box-shadow: 20px 20px 0 var(--bg-light); }

/* --- 6. SERVICES GRID --- */
.services-section { padding: 80px 0; background: var(--bg-light); text-align: center; }
.section-header { max-width: 700px; margin: 0 auto 50px; }
.section-header h2 { font-size: 36px; margin-bottom: 15px; font-weight: 800; color: var(--primary-purple); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.service-card { background: #fff; padding: 40px 30px; border-radius: 10px; transition: 0.3s; border: 1px solid #eee; text-align: left; }
.service-card:hover { transform: translateY(-5px); border-color: var(--primary-orange); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.service-card i { font-size: 32px; color: var(--primary-orange); margin-bottom: 20px; }
.service-card h3 { font-size: 18px; margin-bottom: 10px; font-weight: 700; color: var(--primary-purple); }
.service-card p { font-size: 14px; color: var(--text-grey); }

/* --- 7. OFFER SECTION (FORM + TEXT) --- */
.offer-section { padding: 80px 0; background: #fff; }
.offer-wrapper { display: flex; gap: 50px; }
/* Siyah form arka planı Koyu Yeşil oldu */
.offer-text { flex: 1; background: var(--primary-purple); padding: 40px; border-radius: 10px; color: #fff; }
.offer-text h2 { font-size: 28px; margin-bottom: 10px; color: var(--white); }
.offer-text p { margin-bottom: 20px; color: #ddd; }
.contact-form .form-row { display: flex; gap: 15px; margin-bottom: 15px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px; border: none; border-radius: 5px; font-family: inherit; }
.full-width { width: 100%; }
.offer-info { flex: 1; padding-top: 20px; }
.offer-info h3 { font-size: 24px; margin-bottom: 15px; font-weight: 700; color: var(--primary-purple); }
.offer-info p { margin-bottom: 20px; color: var(--text-grey); font-size: 15px; }
.offer-info h4 { font-size: 18px; margin-bottom: 10px; font-weight: 700; color: var(--marker-yellow); }
.read-more { font-weight: 700; color: var(--primary-orange); }

/* --- 8. BLOG SECTION --- */
.blog-section { padding: 80px 0; background: var(--bg-light); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.blog-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.blog-img img { width: 100%; height: 200px; object-fit: cover; }
.blog-content { padding: 20px; }
.blog-content h4 { font-size: 18px; margin-bottom: 10px; font-weight: 700; color: var(--text-dark); }
.blog-content p { font-size: 14px; color: var(--text-grey); margin-bottom: 15px; }
.blog-content a { font-size: 13px; font-weight: 700; color: var(--primary-purple); }

/* --- 9. BOTTOM CTA --- */
.bottom-cta { background: var(--primary-purple); color: #fff; padding: 60px 0; text-align: center; }
.bottom-cta h2 { font-size: 32px; margin-bottom: 10px; }
.bottom-cta p { margin-bottom: 30px; font-size: 18px; opacity: 0.9; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; }
.btn-white { background: #fff; color: var(--primary-purple); padding: 15px 30px; border-radius: 5px; font-weight: 700; }
.btn-outline-white { border: 2px solid #fff; color: #fff; padding: 15px 30px; border-radius: 5px; font-weight: 700; }
.btn-outline-white:hover { background: #fff; color: var(--primary-purple); }

/* --- 10. FOOTER --- */
/* Siyah footer Koyu Yeşil oldu */
.main-footer { background: var(--primary-purple); color: #ddd; padding: 80px 0 20px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 50px; margin-bottom: 50px; }
.footer-col h3 { color: #fff; font-size: 16px; margin-bottom: 15px; border-bottom: 2px solid var(--primary-orange); display: inline-block; padding-bottom: 5px; }
.footer-bottom-links .footer-row { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 30px; }
.f-brand h2 { color: #fff; font-size: 24px; }
.f-links ul li { margin-bottom: 5px; }
.f-links a { color: #ddd; }
.f-links a:hover { color: #fff; }
.btn-footer-outline { border: 1px solid rgba(255,255,255,0.3); padding: 10px 20px; color: #fff; border-radius: 5px; margin-right: 10px; font-size: 12px; }
.btn-footer-outline:hover { background: #fff; color: var(--primary-purple); }
.copyright { text-align: center; margin-top: 50px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; color: rgba(255,255,255,0.6); font-size: 12px; }

/* --- WHATSAPP FLOAT --- */
.whatsapp-float { position: fixed; bottom: 20px; left: 20px; width: 50px; height: 50px; background: #25D366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; z-index: 999; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }

/* --- DROPDOWN (AÇILIR MENÜ) STİLLERİ --- */

.dropdown {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: -15px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-top: 3px solid var(--primary-orange);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1100;
    border-radius: 0 0 5px 5px;
    max-height: 400px;
    overflow-y: auto;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #e65525;
}

.dropdown-menu li {
    display: block;
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: #444;
    border-bottom: 1px solid #f4f4f4;
    font-weight: 500;
    transition: 0.2s;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: var(--bg-light); /* Hover rengi Krem oldu */
    color: var(--primary-orange);
    padding-left: 25px;
}

@media (max-width: 900px) {
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-top: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: #f9f9f9;
        padding-left: 20px;
        max-height: none;
        overflow-y: visible;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .hero-wrapper, .about-wrapper, .offer-wrapper { flex-direction: column; }
    .hero-content h1 { font-size: 40px; }
    .partners-grid { justify-content: center; font-size: 18px; }
    .footer-bottom-links .footer-row { flex-direction: column; }
    .top-bar { display: none; }
    .hamburger { display: block; }
}

/* --- HAKKIMIZDA SAYFASI ÖZEL STİLLERİ --- */

.section-padding {
    padding: 80px 0;
}

.about-intro {
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
}

.about-intro-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-intro-image {
    flex: 1;
    position: relative;
}

.about-intro-image img {
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--primary-purple);
}

.about-intro-text {
    flex: 1;
}

.about-intro-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 800;
    color: var(--primary-purple);
}

.about-intro-text p {
    margin-bottom: 20px;
    color: var(--text-grey);
    line-height: 1.8;
}

.about-main-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-main-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-purple);
}

.about-main-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-main-text {
    flex: 1;
}

.about-main-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 800;
    color: var(--primary-purple);
}

.about-main-text p {
    margin-bottom: 30px;
    color: var(--text-grey);
    line-height: 1.8;
}

.about-main-image {
    flex: 1;
}

.about-main-image img {
    border-radius: 20px;
    box-shadow: -20px 20px 0 var(--bg-light);
}

.bottom-cta-section {
    background: #fff;
}

.bottom-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: var(--bg-light);
    padding: 60px;
    border-radius: 20px;
}

.bottom-cta-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--text-dark);
}

.bottom-cta-text p {
    margin-bottom: 30px;
    color: var(--text-grey);
    font-size: 18px;
}

.bottom-cta-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.bottom-cta-image img {
    border-radius: 10px;
    max-width: 100%;
}

.btn-whatsapp-big {
    background: #25D366;
    color: #fff;
    padding: 15px 30px;
    font-size: 15px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-big:hover {
    background: #1ebc57;
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .about-intro-wrapper,
    .about-main-content,
    .bottom-cta-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-intro-image img,
    .about-main-image img {
        box-shadow: none;
        margin-bottom: 30px;
    }

    .bottom-cta-image {
        display: none;
    }
}

/* --- ÇALIŞMALARIMIZ SAYFASI ÖZEL STİLLERİ --- */

.work-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
    display: flex;
    align-items: center;
}

.work-hero-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.work-hero-text {
    flex: 1;
}

.page-tag {
    display: inline-block;
    background: var(--bg-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.work-hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary-purple);
}

.work-hero-text p {
    font-size: 16px;
    color: var(--text-grey);
    margin-bottom: 30px;
    line-height: 1.6;
}

.work-hero-image {
    flex: 1;
}

.work-hero-image img {
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--primary-purple); 
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 12px 25px;
    font-size: 14px;
    color: var(--text-grey);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-orange);
    color: #fff;
    border-color: var(--primary-orange);
    box-shadow: 0 5px 15px rgba(255, 111, 61, 0.2);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 250px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(62, 80, 60, 0.85); /* Yeşil opak */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.overlay-content span {
    color: var(--primary-orange);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

@media (max-width: 900px) {
    .work-hero-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .work-hero-image img {
        margin-top: 30px;
        box-shadow: none;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* --- REFERANSLAR SAYFASI ÖZEL STİLLERİ --- */

.references-header {
    margin-bottom: 50px;
}

.references-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.references-header p {
    color: var(--text-grey);
    font-size: 16px;
}

.references-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
}

.ref-item {
    background: #fff;
    border: 1px solid #eee;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.ref-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: var(--primary-orange);
}

.ref-item span {
    font-weight: 700;
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
}

.ref-item:hover span {
    color: var(--primary-orange);
}

@media (max-width: 768px) {
    .references-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* --- HAKKIMIZDA GÜNCELLEMELERİ --- */

.dark-services-section {
    background-color: #2b382a; /* Çok koyu yeşil */
    padding: 80px 0;
}

.dark-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.dark-card {
    background-color: var(--primary-purple); /* Aslında Koyu Yeşil */
    padding: 40px;
    border-radius: 10px;
    color: #fff;
    transition: transform 0.3s ease;
    border-left: 5px solid var(--primary-orange);
}

.dark-card:hover {
    transform: translateY(-5px);
    background-color: #4a5e48;
}

.dark-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.dark-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .dark-services-grid {
        grid-template-columns: 1fr;
    }
}

/* --- BLOG SAYFASI STİLLERİ --- */

.blog-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.blog-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-thumb {
    overflow: hidden;
    height: 240px;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-item:hover .blog-thumb img {
    transform: scale(1.1);
}

.blog-details {
    padding: 25px;
}

.blog-details h3 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 700;
}

.blog-details h3 a {
    color: var(--text-dark);
}

.blog-details h3 a:hover {
    color: var(--primary-orange);
}

.blog-details p {
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-purple);
    display: inline-flex;
    align-items: center;
}

.read-more-btn:hover {
    color: var(--primary-orange);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #555;
    font-weight: 600;
    transition: all 0.3s;
}

.page-numbers.current, .page-numbers:hover {
    background: var(--primary-purple);
    color: #fff;
    border-color: var(--primary-purple);
}

.page-numbers.next {
    width: auto;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .blog-grid-large {
        grid-template-columns: 1fr;
    }
}

/* --- İLETİŞİM SAYFASI ÖZEL STİLLERİ --- */

.contact-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.contact-box:last-child {
    border-bottom: none;
}

.contact-box .icon {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-box .details h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-box .details p {
    color: var(--text-grey);
    font-size: 15px;
    margin-bottom: 5px;
}

.contact-box .details a {
    color: var(--text-grey);
}

.contact-box .details a:hover {
    color: var(--primary-orange);
}

.contact-form-area {
    flex: 1;
    min-width: 300px;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.contact-form-area h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-form-area p {
    color: var(--text-grey);
    margin-bottom: 30px;
}

.main-contact-form .form-group {
    margin-bottom: 20px;
}

.main-contact-form input,
.main-contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: 0.3s;
}

.main-contact-form input:focus,
.main-contact-form textarea:focus {
    border-color: var(--primary-orange);
    outline: none;
}

.map-section {
    margin-top: 0;
    margin-bottom: -10px;
    filter: grayscale(20%);
}

@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
    }
}

/* --- İLETİŞİM SAYFASI YENİ TASARIM --- */

.contact-header-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, var(--bg-light) 100%);
    border-bottom: 1px solid #eee;
}

.contact-header-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.contact-header-text {
    flex: 1;
}

.page-tag-yellow {
    background-color: var(--bg-light); 
    color: var(--primary-purple);
    border: 1px solid var(--primary-purple);
    padding: 5px 15px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    border-radius: 5px;
    margin-bottom: 20px;
    transform: rotate(-2deg);
}

.contact-header-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-header-text p {
    font-size: 16px;
    color: var(--text-grey);
    margin-bottom: 30px;
    line-height: 1.6;
    border-left: 4px solid var(--primary-orange);
    padding-left: 20px;
}

.contact-header-image {
    flex: 1;
}

.contact-header-image img {
    border-radius: 15px;
    box-shadow: 20px 20px 0 var(--bg-light);
}

.contact-boxes-section {
    padding: 60px 0;
}

.boxes-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-box {
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-box .icon {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.info-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Kutu Renkleri - Yeni Palette Uygun */
.purple-bg { background-color: #f0f4f0; } /* Açık Yeşilimsi */
.green-bg { background-color: var(--bg-light); }
.blue-bg { background-color: #fff8f5; } /* Açık Turuncumsu */

.contact-form-section {
    background: #f9fafc;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-header p {
    margin-bottom: 30px;
    color: var(--text-grey);
}

.w-100 {
    width: 100%;
}

@media (max-width: 900px) {
    .contact-header-wrapper {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }
    
    .contact-header-text p {
        border-left: none;
        padding-left: 0;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

/* --- TEKLİF AL SAYFASI ÖZEL STİLLERİ --- */

.offer-page-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.offer-form-container {
    flex: 2;
    background: var(--primary-purple); /* Koyu Yeşil */
    padding: 40px;
    border-radius: 10px;
    color: #fff;
}

.offer-form-container h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
}

.offer-form-container p {
    color: #bbb;
    margin-bottom: 30px;
}

.big-offer-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.big-offer-form .input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.big-offer-form label {
    font-size: 14px;
    color: #ddd;
    font-weight: 500;
}

.big-offer-form input, 
.big-offer-form textarea {
    padding: 12px;
    border-radius: 5px;
    border: none;
    background: #fff;
    font-family: inherit;
    color: #333;
}

.big-offer-form input:focus, 
.big-offer-form textarea:focus {
    outline: 2px solid var(--primary-orange);
}

.offer-contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item .icon-box {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.info-item .text-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.info-item .text-box p, 
.info-item .text-box a {
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.5;
}

.info-item .text-box a:hover {
    color: var(--primary-orange);
}

@media (max-width: 900px) {
    .offer-page-wrapper {
        flex-direction: column;
    }
    
    .big-offer-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.big-offer-form input::placeholder,
.big-offer-form textarea::placeholder {
    color: #666;
    font-size: 14px;
    opacity: 1; 
    font-weight: 500;
}

.big-offer-form input:focus::placeholder,
.big-offer-form textarea:focus::placeholder {
    color: #ccc;
}

/* --- HİZMET DETAY (KURUMSAL) SAYFASI STİLLERİ --- */

.service-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-text {
    flex: 1;
}

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 20px;
    box-shadow: 20px 20px 0 #eee;
}

.content-block h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-block p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

.features-bar {
    background: var(--primary-purple); /* Koyu Yeşil */
    padding: 60px 0;
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-box i {
    font-size: 40px;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: #ccc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-purple);
}

.faq-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .service-wrapper {
        flex-direction: column;
    }
    .service-image img {
        box-shadow: none;
        margin-top: 20px;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* --- YATAY TEKLİF FORMU STİLLERİ --- */
.horizontal-offer-section {
    background: #fff;
    padding: 0 0 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.offer-strip {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 40px;
    text-align: center;
    border: 1px solid #eee;
}

.strip-header h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.strip-header p {
    color: #666;
    margin-bottom: 30px;
}

.strip-form {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.strip-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 50px;
    background: #f9fafc;
    font-size: 14px;
}

.strip-form input:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: #fff;
}

.btn-purple-full {
    background-color: var(--primary-purple);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    min-width: 200px;
}

.btn-purple-full:hover {
    background-color: var(--marker-yellow); /* Hoverda Adaçayı */
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.check-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-purple);
    font-size: 18px;
}

@media (max-width: 768px) {
    .horizontal-offer-section {
        margin-top: 0;
        padding-top: 40px;
    }
    .strip-form {
        flex-direction: column;
    }
    .strip-form input, 
    .btn-purple-full {
        width: 100%;
    }
}

/* --- SEO ANALİZ SAYFASI STİLLERİ --- */

.seo-analysis-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.analysis-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.analysis-text {
    flex: 1;
}

.highlight-text {
    font-size: 16px;
    color: var(--text-grey);
    margin: 20px 0;
    line-height: 1.6;
    border-left: 4px solid var(--primary-orange);
    padding-left: 15px;
}

.seo-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.seo-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 15px;
}

.seo-list li i {
    position: absolute;
    left: 0;
    top: 6px;
    font-size: 8px;
    color: var(--primary-purple);
}

.analysis-form-card {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.analysis-form-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.analysis-form-card p {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 14px;
}

.seo-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.seo-form input,
.seo-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
    font-size: 14px;
    font-family: inherit;
}

.seo-form input:focus,
.seo-form textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: #fff;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #666;
}

.checkbox-row input {
    width: auto;
    margin-top: 3px;
}

.faq-layout {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.faq-text-col {
    flex: 1;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.faq-accordion {
    flex: 1;
}

.accordion-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.open {
    max-height: 200px;
}

.accordion-content p {
    padding-bottom: 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .analysis-wrapper,
    .faq-layout {
        flex-direction: column;
    }
    
    .seo-form .form-row {
        flex-direction: column;
    }
}

/* --- SEO2 SAYFASI ÖZEL TASARIM --- */

.split-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-image {
    flex: 1;
}

.split-image .image-box img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0 #f0f0f0;
}

.split-content {
    flex: 1;
}

.page-tag-orange {
    background-color: var(--primary-orange);
    color: #fff;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 15px;
}

.split-content h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.split-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.split-content-left {
    flex: 1;
    position: relative;
    padding-right: 20px;
}

.split-content-left h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.orange-line {
    width: 5px;
    height: 100px;
    background-color: var(--primary-orange);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
    display: none;
}

@media (min-width: 900px) {
    .orange-line { display: block; }
}

.split-accordion-right {
    flex: 1;
}

.section-title-small h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
}

.highlight-yellow {
    background-color: var(--bg-light); 
    color: var(--primary-purple);
    padding: 0 5px;
    border-radius: 3px;
}

.accordion-item {
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background: #f9f9f9;
    border: none;
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #f0f0f0;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
    background: #fff;
}

.accordion-content.open {
    max-height: 300px;
    padding: 20px;
    border-top: 1px solid #eee;
}

@media (max-width: 900px) {
    .split-wrapper {
        flex-direction: column;
    }
    
    .split-content-left {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

/* --- GOOGLE ADS SAYFASI STİLLERİ --- */

.ads-hero-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.ads-hero-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.ads-hero-text {
    flex: 1;
}

.ads-form-card {
    flex: 0 0 400px;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    text-align: center;
}

.ads-form-card .form-header h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.ads-form-card .form-header p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.ads-form .form-group {
    margin-bottom: 15px;
}

.ads-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 50px;
    background: #f9f9f9;
    font-size: 14px;
}

.ads-form input:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: #fff;
}

.w-100 {
    width: 100%;
}

.light-bg {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.white-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.white-box:hover {
    transform: translateY(-5px);
}

.white-box i {
    color: var(--primary-purple);
    font-size: 36px;
    margin-bottom: 20px;
}

.white-box h4 {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.white-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .ads-hero-wrapper {
        flex-direction: column;
    }
    .ads-form-card {
        width: 100%;
        flex: none;
    }
}

.blog-post-header {
            background-color: var(--bg-cream);
            padding: 60px 0 40px;
            text-align: center;
        }
        .blog-post-header h1 {
            font-size: 38px;
            font-weight: 800;
            color: var(--primary-green);
            max-width: 900px;
            margin: 0 auto 20px;
            line-height: 1.3;
        }
        .blog-meta {
            color: var(--text-grey);
            font-size: 14px;
            margin-bottom: 30px;
        }
        .blog-meta i {
            color: var(--accent-orange);
            margin-right: 5px;
        }
        .blog-featured-image {
            width: 100%;
            height: auto;
            border-radius: 15px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        .blog-container {
            display: flex;
            gap: 50px;
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Sol Taraf: İçerik */
        .blog-content-area {
            flex: 2.5; 
        }
        .blog-content-area h2 {
            font-size: 24px;
            color: var(--primary-green);
            margin-top: 40px;
            margin-bottom: 20px;
            font-weight: 700;
            border-bottom: 2px solid var(--bg-cream);
            padding-bottom: 10px;
        }
        .blog-content-area p {
            margin-bottom: 20px;
            line-height: 1.8;
            color: #555;
            font-size: 16px;
        }
        /* Örnek ve İpucu Kutuları */
        .tip-box {
            background-color: #f0fdf4; /* Açık Yeşil */
            border-left: 5px solid #22c55e;
            padding: 20px;
            margin: 20px 0;
            border-radius: 5px;
            color: #166534;
        }
        .example-box {
            background-color: #fff7ed; /* Açık Turuncu */
            border-left: 5px solid var(--accent-orange);
            padding: 20px;
            margin: 20px 0;
            border-radius: 5px;
            color: #9a3412;
            font-style: italic;
        }
        .highlight-box {
            background-color: var(--bg-cream);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            font-weight: 500;
            text-align: center;
            border: 1px solid #ddd;
        }

        /* Sağ Taraf: Sidebar */
        .blog-sidebar {
            flex: 1;
            position: sticky;
            top: 100px;
            height: fit-content;
        }
        .sidebar-widget {
            background: #fff;
            padding: 30px;
            border: 1px solid #eee;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .sidebar-widget h4 {
            font-size: 18px;
            color: var(--primary-green);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-orange);
            display: inline-block;
        }
        .recent-posts ul {
            list-style: none;
            padding: 0;
        }
        .recent-posts li {
            margin-bottom: 15px;
            border-bottom: 1px solid #f5f5f5;
            padding-bottom: 15px;
        }
        .recent-posts li:last-child {
            border-bottom: none;
        }
        .recent-posts a {
            font-size: 14px;
            color: #444;
            font-weight: 600;
            display: block;
            margin-bottom: 5px;
        }
        .recent-posts a:hover {
            color: var(--accent-orange);
        }
        .post-date {
            font-size: 12px;
            color: #999;
        }

        /* Mobil Uyumluluk */
        @media (max-width: 900px) {
            .blog-container {
                flex-direction: column;
            }
            .blog-post-header h1 {
                font-size: 28px;
                padding: 0 20px;
            }
        }



        


/* --- MOBİL İÇİN DÜZENLEMELER (991px ve altı) --- */
@media (max-width: 991px) {

    /* 1. Teklif Butonunu Küçültme */
    .btn-purple-nav {
        font-size: 12px !important; /* Yazı boyutu küçüldü */
        padding: 8px 15px !important; /* Boşluklar azaldı */
        margin-right: 15px; /* Hamburger ile arasına mesafe */
        white-space: nowrap;
    }

    /* 2. Hamburger Menü İkonu Tasarımı */
    .hamburger {
        display: flex; /* Görünür yap */
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1001; /* Menünün üzerinde dursun */
    }

    .hamburger .bar {
        width: 100%;
        height: 3px;
        background-color: #333; /* Çizgi rengi */
        border-radius: 10px;
        transition: all 0.3s ease-in-out; /* Animasyon hızı */
    }

    /* 3. Hamburger "X" Olma Animasyonu (Active Sınıfı Gelince) */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0; /* Ortadaki çizgi kaybolsun */
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg); /* Üst çizgi dönüp aşağı insin */
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg); /* Alt çizgi dönüp yukarı çıksın */
    }

    /* 4. Açılır Menü Tasarımı ve Animasyonu */
    .nav-links {
        position: absolute;
        top: 100%; /* Navbar'ın hemen altından başla */
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        
        /* Animasyon Başlangıç Durumu (Kapalı) */
        opacity: 0;
        transform: translateY(-20px); /* Hafif yukarıda */
        visibility: hidden; /* Tıklanamaz */
        transition: all 0.3s ease-in-out;
        
        /* Flex özelliğini koru ama gizle */
        display: flex; 
    }

    /* Menü Açıkken (Active Sınıfı Gelince) */
    .nav-links.active {
        opacity: 1;
        transform: translateY(0); /* Yerine gelsin */
        visibility: visible;
    }

    .nav-links li {
        margin: 15px 0; /* Linkler arası boşluk */
    }
}