/* ===================================================== */
/* 🎨 MASTERPIECE CRAFTED BY KARABAY DESIGN              */
/* ===================================================== */

:root {
    --gold: #D4AF37; --tan: #d1c791; --champagne: #f3d8ce; --blood: #5e1104; --moss: #7f8330;
    --bg-champagne-soft: #fcf6f4; --bg-tan-soft: #fbfaf2; --text-dark: #2a0902;
    --font-serif: 'Cormorant Garamond', serif; 
    --font-sans: 'Montserrat', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 120px; }

/* TEMA GENEL YAZI BOYUTU BÜYÜTÜLDÜ */
body { font-family: var(--font-sans); color: var(--text-dark); font-size: 18px; line-height: 1.8; overflow-x: hidden; background-color: #ffffff; }

/* REVEAL FOOTER | KARABAY DESIGN SIGNATURE */
#secret-footer { position: fixed; bottom: 0; left: 0; width: 100%; z-index: -1; background: #1a0502; color: #bbb; padding: 60px 0 20px; }
.main-content { background: #ffffff; position: relative; z-index: 2; box-shadow: 0 10px 50px rgba(0,0,0,0.2); }

/* BOŞLUKLAR */
.section-padding { padding: 100px 0; }
.tight-bottom { padding-bottom: 40px !important; }
.tight-top { padding-top: 40px !important; }

/* ANİMASYONLAR */
.scroll-reveal { opacity: 0; transition: all 1.2s ease-out; }
.fade-in { transform: translateY(0); }
.from-left { transform: translateX(-80px); }
.from-right { transform: translateX(80px); }
.from-bottom { transform: translateY(80px); }
.active-anim { opacity: 1; transform: translate(0,0); }
.delay-1 { transition-delay: 0.2s; } .delay-2 { transition-delay: 0.4s; } .delay-3 { transition-delay: 0.6s; }

/* ------------------------------------------------------------- */
/* 🌐 NAVBAR BY KARABAY DESIGN                                   */
/* ------------------------------------------------------------- */
.navbar { position: fixed; top: 0; left: 0; width: 100%; height: 100px; background: #ffffff; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.05); display: flex; align-items: center; justify-content: center; overflow: visible !important; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; position: relative; }
.nav-flex { display: flex; justify-content: center; align-items: center; height: 100%; }

/* LOGO (SABİT) */
.logo-hanger { position: absolute; top: 10px; left: 20px; z-index: 1001; }
.logo-hanger img { width: 135px; height: 135px; border-radius: 50%; object-fit: cover; border: 5px solid #ffffff; box-shadow: 0 5px 15px rgba(0,0,0,0.15); transition: 0.3s; }
.logo-hanger img:hover { transform: scale(1.05); }

/* ORTA MENÜ VE KAYAN ÇİZGİ */
.nav-menu-wrapper { position: relative; display: inline-block; }
.nav-links { display: flex; gap: 40px; list-style: none; margin: 0; padding: 0; align-items: center; justify-content: center; margin-left: 170px; position: relative; }
.nav-links a { font-weight: 700; font-size: 15px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-dark); text-decoration: none; transition: 0.3s; padding: 10px 0; }
.nav-links a:hover { color: var(--blood); }
.nav-marker { position: absolute; bottom: 0; left: 0; height: 3px; width: 0; background-color: var(--blood); transition: all 0.4s ease; border-radius: 2px; }
.nav-btn-area { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); }
.btn-nav { border: 2px solid var(--text-dark); padding: 15px 40px; border-radius: 50px; text-decoration: none; color: var(--text-dark); font-weight: 700; font-size: 15px; display: inline-block; transition: 0.3s; line-height: 1; letter-spacing: 1px; }
.btn-nav:hover { background: var(--text-dark); color: white !important; }
.mobile-menu { display: none; } 
.hamburger { display: none; cursor: pointer; } 
.bar { width: 30px; height: 3px; background-color: var(--text-dark); margin: 6px 0; }

/* INTRO */
#intro-loader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: white; z-index: 9999; display: flex; align-items: center; justify-content: center; }
.intro-wrapper { text-align: center; }
.name-reveal { display: flex; gap: 20px; font-family: var(--font-serif); font-size: 70px; font-weight: 700; color: var(--gold); justify-content: center; margin-bottom: 20px; }
.word { display: flex; align-items: center; overflow: hidden; }
.slide-out { display: block; max-width: 0; opacity: 0; white-space: nowrap; color: var(--text-dark); font-size: 50px; letter-spacing: 2px; animation: slideOpen 1.5s forwards 0.5s; }
.intro-logo-bottom { width: 250px; height: 250px; border-radius: 50%; object-fit: cover; opacity: 0; transform: translateY(30px); box-shadow: 0 10px 40px rgba(0,0,0,0.15); animation: fadeInLogo 0.8s forwards 1.2s; }
@keyframes slideOpen { to { max-width: 500px; opacity: 1; } }
@keyframes fadeInLogo { to { opacity: 1; transform: translateY(0); } }

/* Footer */
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.f-col { flex: 1; min-width: 250px; }
.footer-logo { width: 140px; height: 140px; border-radius: 50%; border: 3px solid rgba(255,255,255,0.2); object-fit: cover; margin-bottom: 20px; }
.f-col h3 { font-family: var(--font-serif); font-size: 32px; color: white; margin-bottom: 10px; }
.f-col h4 { color: var(--gold); font-size: 18px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
.f-col ul li { margin-bottom: 15px; display: flex; align-items: flex-start; gap: 10px; font-size: 16px; }
.f-col i { color: var(--tan); margin-top: 5px; }
.socials a { font-size: 28px; color: white; margin-right: 15px; transition: 0.3s; }
.f-bottom { text-align: center; padding-top: 20px; font-size: 14px; opacity: 0.5; }

/* KARE RESİM */
.square-image-box { width: 500px; height: 500px; border-radius: 5px; overflow: hidden; box-shadow: 0 15px 30px rgba(0,0,0,0.15); transition: 0.5s; }
.square-image-box img { width: 100%; height: 100%; object-fit: cover; }
.square-image-box:hover { transform: scale(1.02); }

/* ------------------------------------------------------------- */
/* 🚀 HERO SECTION | KARABAY DESIGN                              */
/* ------------------------------------------------------------- */
.p-top-fix { padding-top: 150px; overflow: visible; }
.full-screen-section { min-height: 100vh; padding: 100px 0; display: flex; align-items: center; justify-content: center; }

#home .container { max-width: 1500px !important; }
.hero-row { display: flex; align-items: center; justify-content: space-between; gap: 80px; }

.hero-text { flex: 0 0 35%; z-index: 2; } 
.hero-img { flex: 0 0 65%; display: flex; justify-content: flex-end; position: relative; }

.hero-img img { 
    width: 100%; height: auto; border-radius: 30px; 
    box-shadow: 40px 40px 0px rgba(243, 216, 206, 1.0), 0 20px 60px rgba(0,0,0,0.15); 
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); 
}
.hero-img img:hover { transform: scale(1.02); }

/* BAŞLIK VE PARAGRAF BOYUTLARI ŞİŞİRİLDİ */
.badge-champagne { background: var(--champagne); color: var(--blood); padding: 8px 20px; border-radius: 30px; font-weight: 800; font-size: 16px; letter-spacing: 2px; text-transform: uppercase; }
.hero-text h1 { font-family: var(--font-serif); font-size: 76px; line-height: 1.1; margin: 30px 0; color: var(--text-dark); }
.hero-text p { font-size: 24px; line-height: 1.6; color: #444; margin-bottom: 40px; font-weight: 400; }
.highlight-tan { color: var(--tan); font-style: italic; }

.hero-btns { display: flex; gap: 25px; }
.btn-primary { background: var(--blood); color: white; padding: 20px 50px; border-radius: 50px; font-weight: 800; font-size: 18px; letter-spacing: 2px; text-decoration: none; transition: 0.3s; cursor: pointer; border: none; display: inline-block; }
.btn-primary:hover { background: var(--moss); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(127, 131, 48, 0.3); }
.btn-secondary { border: 2px solid #333; padding: 18px 50px; border-radius: 50px; font-weight: 800; font-size: 18px; letter-spacing: 2px; text-decoration: none; color: #333; transition: 0.3s; display: inline-block; background: transparent; cursor: pointer; }
.btn-secondary:hover { background: #333; color: white; transform: translateY(-5px); }

/* HAKKIMDA BÖLÜMÜ YAZILARI DEVASA YAPILDI */
#about.section-padding { padding: 0 !important; }
.about-row { display: flex; align-items: stretch; gap: 60px; }
.about-image { flex: 1; display: flex; }
.big-photo-full { width: 100%; height: 100%; object-fit: cover; min-height: 600px; border-radius: 10px; }
.about-content { flex: 1; z-index: 2; padding: 40px 0; display: flex; flex-direction: column; justify-content: center; }

.sub-title { color: var(--blood); font-weight: 800; letter-spacing: 3px; font-size: 16px; display: block; margin-bottom: 15px; text-transform: uppercase; }
.fancy-font { font-family: var(--font-serif); font-size: 56px; margin-bottom: 35px; line-height: 1.15; color: var(--text-dark); }
.lead-text { font-size: 26px; color: var(--text-dark); font-weight: 700; line-height: 1.6; margin-bottom: 25px !important; }
.magazine-text p { font-family: var(--font-serif); font-size: 22px; line-height: 1.8; margin-bottom: 25px; color: #333; text-align: justify; }
.signature { font-family: var(--font-serif); font-size: 36px; margin-top: 30px; color: var(--gold); font-style: italic; }
.text-blood { color: var(--blood); font-style: italic; }

/* HEDEFLER BÖLÜMÜ YAZILARI BÜYÜTÜLDÜ */
.split-columns { display: flex; align-items: center; gap: 80px; }
.text-col { flex: 1; } .image-col { flex: 1; display: flex; justify-content: center; height: 500px; }
.section-title { font-family: var(--font-serif); font-size: 52px; margin-bottom: 20px; line-height: 1.2; color: var(--text-dark); }
.big-desc { font-size: 28px; font-weight: 700; color: var(--blood); margin-bottom: 30px; line-height: 1.5; }
.desc { font-size: 20px; color: #555; line-height: 1.8; }
.text-center { text-align: center; margin-bottom: 60px; }

/* HİZMETLER BÖLÜMÜ BAŞLIKLARI BÜYÜTÜLDÜ */
.modern-font { font-family: 'Montserrat', sans-serif !important; font-weight: 800; letter-spacing: 2px; }
.modern-font-h2 { font-family: 'Montserrat', sans-serif !important; font-weight: 900; font-size: 48px; letter-spacing: -1px; margin-bottom: 15px; }

/* ------------------------------------------------------------- */
/* 💎 SERVICES UI BY KARABAY DESIGN                              */
/* ------------------------------------------------------------- */

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

.service-card { background: var(--bg-tan-soft); border-radius: 20px; text-align: center; height: 380px; position: relative; overflow: hidden !important; border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 15px 40px rgba(0,0,0,0.04); transition: all 0.4s ease; }
.service-card:hover { transform: translateY(-10px); border-bottom: 4px solid var(--blood); }
.card-content { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; opacity: 1; z-index: 5; background: inherit; padding: 20px; }
.service-card:hover .card-content { transform: translateY(-50px); opacity: 0.15; } 

.icon-box { font-size: 60px; color: var(--blood); margin-bottom: 25px; transition: 0.3s; }
.service-card h4 { font-family: var(--font-serif); font-size: 26px; padding: 0 20px; line-height: 1.3; }

.card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 20px; opacity: 0; transform: translateY(100%); transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 10; border-radius: inherit; pointer-events: none; }
.service-card:hover .card-overlay { opacity: 1; transform: translateY(0); pointer-events: auto; }

.ov-icon-btn { position: relative; display: flex; align-items: center; justify-content: center; width: 65px; height: 65px; border-radius: 50%; background: #fff; font-size: 30px; cursor: pointer; text-decoration: none; box-shadow: 0 10px 25px rgba(0,0,0,0.1); transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
.ov-icon-btn.wp { color: #25D366; border: 2px solid rgba(37, 211, 102, 0.3); }
.ov-icon-btn.insta { color: #E1306C; border: 2px solid rgba(225, 48, 108, 0.3); }
.ov-icon-btn.mail { color: #c0392b; border: 2px solid rgba(192, 57, 43, 0.3); }

.ov-icon-btn.wp:hover { background: #25D366; color: #fff; border-color: #25D366; box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5); transform: translateY(-8px) scale(1.1); }
.ov-icon-btn.insta:hover { background: #E1306C; color: #fff; border-color: #E1306C; box-shadow: 0 15px 30px rgba(225, 48, 108, 0.5); transform: translateY(-8px) scale(1.1); }
.ov-icon-btn.mail:hover { background: #c0392b; color: #fff; border-color: #c0392b; box-shadow: 0 15px 30px rgba(192, 57, 43, 0.5); transform: translateY(-8px) scale(1.1); }

.ov-icon-btn::before { content: attr(data-title); position: absolute; bottom: 125%; left: 50%; transform: translateX(-50%) translateY(15px) scale(0.8); background: #222; color: #fff; padding: 8px 18px; font-size: 14px; font-weight: 700; border-radius: 30px; white-space: nowrap; opacity: 0; pointer-events: none; box-shadow: 0 8px 20px rgba(0,0,0,0.2); transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.ov-icon-btn::after { content: ''; position: absolute; bottom: 110%; left: 50%; transform: translateX(-50%) translateY(15px) scale(0.8); border-width: 8px; border-style: solid; border-color: #222 transparent transparent transparent; opacity: 0; pointer-events: none; transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.ov-icon-btn:hover::before, .ov-icon-btn:hover::after { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }

/* ------------------------------------------------------------- */
/* --- KAYAN GALERİ --- */
/* ------------------------------------------------------------- */

.marquee-wrapper { width: 100%; overflow: hidden; padding: 40px 0; display: flex; }
.marquee-track { display: flex; width: max-content; animation: scrollGallery 90s linear infinite; }

@keyframes scrollGallery { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(-50%); } 
}

.gallery-item { 
    flex: 0 0 auto; width: 800px; height: 550px; margin-right: 40px; 
    border-radius: 15px; overflow: hidden; cursor: zoom-in; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.1); position: relative; transition: 0.4s ease;
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s ease; }

.gallery-item::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg); transition: none; z-index: 2; pointer-events: none; 
}

.gallery-item:hover { box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4); } 
.gallery-item:hover img { transform: scale(1.03); filter: brightness(1.15); }
.gallery-item:hover::after { animation: shineGallery 0.9s forwards; }
@keyframes shineGallery { 100% { left: 200%; } }

/* ------------------------------------------------------------- */
/* --- LİGHTBOX EKRANI (LED ÇİZGİLİ OKLAR VE THUMBNAILS) --- */
/* ------------------------------------------------------------- */

#lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 99999; flex-direction: column; justify-content: center; align-items: center; }
.lb-content { display: flex; align-items: center; justify-content: center; position: relative; width: 90%; max-width: 1200px; height: 75vh; margin-bottom: 20px; }
#lightbox-img { max-width: 100%; max-height: 100%; border-radius: 10px; box-shadow: 0 15px 50px rgba(0,0,0,0.4); transition: opacity 0.3s ease; }

.close-lb { position: absolute; top: 30px; right: 50px; color: rgba(255,255,255,0.6); font-size: 60px; font-weight: 300; cursor: pointer; transition: 0.3s; z-index: 10; line-height: 0.8; }
.close-lb:hover { color: white; transform: rotate(90deg); text-shadow: 0 0 20px rgba(255,255,255,0.8); }

.lb-btn { position: absolute; top: 50%; transform: translateY(-50%); background: transparent; border: none; cursor: pointer; padding: 20px 30px; width: 80px; height: 100px; transition: all 0.3s ease; outline: none; }
.lb-btn::before { content: ''; position: absolute; top: 50%; left: 50%; width: 40px; height: 40px; border-top: 3px solid rgba(255, 255, 255, 0.4); border-left: 3px solid rgba(255, 255, 255, 0.4); transition: all 0.3s ease; }

.lb-prev { left: -100px; } .lb-next { right: -100px; }
.lb-prev::before { transform: translate(-30%, -50%) rotate(-45deg); }
.lb-next::before { transform: translate(-70%, -50%) rotate(135deg); }

.lb-btn:hover::before { border-color: #fff; filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 20px var(--gold)); }
.lb-prev:hover::before { transform: translate(-40%, -50%) rotate(-45deg) scale(1.15); }
.lb-next:hover::before { transform: translate(-60%, -50%) rotate(135deg) scale(1.15); }

.lb-thumbnails { display: flex; gap: 20px; max-width: 90%; overflow-x: auto; padding: 15px 0; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.4) transparent; }
.lb-thumbnails::-webkit-scrollbar { height: 8px; }
.lb-thumbnails::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.4); border-radius: 10px; }

.lb-thumb { width: 120px; height: 80px; object-fit: cover; border-radius: 10px; cursor: pointer; opacity: 0.4; transition: all 0.3s ease; border: 3px solid transparent; }
.lb-thumb:hover { opacity: 0.8; }
.lb-thumb.active { opacity: 1; border-color: var(--gold); transform: scale(1.15); box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6); }

/* DİĞER ARAÇLAR VE SSS */
.bmi-wrapper { display: flex; align-items: center; gap: 60px; background: white; padding: 60px; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.05); }
.bmi-text { flex: 1; }
.bmi-calculator-stylish { flex: 1; background: #fff; padding: 15px; }
.input-line { position: relative; margin-bottom: 30px; }
.input-line label { display: block; font-size: 14px; color: #999; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; }
.input-line input { width: 100%; padding: 12px 0; border: none; border-bottom: 2px solid #eee; font-family: var(--font-serif); font-size: 24px; color: var(--text-dark); background: transparent; transition: 0.3s; }
.input-line input:focus { outline: none; border-bottom-color: var(--blood); }
.btn-calculate { width: 100%; background: var(--blood); color: white; border: none; padding: 25px; font-weight: 800; font-size: 18px; cursor: pointer; transition: 0.3s; margin-top: 15px; letter-spacing: 2px; border-radius: 10px;}
.btn-calculate:hover { background: var(--text-dark); letter-spacing: 4px; }
.result-box { margin-top: 25px; text-align: center; border-top: 1px solid #eee; padding-top: 25px; }

.faq-wrapper { max-width: 900px; margin: 0 auto; }
.faq-item { margin-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,0.05); }
.faq-question { width: 100%; text-align: left; padding: 25px; background: white; border: none; font-family: var(--font-serif); font-size: 22px; color: var(--text-dark); font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; border-radius: 8px; transition: 0.3s; }
.faq-question:hover { background: rgba(255,255,255,0.8); color: var(--blood); padding-left: 35px; }
.faq-question i { transition: 0.3s; }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: white; padding: 0 25px; }
.faq-answer p { padding: 25px 0; color: #555; font-size: 18px; line-height: 1.8; }

#contact-area { background: white; border-top: 1px solid #eee; padding-bottom: 100px; }
.cta-buttons { display: flex; justify-content: center; gap: 25px; margin-top: 30px; flex-wrap: wrap; margin-bottom: 80px; }
.btn-cta { padding: 20px 45px; border-radius: 50px; font-weight: 800; text-decoration: none; display: flex; align-items: center; gap: 15px; transition: 0.3s; font-size: 18px; color: white; letter-spacing: 1px;}
.btn-whatsapp { background: #25D366; } .btn-insta { background: #E1306C; } .btn-mail { background: var(--text-dark); }
.btn-cta:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }
.mt-100 { margin-top: 100px; }
.address-title { font-size: 16px; letter-spacing: 3px; color: var(--gold); font-weight: 800; text-transform: uppercase; margin-bottom: 15px; }
.map-title { font-family: var(--font-serif); font-size: 42px; color: var(--blood); margin-bottom: 15px; }
.map-address { margin-bottom: 40px; font-size: 20px; color: #444; }
.map-frame { border-radius: 30px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.15); }

/* EKSTRA HİZMETLER ANİMASYONU */
.extra-content-hidden { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 1s ease-in-out, opacity 0.8s ease-in-out; }
.extra-content-visible { max-height: 2000px; opacity: 1; margin-top: 30px; }
.mt-30 { margin-top: 30px; }

/* SABİT VKİ BUTONU */
#bmi-sticky-tab {
    position: fixed; top: 50%; right: 0; transform: translateY(-50%) translateX(100px); 
    background: linear-gradient(135deg, var(--gold), #b89628); color: white; padding: 25px 12px;
    border-top-left-radius: 15px; border-bottom-left-radius: 15px; cursor: pointer; z-index: 9995;
    box-shadow: -4px 5px 20px rgba(0,0,0,0.25); display: flex; flex-direction: column; align-items: center;
    gap: 12px; font-weight: 900; writing-mode: vertical-rl; text-orientation: mixed; letter-spacing: 2px;
    opacity: 0; visibility: hidden; transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); 
}
#bmi-sticky-tab.bmi-sticky-visible { transform: translateY(-50%) translateX(0); opacity: 1; visibility: visible; }
#bmi-sticky-tab:hover { background: linear-gradient(135deg, var(--blood), #3e0b02); padding-right: 25px; box-shadow: -6px 8px 25px rgba(0,0,0,0.35); }
#bmi-sticky-tab i { font-size: 26px; margin-bottom: 5px; transform: rotate(90deg); text-shadow: 0 2px 5px rgba(0,0,0,0.2); }

/* MODAL OVERLAY VE KUTUSU */
.bmi-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); z-index: 10005; display: none; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.4s ease; }
.bmi-modal-box { background: white; padding: 50px; border-radius: 25px; width: 90%; max-width: 800px; position: relative; box-shadow: 0 30px 80px rgba(0,0,0,0.5); transform: scale(0.7); opacity: 0; transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.bmi-overlay.active { display: flex; opacity: 1; }
.bmi-overlay.active .bmi-modal-box { transform: scale(1); opacity: 1; }
.close-bmi-btn { position: absolute; top: 20px; right: 25px; font-size: 35px; cursor: pointer; color: #999; transition: 0.3s; line-height: 0.6; }
.close-bmi-btn:hover { color: var(--blood); transform: rotate(90deg); }
.bmi-content-layout { display: flex; gap: 50px; align-items: center; }
.bmi-header-side { flex: 1; border-right: 2px solid #f0f0f0; padding-right: 30px; }
.modal-ver { flex: 1; padding: 0 !important; box-shadow: none !important; }

/* YENİ RANDEVU BUTONU STİLLERİ */
.sticky-app-wrapper { position: fixed; bottom: 30px; right: 30px; z-index: 9998; display: flex; flex-direction: column; align-items: center; gap: 15px; }
#main-app-btn { background: #14453D !important; color: white; border: none; padding: 20px 45px; border-radius: 50px; font-family: var(--font-sans); font-weight: 900; font-size: 18px; cursor: pointer; box-shadow: 0 10px 25px rgba(20, 69, 61, 0.4) !important; display: flex; align-items: center; gap: 12px; position: relative; overflow: hidden; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
#main-app-btn:hover { transform: scale(1.1); background: #0d2c27 !important; }
#main-app-btn::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); transition: none; }
#main-app-btn:hover::after { animation: shine 0.75s; }
@keyframes shine { 100% { left: 150%; } }

.app-options-menu { display: flex; flex-direction: column-reverse; gap: 10px; margin-bottom: 5px; }
.app-bubble { width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 28px; text-decoration: none; box-shadow: 0 5px 15px rgba(0,0,0,0.2); transform: translateY(20px) scale(0.5); opacity: 0; visibility: hidden; transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); position: relative; }
.app-bubble.wp { background: #25D366; } .app-bubble.insta { background: linear-gradient(45deg, #405de6, #833ab4, #e1306c); } .app-bubble.mail { background: #ea4335; }
.app-options-menu.active .app-bubble { transform: translateY(0) scale(1); opacity: 1; visibility: visible; }
.app-options-menu.active .app-bubble:nth-child(1) { transition-delay: 0.1s; } .app-options-menu.active .app-bubble:nth-child(2) { transition-delay: 0.2s; } .app-options-menu.active .app-bubble:nth-child(3) { transition-delay: 0.3s; }
.app-bubble:hover { transform: scale(1.2) !important; }
.app-bubble::before { content: attr(title); position: absolute; right: 80px; background: rgba(0,0,0,0.8); color: white; padding: 8px 15px; border-radius: 5px; font-size: 14px; font-weight: 700; opacity: 0; transition: 0.3s; pointer-events: none; white-space: nowrap; }
.app-bubble:hover::before { opacity: 1; right: 75px; }

/* ================= HERO NAVBAR ÇAKIŞMA GÜVENLİĞİ ================= */
@media (min-width: 901px) {
    .p-top-fix {
        padding-top: 190px;
    }
}

/* ================= HERO BADGE KALDIRMA ================= */
.hero-text .badge-champagne {
    display: none !important;
}

.hero-text h1 {
    margin-top: 10px;
}

/* ================= SERVICES — SADECE BALON ÇIKSIN ================= */
.service-card:hover .card-content {
    transform: none !important;
    opacity: 1 !important;
}

.card-overlay {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    top: auto;
    bottom: 18px;
    height: auto;
    padding: 0;

    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;
}

.service-card:hover .card-overlay {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.service-card .ov-icon-btn {
    transform: translateY(25px) scale(0.9);
    opacity: 0;
    transition: all 0.35s ease;
}

.service-card:hover .ov-icon-btn {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.service-card:hover .ov-icon-btn:nth-child(1) {
    transition-delay: 0.05s;
}
.service-card:hover .ov-icon-btn:nth-child(2) {
    transition-delay: 0.1s;
}
.service-card:hover .ov-icon-btn:nth-child(3) {
    transition-delay: 0.15s;
}

/* ================= CTA SMART PULSE ================= */
.cta-idle {
    animation: ctaIdlePulse 2.6s ease-in-out infinite;
}

@keyframes ctaIdlePulse {
    0%,100% {
        transform: translateY(0);
        box-shadow: 0 8px 22px rgba(122,22,6,.25);
    }
    50% {
        transform: translateY(-2px);
        box-shadow: 0 14px 32px rgba(122,22,6,.35);
    }
}

.cta-glow-once {
    animation: ctaGlowOnce .9s ease;
}

@keyframes ctaGlowOnce {
    0% { box-shadow: 0 0 0 rgba(122,22,6,0); }
    50% { box-shadow: 0 0 30px rgba(122,22,6,.35); }
    100% { box-shadow: 0 8px 22px rgba(122,22,6,.25); }
}

/* ================= MANYETİK KART HAZIRLIK ================= */
.service-card {
    transition: transform .25s ease, box-shadow .25s ease;
    transform-style: preserve-3d;
}

/* ================= TRUST BADGES ================= */
.trust-badges {
    display: flex;
    gap: 18px;
    margin-top: 18px;
    font-size: 14px;
    color: #6b6b6b;
    flex-wrap: wrap;
}

/* ================= SCROLL PROGRESS BAR ================= */
#scroll-progress{
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg,#7a1606,#bfa085);
    z-index: 9999;
    transition: width .15s linear;
}

/* ================= WHATSAPP SMART PULSE ================= */
.app-bubble.wp.smart-pulse{
    animation: wpPulse 2.4s ease-in-out infinite;
}

@keyframes wpPulse{
    0%,100%{
        transform: scale(1);
        box-shadow: 0 6px 18px rgba(37,211,102,.35);
    }
    50%{
        transform: scale(1.08);
        box-shadow: 0 12px 28px rgba(37,211,102,.55);
    }
}

/* ================= FILM GRAIN ================= */
#grain-overlay{
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    opacity: .035;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(0,0,0,.35) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0,0,0,.35) 0%, transparent 40%);
    mix-blend-mode: multiply;
}

/* ================= STAGGER REVEAL ================= */
.scroll-reveal{
    will-change: transform, opacity;
}

.scroll-reveal.active-anim{
    animation: revealStagger .7s cubic-bezier(.22,.61,.36,1) both;
}

@keyframes revealStagger{
    from{
        opacity:0;
        transform: translateY(40px);
    }
    to{
        opacity:1;
        transform: translateY(0);
    }
}

/* ================= MANYETİK CTA ================= */
#main-app-btn.magnetic{
    transition: transform .18s ease;
    will-change: transform;
}

/* ================= TESTIMONIAL & BEFORE AFTER ================= */
.testimonial-track{ display:flex; gap:24px; transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.testimonial-card{ min-width:280px; background:#fff; border-radius:18px; padding:22px; box-shadow:0 10px 30px rgba(0,0,0,.06); }
.ba-wrapper{ position:relative; overflow:hidden; border-radius:18px; }
.ba-after{ position:absolute; inset:0; width:50%; overflow:hidden; }
.ba-handle{ position:absolute; top:0; bottom:0; width:3px; background:#7a1606; left:50%; cursor:ew-resize; }

/* ================= FINAL BOSS PACK ================= */
body.inertia-on{ scroll-behavior:smooth; }
.depth-layer{ transition: filter .6s ease, transform .6s ease; }
.depth-layer.depth-back{ filter: blur(2px); transform: scale(.985); opacity:.92; }
.depth-layer.depth-front{ filter: blur(0); transform: scale(1); opacity:1; }
.soft-shadow{ transition: box-shadow .35s ease, transform .35s ease; }
.soft-shadow.shadow-active{ box-shadow: 0 22px 60px rgba(0,0,0,.14); transform: translateY(-4px); }

/* ================= LEGEND MODE ================= */
:root{ --motion-scale: 1; }
body.low-motion{ --motion-scale: .6; }
body.low-fps{ --motion-scale: .45; }
.scroll-reveal.active-anim{ animation-duration: calc(.7s * var(--motion-scale)); }

.section-breathe{ position: relative; overflow: hidden; }
.section-breathe::after{ content:""; position:absolute; inset:-20%; background: radial-gradient( circle at var(--mx,50%) var(--my,50%), rgba(191,160,133,.18), transparent 60% ); opacity:.6; pointer-events:none; transition: opacity .4s ease; }
body.low-motion .section-breathe::after{ opacity:.35; }

#main-app-btn.heat-attention{ animation: heatBreath 3.2s ease-in-out infinite; }
@keyframes heatBreath{ 0%,100%{ box-shadow: 0 10px 26px rgba(122,22,6,.25); transform: translateY(0); } 50%{ box-shadow: 0 22px 46px rgba(122,22,6,.45); transform: translateY(-2px); } }
body.user-active #main-app-btn.heat-attention{ animation: none; }

/* ================= ABOUT PHOTO — FINAL STICKER MODE ================= */
.about-image{
    background: transparent !important;
    border-radius: 0 !important;
    overflow: visible !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.about-image::after{
    display: none !important;
    content: none !important;
}

.about-image img,
.big-photo-full{
    display: block;
    width: 115% !important;
    max-width: none !important;
    height: auto;
    background: transparent !important;
    mix-blend-mode: normal !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.08)) drop-shadow(0 18px 30px rgba(0,0,0,0.16)) !important;
    object-fit: contain !important;
    transform: scale(1.08) translateZ(0) !important;
    transition: transform .45s cubic-bezier(.22,.61,.36,1), filter .45s ease !important;
    will-change: transform;
    backface-visibility: hidden;
}

.about-image img:hover,
.big-photo-full:hover{
    transform: scale(1.12) translateY(-10px) translateZ(0) !important;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,0.12)) drop-shadow(0 28px 42px rgba(0,0,0,0.22)) !important;
}

/* ================= KLİNİK GALERİ - TEKLEME ÇÖZÜMÜ ================= */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    display: block !important;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 40px; 
    padding-right: 40px; 
    transform: translate3d(0, 0, 0);
    will-change: transform;
    animation: scrollGallery 60s linear infinite !important; 
}

.gallery-item {
    flex: 0 0 auto;
    width: 800px;
    height: 550px;
    margin-right: 0 !important;
    position: relative;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@keyframes scrollGallery {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

/* ================= HAKKIMDA BÖLÜMÜ KAYMA (REVEAL) ================= */
.scroll-reveal.from-left {
    opacity: 0 !important;
    transform: translateX(-100px) !important;
    transition: all 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) !important;
}
.scroll-reveal.from-left.active-anim {
    opacity: 1 !important;
    transform: translateX(0) !important;
    animation: none !important;
}

.scroll-reveal.from-right {
    opacity: 0 !important;
    transform: translateX(100px) !important;
    transition: all 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) !important;
}
.scroll-reveal.from-right.active-anim {
    opacity: 1 !important;
    transform: translateX(0) !important;
    animation: none !important;
}

section#about .about-image.scroll-reveal {
    opacity: 0 !important;
    transform: translateX(-100px) !important;
    transition: all 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) !important;
}

section#about .about-content.scroll-reveal {
    opacity: 0 !important;
    transform: translateX(100px) !important;
    transition: all 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) !important;
}

section#about .about-image.scroll-reveal.active-anim,
section#about .about-content.scroll-reveal.active-anim {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

section#about .about-image img.big-photo-full {
    transform: scale(1.04) !important; 
}
section#about .about-image img.big-photo-full:hover {
    transform: scale(1.07) translateY(-8px) !important; 
}

/* --- DANIŞMANLIKLAR KARTLARI (Çok Soft Zemin, Koyu İkonlar) --- */
.service-card {
    background: #FDF5F5 !important;
    border: none !important;
    box-shadow: 0 15px 35px rgba(74, 59, 50, 0.05) !important;
}
.service-card:nth-child(n) {
    background: #FDF5F5 !important; 
}
.service-card:hover {
    border-bottom: 4px solid #14453D !important;
}
.service-card .icon-box {
    color: #4A3B32 !important;
}
.service-card h4 {
    color: #4A3B32 !important;
}

/* --- GİZLİ FOOTER (Koyu Lüks Renk ve Animasyonlar) --- */
#secret-footer {
    background: #2b1f1c !important; 
    color: #FCF9F6 !important;
}
#secret-footer h3, #secret-footer h4, #secret-footer i, .f-desc {
    color: #FCF9F6 !important; 
}

/* ================= FOOTER LİNKLERİ VE HİZALAMA ================= */
.f-col ul li {
    display: block; 
}

.f-col ul li a {
    display: flex; 
    align-items: flex-start; 
    gap: 15px; 
    color: #FCF9F6 !important;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    line-height: 1.6;
}

.f-col ul li a i {
    margin-top: 4px; 
    color: #DFBD69 !important; 
    font-size: 18px;
    min-width: 20px; 
    transition: all 0.3s ease;
}

.f-col ul li a:hover {
    color: #DFBD69 !important; 
    transform: translateX(10px); 
}
.f-col ul li a:hover i {
    transform: scale(1.1); 
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05); 
    border-radius: 50%;
    color: #DFBD69 !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.socials a:hover {
    background: #DFBD69 !important;
    color: #2b1f1c !important; 
    transform: translateY(-8px) scale(1.1); 
}

/* ===================================================== */
/* 📱 NATIVE MOBİL APP HİSSİYATI (ULTRA UX)              */
/* 🚀 CRAFTED EXCLUSIVELY BY KARABAY DESIGN              */
/* ===================================================== */
@media (max-width: 900px) {

    /* 1. UYGULAMA TEMEL HİSSİYATI */
    html, body {
        overflow-x: hidden !important;
        -webkit-tap-highlight-color: transparent !important; /* Mavi tık parlamasını siler */
        overscroll-behavior-y: none; /* Sayfa sonu zıplamasını engeller */
        background-color: #FCF9F6 !important;
    }

    /* 2. BUZLU CAM (GLASSMORPHISM) NAVBAR */
    .navbar {
        height: 75px !important;
        background: rgba(252, 249, 246, 0.85) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border-bottom: 1px solid rgba(0,0,0,0.03) !important;
        box-shadow: none !important;
        padding: 0 15px !important;
        justify-content: space-between !important;
    }
    
    .logo-hanger {
        position: static !important;
    }
    .logo-hanger img {
        width: 50px !important;
        height: 50px !important;
        border: none !important;
        box-shadow: none !important;
    }

    /* 3. FULL EKRAN APP MENÜSÜ | KARABAY DESIGN */
    .mobile-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(252, 249, 246, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 25px !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateY(-20px) !important;
        transition: opacity 0.4s ease, transform 0.4s ease !important;
        box-shadow: none !important;
        border: none !important;
        z-index: 1000 !important;
    }
    .mobile-menu.active {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }
    .mobile-menu a {
        font-family: var(--font-sans) !important;
        font-size: 26px !important;
        font-weight: 800 !important;
        color: #14453D !important;
        border: none !important;
        padding: 10px !important;
        letter-spacing: 1px !important;
    }

    /* Karabay Design Hamburger İkonu */
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 30px !important;
        height: 22px !important;
        cursor: pointer !important;
        z-index: 1002 !important;
        position: relative !important;
        margin-left: auto !important;
    }
    .hamburger .bar {
        width: 100% !important;
        height: 3px !important;
        background-color: #4A3B32 !important;
        border-radius: 5px !important;
        margin: 0 !important;
        transition: all 0.3s ease !important;
    }

    /* Eski mobil menüleri gizleyelim ki çakışmasın */
    .desktop-menu, .nav-menu-wrapper, .nav-btn-area { display: none !important; }

    /* 4. YUMUŞATILMIŞ BOŞLUKLAR VE TİPOGRAFİ */
    .p-top-fix { padding-top: 110px !important; }
    
    .hero-row, .about-row, .split-columns, .services-grid, .footer-content, .bmi-wrapper { 
        flex-direction: column !important; 
        text-align: center !important; 
    }
    .hero-btns { justify-content: center !important; }
    .reverse-mob { flex-direction: column-reverse !important; }
    
    .hero-row { gap: 40px !important; } 
    .hero-text { flex: 1 !important; padding-right: 0 !important; margin-bottom: 20px !important; }
    .hero-text h1 { font-size: 40px !important; line-height: 1.15 !important; margin-top: 0 !important; }
    .hero-text p { font-size: 18px !important; color: #555 !important; }
    
    .fancy-font, .section-title, .modern-font-h2 { font-size: 34px !important; line-height: 1.2 !important; }
    .magazine-text p, .desc { font-size: 17px !important; text-align: left !important; }
    .lead-text { font-size: 20px !important; }
    
    /* Fotoğraflar Widget Gibi Dursun | Karabay Style */
    .hero-img { flex: 1 !important; width: 100% !important; justify-content: center !important; }
    .hero-img img, .square-image-box img {
        border-radius: 24px !important;
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
        box-shadow: 0 15px 35px rgba(0,0,0,0.08) !important;
        filter: none !important;
    }
    
    .about-image { display: flex !important; height: auto !important; margin-bottom: 30px !important; justify-content: center !important; } 
    .about-image img, .big-photo-full {
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
        filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)) !important;
    }

    /* 5. DANIŞMANLIK KARTLARI (Mobilde Açık UX) */
    .services-grid { gap: 20px !important; padding: 0 10px !important; grid-template-columns: 1fr !important; }
    .service-card {
        height: auto !important;
        padding: 30px 20px !important;
        border-radius: 24px !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.04) !important;
        transform: none !important;
    }
    .service-card .card-content {
        position: relative !important;
        opacity: 1 !important;
        transform: none !important;
        padding: 0 !important;
    }
    .service-card .card-overlay {
        position: relative !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        background: transparent !important;
        bottom: auto !important;
        display: flex !important;
        justify-content: center !important;
        gap: 15px !important;
        margin-top: 25px !important;
    }
    .ov-icon-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
        transform: none !important;
        opacity: 1 !important;
    }

    /* 6. GALERİ - INSTAGRAM TARZI SWIPE (KAYDIRMA) */
    .marquee-wrapper { padding: 20px 0 !important; }
    .marquee-track {
        animation: none !important; /* Mobilde otomatik kaymayı durdur */
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important; /* Cuk diye oturma hissi */
        -webkit-overflow-scrolling: touch !important; /* iOS akıcı kaydırma */
        padding: 0 20px 20px 20px !important;
        gap: 15px !important;
        width: 100vw !important;
        transform: none !important;
    }
    .marquee-track::-webkit-scrollbar { display: none !important; }
    .gallery-item {
        scroll-snap-align: center !important;
        width: 85vw !important; /* Ekrana tam sığsın, azıcık yandakini göstersin */
        height: 60vw !important;
        margin-right: 0 !important;
        border-radius: 20px !important;
        transform: none !important;
    }

    /* 7. SABİT ALT BUTONLAR (APP TAB BAR HİSSİYATI) */
    .sticky-app-wrapper {
        bottom: 20px !important;
        right: 20px !important;
    }
    #main-app-btn {
        padding: 15px 25px !important;
        font-size: 14px !important;
        border-radius: 30px !important;
        box-shadow: 0 10px 25px rgba(20, 69, 61, 0.4) !important;
    }
    .app-bubble { width: 50px !important; height: 50px !important; font-size: 24px !important; }

    /* Soldaki VKİ Butonu (Randevu ile aynı hizaya alındı) */
    #bmi-sticky-tab {
        top: auto !important;
        bottom: 20px !important;
        left: 20px !important;
        right: auto !important;
        transform: translateX(0) translateY(150px) !important; /* Başta gizli */
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
        padding: 15px 20px !important;
        border-radius: 30px !important;
        flex-direction: row !important;
        gap: 8px !important;
        font-size: 14px !important;
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4) !important;
    }
    #bmi-sticky-tab.bmi-sticky-visible {
        transform: translateX(0) translateY(0) !important; /* Kaydırınca alttan çıksın */
    }
    #bmi-sticky-tab i {
        transform: none !important;
        margin-bottom: 0 !important;
    }

    /* 8. DİĞER APP DOKUNUŞLARI VE DÜZENLEMELER */
    .bmi-modal-box { padding: 30px 20px !important; border-radius: 25px !important; width: 95% !important; }
    .bmi-content-layout { flex-direction: column !important; text-align: center !important; }
    .bmi-header-side { border-right: none !important; border-bottom: 2px solid #f0f0f0 !important; padding-bottom: 30px !important; padding-right: 0 !important; }
    .bmi-calculator-stylish { width: 100% !important; margin-top: 30px !important; }
    .btn-calculate { border-radius: 15px !important; }
    
    .faq-question { padding: 20px 15px !important; font-size: 18px !important; }
    .map-frame { border-radius: 24px !important; }
    
    .f-col { align-items: center !important; text-align: center !important; }
    #secret-footer { position: relative !important; z-index: 2 !important; padding-top: 50px !important; }
    .main-content { margin-bottom: 0 !important; }
    
    /* Mobil Lightbox (Tam ekran odaklı) */
    .lb-content { width: 100% !important; height: 50vh !important; }
    .lb-btn::before { width: 30px !important; height: 30px !important; }
    .close-lb { top: 15px !important; right: 20px !important; font-size: 45px !important; }
    .lb-prev { left: 10px !important; }
    .lb-next { right: 10px !important; }
    
    /* Karabay Design Performans Optimizasyonları */
    .magnetic, .service-card { transform: none !important; }
    #grain-overlay { opacity: .02 !important; }
}