:root {
    --gold: #d4af37;
    --dark-green: #042f22;
    --emerald: #064e3b;
    --light-emerald: #0f766e;
    --cream: #faf7f0;
    --white: #ffffff;
    --text-dark: #2a2a2a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Montserrat', sans-serif; 
    background-color: var(--cream); 
    /* Osmanlı cami süslemesi izlenimi veren hafif, göz yormayan mistik arka plan deseni */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23d4af37' fill-opacity='0.04'%3E%3Cpath d='M40 0l-4 8-8-4 4 8-8 0 8 4-4 8 8-4 0 8 4-8 4 8 0-8 8 4-4-8 8 0-8-4 4-8-8 4zm0 80l4-8 8 4-4-8 8 0-8-4 4-8-8 4 0-8-4 8-4-8 0 8-8-4 4 8-8 0 8 4-4 8 8-4zM0 40l8 4-4 8 8-4 0 8 4-8 4 8 0-8 8 4-4-8 8 0-8-4 4-8-8 4 0-8-4 8-4-8 0 8-8-4 4 8-8 0zM80 40l-8-4 4-8-8 4 0-8-4 8-4-8 0 8-8-4 4 8-8 0 8 4-4 8 8-4 0 8 4-8 4 8 0-8 8 4-4-8 8 0z'/%3E%3C/g%3E%3C/svg%3E");
    color: var(--text-dark); 
    overflow-x: hidden; 
    scroll-behavior: smooth; 
}
.container { max-width: 1200px; margin: 0 auto; padding: 80px 20px; }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; width: 100%; height: 90px; background: rgba(4, 47, 34, 0.96); display: flex; align-items: center; justify-content: space-between; padding: 0 5%; z-index: 1000; border-bottom: 1px solid rgba(212, 175, 55, 0.2); backdrop-filter: blur(10px); }
.logo { font-family: 'Cinzel', serif; color: var(--gold); font-size: 2.1rem; font-weight: 700; letter-spacing: 2px; }
.nav-links { display: flex; list-style: none; gap: 22px; align-items: center; }
.nav-links a { color: var(--white); text-decoration: none; font-weight: 500; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: var(--gold); }
.btn-nav { background: var(--gold); padding: 10px 20px; border-radius: 4px; color: #000 !important; font-weight: 600 !important; }
.btn-nav:hover { background: var(--white); transform: translateY(-2px); }

/* Giriş Alanı */
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.hero-bg { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: linear-gradient(rgba(4, 47, 34, 0.8), rgba(0, 0, 0, 0.85)), 
                url('https://images.unsplash.com/photo-1590074258328-971c08603673?q=80&w=1920'); 
    background-size: cover; background-position: center; transform: scale(1.1); transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1); 
}
.hero-content { z-index: 1; max-width: 900px; padding: 0 20px; }
.hero h1 { font-family: 'Cinzel', serif; font-size: 5.5rem; color: var(--gold); margin-bottom: 15px; letter-spacing: 3px; }
.hero p { font-size: 1.6rem; font-weight: 300; letter-spacing: 1px; color: #f0f0f0; margin-bottom: 10px; }
.hero .hero-sub { font-size: 1.1rem; color: #ccc; margin-bottom: 40px; font-weight: 300; }

.btn-gold { background: var(--gold); color: #000; padding: 16px 36px; text-decoration: none; display: inline-block; margin: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: 0.4s; border-radius: 4px; }
.btn-outline { border: 2px solid var(--gold); color: var(--gold); padding: 14px 36px; text-decoration: none; display: inline-block; margin: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: 0.4s; border-radius: 4px; }
.btn-gold:hover, .btn-outline:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3); }

/* Scroll Animasyonları */
.scroll-reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1); }
.scroll-reveal.active { opacity: 1; transform: translateY(0); }

.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-family: 'Cinzel', serif; font-size: 2.5rem; color: var(--dark-green); margin-bottom: 15px; }
.divider { width: 80px; height: 3px; background-color: var(--gold); margin: 0 auto; }

/* Uzman Bölümü */
.expert-section { background: var(--white); border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.03); padding: 60px; margin-top: -60px; position: relative; z-index: 10; }
.expert-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.expert-text span { color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; }
.expert-text h2 { font-family: 'Cinzel', serif; font-size: 2.8rem; color: var(--dark-green); margin: 15px 0; }
.expert-text p { color: #555; font-size: 1.05rem; margin-bottom: 30px; line-height: 1.6; }
.badges { display: flex; gap: 15px; flex-wrap: wrap; }
.badge-item { background: var(--cream); border-left: 3px solid var(--gold); padding: 12px 20px; font-weight: 600; color: var(--emerald); font-size: 0.9rem; }
.expert-image img { width: 100%; border-radius: 12px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }

/* Tedaviler */
.treatment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.t-card { background: var(--white); padding: 40px; border-radius: 12px; text-align: center; transition: 0.4s; box-shadow: 0 5px 20px rgba(0,0,0,0.02); border: 1px solid #f1ece2; }
.t-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(4, 47, 34, 0.08); }
.t-card i { font-size: 3.2rem; color: var(--gold); margin-bottom: 20px; }
.t-card h3 { font-family: 'Cinzel', serif; font-size: 1.4rem; margin-bottom: 12px; color: var(--dark-green); }
.t-card p { font-size: 0.95rem; color: #555; line-height: 1.5; }

/* Faydalar Blokları */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.benefit-block { background: #fffdfb; border: 1px solid #f3ece4; border-radius: 16px; padding: 40px; box-shadow: 0 8px 30px rgba(4, 47, 34, 0.02); }
.block-header { font-family: 'Cinzel', serif; font-size: 1.3rem; font-weight: 700; padding-bottom: 15px; margin-bottom: 25px; border-bottom: 2px dashed rgba(212, 175, 55, 0.3); display: flex; align-items: center; gap: 12px; }
.sülük-header { color: var(--emerald); }
.hacamat-header { color: #8c5246; }
.benefit-list { list-style: none; }
.benefit-list li { font-size: 1.05rem; line-height: 1.6; margin-bottom: 18px; display: flex; align-items: flex-start; gap: 12px; color: #444; }
.benefit-list li i { color: #b8860b; font-size: 1.2rem; margin-top: 3px; }

/* Mağaza Kartları Sistemi */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 30px; }
.shop-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 25px rgba(0,0,0,0.03); transition: 0.4s; border: 1px solid #eaddca; display: flex; flex-direction: column; justify-content: space-between; }
.shop-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(4, 47, 34, 0.1); }
.shop-img img { width: 100%; height: 320px; object-fit: cover; background-color: #f7f7f7; }
.shop-info { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.cat-tag { display: inline-block; background: rgba(4, 47, 34, 0.08); color: var(--dark-green); font-size: 0.75rem; font-weight: 600; padding: 4px 12px; border-radius: 3px; margin-bottom: 12px; align-self: flex-start; text-transform: uppercase; letter-spacing: 0.5px; }
.shop-info h3 { font-family: 'Cinzel', serif; font-size: 1.1rem; margin-bottom: 10px; color: var(--dark-green); line-height: 1.4; font-weight: 700; min-height: 44px; display: flex; align-items: center; }
.shop-info p { font-size: 0.9rem; color: #555; margin-bottom: 15px; line-height: 1.5; }
.price { font-size: 1.4rem; font-weight: 700; color: #91711e; margin-bottom: 15px; margin-top: auto; border-top: 1px dashed #e6dfd3; padding-top: 12px; font-family: 'Cinzel', serif; }
.btn-shop-wa { display: flex; align-items: center; justify-content: center; gap: 8px; background: #25D366; color: white; text-decoration: none; padding: 12px; border-radius: 4px; font-weight: 600; transition: 0.3s; margin-top: auto; font-size: 0.95rem; }
.btn-shop-wa:hover { background: #1ebd52; }

/* Konum Alanı */
.location-section { background: var(--white); border-radius: 16px; box-shadow: 0 5px 30px rgba(0,0,0,0.02); border: 1px solid #ebdcb9; padding: 60px 40px; margin-top: 40px; }
.location-grid { max-width: 750px; margin: 0 auto; text-align: center; }
.location-card { padding: 20px; }
.loc-icon i { font-size: 4rem; color: #8c5246; margin-bottom: 20px; }
.location-card h3 { font-family: 'Cinzel', serif; font-size: 1.6rem; color: var(--dark-green); margin-bottom: 10px; }
.address-text { font-size: 1.4rem; font-weight: 700; color: var(--gold); margin-bottom: 15px; letter-spacing: 0.5px; }
.loc-desc { color: #555; font-size: 1rem; line-height: 1.6; margin-bottom: 25px; }
.loc-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--cream); border: 1px solid #e1d3b7; padding: 8px 16px; border-radius: 3px; font-weight: 600; font-size: 0.85rem; color: var(--emerald); margin: 5px; }

/* Footer */
footer { background: var(--dark-green); color: var(--white); padding: 80px 5% 30px; border-top: 4px solid var(--gold); margin-top: 80px; }
.footer-content { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.divider-left { width: 50px; height: 3px; background: var(--gold); margin-bottom: 20px; }
.contact-name { font-family: 'Cinzel', serif; font-size: 2rem; color: var(--gold); }
.contact-title { font-size: 1rem; color: #b3c7c2; margin-bottom: 20px; letter-spacing: 1px; }
.contact-details { list-style: none; margin-bottom: 25px; }
.contact-details li { margin-bottom: 12px; font-size: 1.05rem; display: flex; align-items: center; gap: 12px; }
.contact-details li i { color: var(--gold); font-size: 1.2rem; width: 20px; }
.footer-cta-text { font-size: 0.95rem; color: #bdc9c6; margin-bottom: 25px; line-height: 1.5; }
.btn-final-wa { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: #000; text-decoration: none; padding: 15px 35px; font-weight: 600; border-radius: 4px; transition: 0.3s; font-size: 1rem; }
.btn-final-wa:hover { background: var(--white); transform: translateY(-3px); }
.footer-image-box img { width: 100%; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); border: 1px solid rgba(212, 175, 55, 0.3); opacity: 0.85; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 50px; padding-top: 25px; text-align: center; font-size: 0.85rem; color: #8fa39e; line-height: 1.6; }

@media (max-width: 968px) {
    .hero h1 { font-size: 3.2rem; }
    .expert-grid, .footer-content, .benefits-grid { grid-template-columns: 1fr; gap: 30px; }
    .nav-links { display: none; }
}
/* --- Navbar ve Logo Güncellemesi --- */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-img {
    height: 50px; /* Navbar yüksekliğine göre taşmayacak ideal boyut */
    width: auto;
    object-fit: contain;
    border-radius: 50%; /* Yuvarlak amblem şıklığı için */
    border: 1px solid var(--gold);
}
.logo { 
    font-family: 'Cinzel', serif; 
    color: var(--gold); 
    font-size: 2.1rem; 
    font-weight: 700; 
    letter-spacing: 2px; 
}

/* --- Hero Alanı Görsel Entegrasyonu --- */
.hero-content { 
    z-index: 1; 
    max-width: 900px; 
    padding: 0 20px; 
    display: flex;
    flex-direction: column;
    align-items: center; /* İçerikleri yatayda tam ortalar */
    justify-content: center;
}

.hero-main-img {
    max-width: 380px; /* Ekrandan taşmaması için ideal üst sınır */
    width: 100%;      /* Mobilde ekran boyutunu dinamik alır */
    height: auto;
    margin-bottom: 20px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--gold);
    object-fit: contain;
    animation: fadeInImg 1.5s ease-out;
}

/* Görsel için hafif bir açılış animasyonu */
@keyframes fadeInImg {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobil Cihazlar İçin Optimizasyon */
@media (max-width: 480px) {
    .hero-main-img {
        max-width: 280px; /* Küçük ekranlarda taşmayı tamamen önler */
    }
    .logo-img {
        height: 40px;
    }
    .logo {
        font-size: 1.6rem;
    }
}