/* GENEL SIFIRLAMA VE TEMEL AYARLAR */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* 🎨 AÇIK TEMA VE FONT AYARLARI */
body {
    font-family: 'Arial', sans-serif; /* Poppins veya Montserrat gibi modern bir font kullanabilirsiniz */
    background-color: #f7f7f7; /* Açık Gri Arka Plan */
    color: #333; /* Koyu Metin Rengi */
    line-height: 1.6;
}

/* 🎨 YENİ VURGU RENKLERİ TANIMLAMASI */
:root {
    --primary-color: #ff6600; /* Turuncu Vurgu (HacklinkBakal'a yakın) */
    --secondary-color: #00aaff; /* Mavi Vurgu */
    --light-bg: #ffffff; /* Beyaz bölümler */
    --section-bg-light: #e9e9e9; /* Hafif gölgeli bölümler */
    --section-bg-dark: #f0f0f0; /* Biraz daha koyu gölgeli bölümler */
    --text-color: #333;
    --dark-text-color: #1a1a1a;
    --header-bg-dark: #2c3e50; /* KOYU HEADER ARKA PLAN */
}

/* Merkezleme ve Genişlik */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* BAŞLIK VE NAVİGASYON */
header {
    background-color: var(--header-bg-dark); /* KOYU RENK OLARAK GÜNCELLENDİ */
    border-bottom: 1px solid #1a252f;
    position: sticky; 
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Hafif gölge */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-text {
    font-size: 26px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li a {
    color: #f7f7f7; /* Açık Renk Metin */
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: all 0.3s;
    font-weight: 500;
    position: relative; /* Altı çizili efekt için */
}

/* Altı Çizili Hover Efekti */
header nav ul li a:hover {
    color: var(--secondary-color);
}
header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 5px; /* Alt çizginin konumu */
    left: 15px;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease-in-out;
}
header nav ul li a:hover::after {
    width: calc(100% - 30px); /* Padding kadar eksik çizgi genişliği */
}

/* Hamburger Menu İkonu - Mobil için */
.menu-toggle {
    display: none; /* Varsayılan olarak gizli */
    cursor: pointer;
    font-size: 28px;
    color: #fff; /* İkon rengi */
}

/* BUTONLAR (CTA) - Revize Edildi */
.cta-button {
    background-color: var(--primary-color); /* Turuncu Buton */
    color: #fff !important;  
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    text-align: center;
}

.cta-button:hover {
    background-color: #cc5200; /* Koyu Turuncu */
    transform: translateY(-2px); /* Hafif yukarı kaydırma */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.cta-header-button { /* Header'daki buton */
    background-color: var(--secondary-color);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* Sadece Masaüstünde görünmesi için eklenmiştir */
.desktop-only {
    display: block;
}

.cta-header-button:hover {
    background-color: #0088cc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* HERO SECTION */
.hero-section {
    text-align: center;
    padding: 120px 0;
    background-color: var(--light-bg);
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--dark-text-color); /* Varsayılan metin rengi */
}

.hero-section h1 strong {
    color: var(--primary-color); /* Anahtar kelimelerde turuncu vurgu */
}

.hero-section .sub-headline {
    font-size: 20px;
    margin-bottom: 40px;
    color: #555;
}

.hero-buttons {
    margin-top: 30px;
    display: flex; 
    justify-content: center;
    gap: 20px; 
    flex-wrap: wrap; 
}

.hero-buttons .secondary-cta {
    background-color: transparent; 
    border: 2px solid var(--primary-color); 
    color: var(--primary-color) !important; 
    box-shadow: none; /* Gölgeyi kaldır */
}

.hero-buttons .secondary-cta:hover {
    background-color: var(--primary-color);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.trusted-by {
    margin-top: 40px;
    font-size: 18px;
    color: #666; 
}

.trusted-by strong {
    color: var(--primary-color); 
}

/* GENEL BÖLÜM STİLLERİ */
h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-text-color);
    font-weight: 700;
}

h2 strong {
    color: var(--primary-color); /* Bölüm başlıklarında Turuncu vurgu olarak güncellendi */
}

.section-padding:nth-child(even) { /* Her çift section'a farklı arka plan */
    background-color: var(--section-bg-light); 
}
.section-padding:nth-child(odd) { /* Her tek section'a farklı arka plan */
    background-color: var(--light-bg); 
}


/* AVANTAJLAR GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 22px;
}
.feature-card p {
    color: #555;
}


/* ÇALIŞMA SÜRECİ */
.step-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}
.step-list li {
    background-color: var(--light-bg);
    padding: 20px 30px;
    margin-bottom: 15px;
    border-left: 5px solid var(--secondary-color);
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    font-size: 18px;
    color: #444;
}
.step-list li strong {
    color: var(--primary-color);
}

/* FİYATLANDIRMA GRID */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    width: 320px;
    text-align: center;
    border: 2px solid #ddd;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color); /* Hover'da çerçeve rengi değişir */
}

.pricing-card h3 {
    font-size: 26px;
    color: var(--dark-text-color);
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 36px;
    color: var(--secondary-color); /* Fiyatlarda Mavi Vurgu */
    font-weight: bold;
    margin: 15px 0 25px 0;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    color: #555;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #e0e0e0;
    font-size: 16px;
}
.features-list li:last-child {
    border-bottom: none;
}

.buy-button {
    width: 100%;
    margin-top: 15px;
    /* CTA buton stillerini zaten içeriyor */
}


/* İLETİŞİM FORMU */
.contact-section h2, .contact-section p {
    color: var(--dark-text-color);
}

.contact-form {
    max-width: 600px;
    margin: 40px auto;
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    background-color: #fff;
    color: #333;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
}

.contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
    /* CTA buton stillerini zaten içeriyor */
}

.contact-details {
    text-align: center;
    margin-top: 30px;
    font-size: 17px;
    color: #555;
}
.contact-details p {
    margin-bottom: 10px;
}
.contact-details a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}
.contact-details a:hover {
    text-decoration: underline;
}


/* FOOTER */
footer {
    background-color: #222; /* Koyu Footer */
    color: #eee;
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #333;
}

footer .footer-links {
    margin-bottom: 15px;
}

footer .footer-links a {
    color: #ccc;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s;
}
footer .footer-links a:hover {
    color: var(--primary-color);
}
.copyright {
    color: #aaa;
}

/* WhatsApp Sabit İkon Stili (Font Awesome için güncellendi) */
.whatsapp-float {
    position: fixed; /* Ekranda sabit durmasını sağlar */
    left: 20px;     /* Sol kenardan 20px boşluk */
    bottom: 20px;   /* Alt kenardan 20px boşluk */
    z-index: 1000;   /* Diğer elementlerin üzerinde görünmesini sağlar */
    width: 60px;     /* İkon kapsayıcısının genişliği */
    height: 60px;    /* İkon kapsayıcısının yüksekliği */
    background-color: #25d366; /* WhatsApp yeşili */
    color: white; /* İkonun rengi */
    border-radius: 50%; /* Yuvarlak ikon kapsayıcısı */
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Hafif gölge */
    display: flex; /* İkonu ortalamak için */
    justify-content: center;
    align-items: center;
    font-size: 35px; /* İkonun boyutu */
    transition: transform 0.3s ease, background-color 0.3s ease; /* Hover efekti için */
}

.whatsapp-float:hover {
    transform: scale(1.1); /* Hover'da hafif büyüme */
    background-color: #128c7e; /* Hover'da daha koyu yeşil */
}


/* -------------------- */
/* RESPONSIVE TASARIM   */
/* -------------------- */
@media (max-width: 768px) {
    header .container {
        flex-direction: row; /* Mobil menü için row olarak kalsın */
        justify-content: space-between;
        align-items: center;
    }
    
    .desktop-only { /* Header'daki butonu mobil cihazlarda gizler */
        display: none;
    }

    header nav {
        position: absolute;
        top: 80px; /* Header yüksekliğinden sonra başlasın */
        left: 0;
        width: 100%;
        background-color: var(--header-bg-dark); /* Aynı koyu renk */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        display: none; /* Varsayılan olarak menü gizli (JS ile açılacak) */
        padding-bottom: 10px;
    }
    header nav.active { /* JS ile açılacak menü */
        display: block;
    }

    header nav ul {
        flex-direction: column;
        width: 100%;
    }
    header nav ul li {
        text-align: center;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    header nav ul li:last-child {
        border-bottom: none;
    }
    
    header nav ul li a {
        padding: 15px 20px;
    }
    header nav ul li a::after {
        display: none; /* Mobil menüde alt çizgi kaldırıldı */
    }

    .menu-toggle {
        display: block; /* Mobil cihazlarda hamburger ikonu görünür */
    }

    .hero-section h1 {
        font-size: 36px;
    }
    .hero-section .sub-headline {
        font-size: 18px;
    }

    h2 {
        font-size: 30px;
    }
    .section-padding {
        padding: 60px 0;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .hero-buttons .cta-button {
        width: 80%; /* Mobil cihazlarda buton genişliği */
        margin: 0 auto;
    }

    .features-grid, .pricing-grid {
        grid-template-columns: 1fr; /* Mobil cihazlarda tek sütun */
    }
    .pricing-card {
        width: 90%; /* Mobil cihazlarda kart genişliği */
    }

    /* WhatsApp ikonu mobil responsive */
    .whatsapp-float {
        left: 10px;
        bottom: 10px;
        width: 50px;
        height: 50px;
        font-size: 30px; /* Mobil ikon boyutu */
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 28px;
    }
    .hero-section .sub-headline {
        font-size: 16px;
    }
    .logo-text {
        font-size: 22px;
    }
    .contact-form {
        margin: 20px auto;
        padding: 20px;
    }
}