/* GENEL BODY */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* yumuşak kaydırma */
}

/* Top Bar */
.top-bar {
    background-color: #8c7520;
    /* Arka plan rengi */
    color: #fdfaf3;
    /* Yazı rengi */
    font-size: 14px;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 45px;
    position: relative;
    /* Konumlandırma için gerekli */
    flex-wrap: wrap;
    /* Esnek düzen için */
    font-family: sans-serif;
}

/* Tarih ve saat */
#datetime {
    font-size: 14px;
    font-weight: normal;
    color: #fdfaf3;
    /* Tarih saat rengi */
}

/* Hizmetler başlığı */
.top-bar h3 {
    font-size: 18px;
    font-weight: bold;
    color: #ffd966;
    /* Sarı renk */
    margin: 0;
}

/* Telefon numarası stil */
.top-bar-phone {
    background: #e65c4f;
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.top-bar-phone:hover {
    background: #d94b3d;
}

/* Hizmetler kısmı */
.rotating-services {
    font-weight: bold;
    color: #fff;
    font-size: 15px;
    margin: 0 20px;
    overflow: hidden;
    height: 20px;
    text-align: left;
    /* Hizmetler linkinin sola hizalanması */
}

/* Hizmetler linki */
.rotating-services a {
    color: #ccc;
    text-decoration: none;
    display: inline-block;
    animation: fadeInOut 5s infinite;
}

/* Fade animasyonu */
@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    10% {
        opacity: 1;
        transform: translateY(0);
    }

    90% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Mobil cihazlar için responsive stil ayarları */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        /* Dikey hizalama */
        padding: 10px;
        height: 110px;
        /* Yüksekliği otomatik ayarla */
    }

    .top-bar h3 {
        position: static;
        text-align: center;
        margin-bottom: 10px;
        /* Başlık için biraz boşluk */
    }

    .rotating-services {
        position: static;
        text-align: center;
        /* Hizmetleri ortala */
        margin: 10px 0;
        /* Hizmetler arasına boşluk bırak */
    }

    .top-bar-phone {
        margin-top: 10px;
        /* Telefon numarasına boşluk ekle */
    }

    /* Tarih ve saat için düzenleme */
    #datetime {
        margin-bottom: 10px;
        text-align: center;
    }
}

/* Header */
.header {
    position: fixed;
    top: 60px;
    /* top-bar yüksekliği kadar */
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #fdfaf3;
    z-index: 1000;
    transition: all 0.5s ease;
}

.desktop-nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Nav ortada olacak */
    position: relative;
    height: 100%;
    padding: 0 20px;
}

/* Logo solda CSS ile */
.logo {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    /* Genişlik ayarı */
    height: 90px;
    /* Yükseklik ayarı */
    background-image: url('images/asagi-web-logo.png');
    background-size: contain;
    /* Resim kutuyu doldurur, orantıyı korur */
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    transition: background-image 0.3s ease;
}

/* Desktop nav ortada */
.desktop-nav a {
    margin: 0;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: all 0.3s;
    padding: 38px 50px;
}

.desktop-nav a:hover {
    background-color: #8c7520;
    color: #000;
}

/* Hamburger */
.hamburger {
    display: none;
    width: 50px;
    /* Buton genişliği */
    height: 50px;
    /* Buton yüksekliği */
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    /* Header yüksekliğine göre dikey ortalama */
    transform: translateY(-50%);
    z-index: 1100;
    font-size: 35px;
    /* Hamburger icon boyutu */
    transition: transform 0.3s ease;
}

/* Mobile nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: #1a0a2b;
    position: absolute;
    top: 95px;
    right: 0;
    width: 100%;
    transform: translateX(100%);
    /* Başlangıçta gizli */
    transition: transform 0.25s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    display: flex;
    transform: translateX(0);
    /* Açılınca görünür */
}

.mobile-nav a {
    padding: 25px;
    border-bottom: 1px solid #ccc;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.mobile-nav a:hover {
    background-color: #8c7520;
    color: #fff;
}

/* RESPONSIVE HEADER */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-nav.active {
        display: flex;
    }

    .header {
        top: 130px;
    }
}

section {
    position: relative;
    border-top: 10px;
}

section::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 2px;
    /* Çizgi kalınlığı */
    background-color: #8c7520;
    /* sarımtırak ton */
    box-shadow: 0 4px 10px rgba(140, 117, 32, 0.5);

}

/* HİZMETLER SECTION */
.hizmetler-section {
    background: #fdfaf3;
    padding: 80px 20px;
}

/* Bölüm Başlığı */
.hizmetler-baslik {
    text-align: left;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a0a2b;
    /* koyu lacivert */
    margin-bottom: 10px;
    position: relative;
}

.hizmetler-baslik::after {
    content: '';
    display: block;
    height: 2px;
    background: #8c7520;
    /* koyu altın çizgi */
    margin: 10px 0;
    border-radius: 2px;
}

.hizmetler-altaciklama {
    text-align: left;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    font-style: italic;
}

/* Hizmetler ana kapsayıcı */
.hizmetler {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    box-sizing: border-box;
    margin-bottom: -50px;
}

/* Hizmet kutuları */
.hizmet-left,
.hizmet-right {
    border: 2px solid #8c7520;
    /* koyu altın */
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    background: #fff;
}

/* Genişlikler */
.hizmet-left {
    flex: 0 0 65%;
}

.hizmet-right {
    flex: 0 0 30%;
}

/* Resimler */
.hizmet-left img,
.hizmet-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
    transition: transform 0.5s;
}

/* Overlay için pseudo element */
.hizmet-left::after,
.hizmet-right::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    pointer-events: none;
    transition: background 0.4s;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 100%);
}

/* Hover - alttan üste altın yansıma */
.hizmet-left:hover::after,
.hizmet-right:hover::after {
    background: linear-gradient(to top, rgba(140, 117, 32, 0.8) 0%, rgba(140, 117, 32, 0) 100%);
}

/* Yazı overlay */
.hizmet-text {
    pointer-events: none;
    position: absolute;
    bottom: 10px;
    color: #fff;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.4s;
    padding: 0 20px;
    font-weight: 600;
    text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.6);
}

.hizmet-text h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.hizmet-text p {
    font-size: 0.9rem;
    font-weight: 400;
}

/* Hover - resim büyüme */
.hizmet-left:hover img,
.hizmet-right:hover img {
    transform: scale(1.03);
}

/* Resim altındaki açıklama */
.hizmet-aciklama {
    margin-top: 12px;
    font-size: 16px;
    color: #444;
    font-weight: 400;
    text-align: left;
    line-height: 1.4;
    padding: 0 10px 10px;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .hizmetler {
        flex-direction: column;
    }

    .hizmet-left,
    .hizmet-right {
        flex: 1 0 100%;
    }

    .hizmet-text {
        padding: 10px;
        font-size: 14px;
    }

    .hizmet-text h2 {
        font-size: 1.2rem;
    }

    .hizmet-aciklama {
        font-size: 13px;
    }
}

/* Wrapper sağa yaslamak için */
.devamini-oku-wrapper {
    display: flex;
    justify-content: flex-end;
    /* Sağ tarafa hizalar */
    margin-bottom: 10px;
    margin-top: 15px;
    /* Kutunun altına biraz boşluk */
}

/* Buton stili (önceki ile aynı) */
.devamini-oku {
    margin-top: 15px;
    display: inline-block;
    padding: 12px 45px;
    background-color: #8c7520;
    /* koyu altın */
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.devamini-oku:hover {
    background-color: #1a0a2b;
    /* lacivert */
    color: #fdfaf3;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Hakkımızda Section */
.hakkimizda-section {
    position: relative;
    background-image: url('images/hakkimizda.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* yazıları sağa yasla */
    /* sağdan biraz boşluk */
    box-sizing: border-box;
}

/* Yarı şeffaf overlay (gölge ve kontrast için) */
.hakkimizda-overlay {
    background: rgba(0, 0, 0, 0.3);
    /* resmin üzerinde kontrast sağlar */
    padding: 60px 30px;
    max-width: 100%;
    max-height: 100%;
}

/* Başlık */
.hakkimizda-baslik {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 15px;
}

/* Metin */
.hakkimizda-text {
    max-width: 768px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

/* Mobil uyum */
@media (max-width: 768px) {
    .hakkimizda-section {
        justify-content: center;
        /* mobilde ortala */
    }

    .hakkimizda-overlay {
        max-width: 100%;
        text-align: center;
    }

    .hakkimizda-baslik {
        font-size: 2rem;
    }

    .hakkimizda-text {
        font-size: 0.95rem;
        max-width: 100%;
    }
}

/* Yorumlar konteyneri */
.reviews-container {
    flex: auto;
    max-width: 100%;
    margin: 30px auto;
    padding: 20px;
}

/* Müşteri Yorum kutusu */
.customer-review {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Profil bilgisi */
.profile {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.customer-name {
    font-size: 18px;
    font-weight: bold;
}

/* Yorum metni */
.review-message {
    font-size: 16px;
    margin: 15px 0;
}

blockquote {
    font-size: 18px;
    font-style: italic;
    margin: 0;
    padding: 0 10px;
    border-left: 4px solid #8c7520;
}

/* Yıldızlar */
.review-stars {
    display: flex;
    gap: 5px;
}

.star {
    font-size: 20px;
    color: #ccc;
    /* Boş yıldız rengi (gri) */
}

.filled {
    color: #f39c12;
    /* Dolu yıldız rengi (altın sarısı) */
}

/* Medyum Hizmetler Ana Bölüm */
.medyum-hizmetler {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 15px;
    padding: 10px;
    margin-bottom: 35px;
    background: #fdfaf3;
    /* senin ana renk */
}

.medyum-baslik {
    grid-column: 1 / -1;
    /* tüm sütunları kapsasın */
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a0a2b;
    /* koyu lacivert ton */
}

.medyum-baslik::after {
    content: '';
    display: block;
    height: 3px;
    background: #8c7520;
    /* koyu altın çizgi */
    margin: 10px 0;
    border-radius: 2px;
}

/* Her Medyum Hizmet Kartı */
.medyum-hizmet {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease;
    min-width: 100%;
    min-height: 350px;
}

/* Resim */
.medyum-hizmet img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.medyum-hizmet:hover img {
    transform: scale(1.08);
    /* Hover’da hafif yakınlaşma */
    filter: brightness(0.8);
    /* koyulaşma */
}

/* Başlık & Açıklama Alanı */
.medyum-hizmet-yazi {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    /* yarı saydam zemin */
    color: #fff;
    text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease;
}

.medyum-hizmet h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.medyum-hizmet p {
    margin: 8px 0 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

@media (max-width:768px) {
    .medyum-hizmetler {
        grid-template-columns: repeat(auto-fit, minmax(345px, 1fr));
    }
}

.site-footer {
    background: #1a0a2b;
    color: #fdfaf3;
    padding: 50px 20px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    justify-content: space-between;
}

.footer-about,
.footer-services,
.footer-contact {
    flex: 1 1 250px;
}

.footer-about h3,
.footer-services h3,
.footer-contact h3 {
    color: #fdfaf3;
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
}

.footer-about h3::after,
.footer-services h3::after,
.footer-contact h3::after {
    content: '';
    display: block;
    height: 2px;
    background: #3b5998;
    width: 100%;
    margin-top: 5px;
    border-radius: 2px;
}

.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services ul li {
    margin-bottom: 8px;
}

/* Butonlar */
.contact-buttons a {
    display: block;
    margin-bottom: 10px;
    text-align: center;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s ease;
}

.email-btn {
    background: #8b2eff;
}

.whatsapp-btn {
    background: #25d366;
}

.call-btn {
    background: #ffd966;
    color: #000;
}

.contact-buttons a:hover {
    transform: scale(1.05);
}


/* Footer alt kısmı */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 250, 243, 0.4);
    padding-top: 15px;
}

.footer-links {
    margin-top: 5px;
}

.footer-links a {
    margin: 0 auto;
    color: #fdfaf3;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: #3b5998;
}

/* Sosyal ikonlar */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* Renkler */
.social-icon.whatsapp {
    background-color: #25D366;
}

.social-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.facebook {
    background-color: #3b5998;
}

/* ===== MOBİL ===== */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-about,
    .footer-services,
    .footer-contact {
        flex: 1 1 100%;
    }

    .contact-buttons a {
        width: 80%;
        margin: 5px auto;
    }
}

/* Sabit sol alt WhatsApp */
.fixed-whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: white;
    font-size: 30px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s;
}

.fixed-whatsapp:hover {
    transform: scale(1.1);
}

/* Sabit sağ telefon */
.fixed-phone {
    margin-bottom: 65px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #b88a2d);
    color: #1a1a1a;
    font-size: 28px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s;
}

.fixed-phone:hover {
    transform: scale(1.1);
}

#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background: linear-gradient(135deg, #d4af37, #b88a2d);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateX(50px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Buton aktif olduğunda görünür ve animasyonlu olur */
#scrollToTopBtn.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Hover efekti */
#scrollToTopBtn:hover {
    transform: scale(1.1);
}

.contact-section {
    background: #fdfaf3;
    /* sitene uyumlu açık krem tonu */
    padding: 40px 20px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a0a2b;
}

.contact-info p {
    margin-bottom: 20px;
    color: #333;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-info a {
    color: #3b5998;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    width: 100%;
}

.contact-form button {
    background: #1a0a2b;
    color: #fff;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #3b5998;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        max-width: 80%;
        padding: 0;
    }
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px 0;
}

.blog-item {
    display: flex;
    gap: 10px;
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.4));
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(22, 18, 10, 0.08);
}

/* İlk blog için normal sıra (resim solda, açıklama sağda) */
.blog-item:nth-child(odd) {
    flex-direction: row;
}

/* İkinci blog için ters sıra (resim sağda, açıklama solda) */
.blog-item:nth-child(even) {
    flex-direction: row-reverse;
}

/* Görsel alanı */
.blog-item .media {
    flex: 0 0 40%;
    max-width: 40%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-item .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.blog-item:hover .media img {
    transform: scale(1.04);
}

/* İçerik alanı */
.blog-item .content {
    flex: 1 1 auto;
    padding: 28px 32px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content .meta {
    font-size: 13px;
    color: #6b6250;
    margin-bottom: 8px;
}

.content h2 {
    margin: 0 0 12px 0;
    font-size: 20px;
    line-height: 1.2;
    color: #8c7520;
}

.content p {
    margin: 0 0 18px 0;
    color: #333;
    opacity: 0.95;
}

.read-more {
    align-self: flex-end;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 10px;
    border: 2px solid #8c7520;
    background: transparent;
    color: #8c7520;
    font-weight: 600;
    transition: all 0.18s ease;
}

.read-more:hover {
    background: #8c7520;
    color: #fdfaf3;
}

/* Mobilde resim üstte olacak şekilde ayar */
@media (max-width: 780px) {

    .blog-item {
        flex-direction: column !important;
    }

    .blog-item .media {
        width: 100%;
        max-width: 100%;
        height: 220px;
        order: -1;
        /* Resmi üstte yapmak için sırasını -1 yapıyoruz */
    }

    .blog-item .content {
        padding: 18px 18px 22px 18px;
    }

    /* Mobilde, her iki blogda da resim her zaman üstte olacak */
    .blog-item:nth-child(even) {
        flex-direction: column;
        /* Aynı düzeni her iki öğeye de uygula */
    }
}

/* Küçük estetik dokunuş */
.byline {
    font-weight: 600;
}

.work-methods {
    padding: 30px 20px;
    text-align: center;
    background: #fdfaf3;
}

.work-methods h2 {
    font-size: 28px;
    color: #8c7520;
    margin-bottom: 40px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    flex: 1 1 220px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.0);
    /* Kutucuk görünmez */
    transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.step .icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.step h3 {
    font-size: 20px;
    color: #8c7520;
    margin-bottom: 10px;
}

.step p {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 780px) {
    .work-methods {
        text-align: left;
    }

    .steps-container {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .step {
        width: 90%;
    }
}

.faq-section {
    max-width: 100%;
    margin: 50px auto;
    padding: 20px;
}

.faq-section h1 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a0a2b;
}

.faq-item {
    max-width: 900px;
    margin: 0 auto 15px auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    padding: 15px 20px;
    text-align: left;
    background: #fdfaf3;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #1a0a2b;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f4f0e3;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.faq-answer p {
    margin: 15px 0;
    font-size: 15px;
    color: #333;
}

/* Açıkken aktif hale getirme */
.faq-item.active .faq-answer {
    max-height: 300px;
    /* yeterli yükseklik */
    padding: 15px 20px;
}

/* Hemen ara bölümüne stil */
.hemen-ara {
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300px;
    background-color: #1a0a2b;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Telefon numarası ve simge stil */
.hemen-ara-phone-number {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

.hemen-ara-phone-number i {
    margin-right: 10px;
    font-size: 27px;
}

/* Açıklama stil */
.hemen-ara-description {
    max-width: 1100px;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 300;
}

/* İletişim butonu */
.hemen-ara-btn {
    padding: 13px 32px;
    background-color: #fff;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    border: 2px solid #fff;
    /* Beyaz kenar çizgisi */
    position: relative;
    overflow: hidden;
    /* Butonun içindeki içerik dışarı taşmasın */
    transition: color 0.4s ease;
}

/* Hover durumunda butonun ortasından başlayarak siyah arka plan */
.hemen-ara-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: #262626;
    transition: width 0.4s ease, left 0.4s ease;
    z-index: 0;
}

/* Hover olunca butonun ortasından kenarlara doğru siyah yayılacak */
.hemen-ara-btn:hover::before {
    width: 100%;
    left: 0;
}

/* Buton hover durumunda yazı rengini beyaza döndür */
.hemen-ara-btn:hover {
    color: #fff;
}

/* Butonun üstündeki metni öne getirmek için */
.hemen-ara-btn span {
    position: relative;
    z-index: 1;
}

/* Yıldızname ve Tarot Bölümü */
.astro-tarot-section {
    display: flex;
    width: 100%;
    max-width: 100%;
    height: 350px;
    margin: 0;
    /* Section aralarında boşluk için gerekirse ekle */
    padding: 0;
    gap: 0;
}

.astro-item {
    background: url('images/yildizname-resmi.jpg') center/cover no-repeat;
}

.tarot-item {
    background: url('images/tarot-kagidi.jpg') center/cover no-repeat;
}

.astro-item,
.tarot-item {
    margin-bottom: -30px;
    flex: 1 1 50%;
    background-size: 150%;
    /* Scale efekti */
    transition: background-size 0.6s ease;
    /* Hover ile animasyon */
    padding: 30px 20px;
    box-shadow: 4px 8px 25px rgba(0, 0, 0, 1);
    /* Daha belirgin gölge */
    color: #fff;
}

.astro-item:hover,
.tarot-item:hover {
    background-size: 160%;
    /* Hover ile yakınlaştırma */
}

.astro-item h2,
.tarot-item h2 {
    text-align: center;
    font-size: 26px;
    margin-top: 80px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.astro-item p,
.tarot-item p {
    text-align: center;
    font-size: 16px;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* Mobil düzeni: alt alta geçiş */
@media (max-width: 780px) {
    .astro-tarot-section {
        flex-direction: column;
        height: auto;
    }

    .astro-item,
    .tarot-item {
        flex: 1 1 100%;
    }

    .astro-item h2,
    .tarot-item h2 {
        margin: 0 auto;
    }

    .tarot-item {
        margin-bottom: -30px;
    }

    .astro-item {
        margin: 0;
    }
}

.politika {
    margin-top: 100px;
    max-width: 100%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.politika h1,
.politika h2 {
    color: #4CAF50;
    margin-bottom: 10px;
}

.politika h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #333;
}

.politika p {
    margin-bottom: 15px;
    font-size: 1em;
    color: #555;
}

.politika ul {
    list-style-type: none;
    padding: 0;
}

.politika ul li {
    margin-bottom: 10px;
}

.politika .contents {
    padding-left: 20px;
}

.politika .contents a {
    color: #4CAF50;
    text-decoration: none;
}

.politika .contents a:hover {
    text-decoration: underline;
}

.politika .section {
    margin-bottom: 20px;
}

/* Kutucuk için özel stil */
.politika .kutucuk {
    background-color: #f9f9f9;
    /* Açık gri arka plan */
    border: 1px solid #ddd;
    /* Gri kenarlık */
    border-radius: 8px;
    /* Köşe yuvarlama */
    padding: 20px;
    /* İç boşluk */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    /* Hafif gölge efekti */
    margin-top: 20px;
    /* Üst boşluk */
}

.politika .kutucuk h3 {
    color: #4CAF50;
    margin-bottom: 10px;
}

.politika .kutucuk p {
    font-size: 1em;
    color: #555;
}

.politika .kutucuk a {
    color: #4CAF50;
    text-decoration: none;
}

.politika .kutucuk a:hover {
    text-decoration: underline;
}

/* sf-hakkimizda Bölümü */
.sf-hakkimizda {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    /* Arka plan rengi */
    color: #333;
    /* Yazı rengi */
    max-width: 90%;
    margin: 30px auto;
    margin-top: 100px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sf-hakkimizda h1 {
    font-size: 36px;
    color: #2d2d2d;
    /* Başlık rengi */
    text-align: left;
    margin-bottom: 20px;
}

.sf-hakkimizda .icerik {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.sf-hakkimizda p {
    margin-bottom: 20px;
    text-align: justify;
}

.sf-hakkimizda p:last-of-type {
    margin-bottom: 0;
}

.sf-hakkimizda img.resim {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 20px 0;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sf-hakkimizda .icerik p {
    font-size: 16px;
    color: #666;
}

.sf-icerik {
    background-color: #fdfaf3;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 60px auto;
    margin-bottom: -30px;
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.7;
}

.sf-icerik h1 {
    text-align: center;
    color: #8c7520;
    margin-bottom: 30px;
    font-size: 2em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.sf-icerik p {
    margin-bottom: 20px;
    font-size: 1.05em;
}

.sf-icerik img {
    display: block;
    margin: 20px auto;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 3px solid #b88a2d;
}

.sf-blog-icerik {
    text-align: left;
    /* Yazılar sola hizalanacak */
    font-size: 18px;
    /* Yazı boyutu biraz daha büyük */
    line-height: 1.7;
    /* Daha rahat okunabilirlik için satır yüksekliği */
    color: #333;
    /* Yazı rengi */
    margin: 70px 0;
    /* Bloglar arasında boşluk */
    margin-bottom: -10px;
    padding: 15px;
    /* İçerik ile kenarlar arası boşluk */
    background-color: #fdfaf3;
    /* Hafif açık arka plan */
    border-radius: 8px;
    /* Hafif yuvarlatılmış köşeler */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    /* Hafif gölge efekti */
}

/* Blog resimlerine özel border */
.sf-blog-icerik img {
    border: 3px solid #b88a2d;
    /* Altın tonunda çerçeve */
    border-radius: 8px;
    /* Köşeleri hafif yuvarlat */
    max-width: 100%;
    /* Responsive tasarım */
    display: block;
    margin: 10px 0;
    /* Resim üstü ve altı boşluk */
}

/* Başlıklar için (opsiyonel) */
.sf-blog-icerik h1,
.sf-blog-icerik h2,
.sf-blog-icerik h3 {
    margin-top: 15px;
    margin-bottom: 10px;
    color: #8c7520;
    /* Koyu altın/bordo uyumlu başlık rengi */
}

/* Paragraflar */
.sf-blog-icerik p {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.7;
}