@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
:root { --pink-nav: #C0144E; --pink-navbar-bg: #A50E41; --pink-hero: #D4205F; --pink-btn: #E8186A; --pink-btn-h: #B01048; --pink-light: #FF6BAD; --pink-pale: #FFE8F2; --white: #ffffff; --bg: #ffffff; --text-dark: #1a1a2e; --text-mid: #444; --text-muted: #888; --border: rgba(192,20,78,0.15); --shadow: 0 4px 24px rgba(192,20,78,0.14); --nav-h: 72px; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--bg); color: var(--text-dark); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
body.no-scroll { overflow: hidden; height: 100vh; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
.navbar { position: fixed; inset: 0 0 auto 0; z-index: 300; height: var(--nav-h); background: #b01248; box-shadow: 0 2px 12px rgba(0,0,0,0.18); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 52px; width: auto; display: block; margin-top: 6px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { color: rgba(255,255,255,0.88); font-size: 15px; font-weight: 700; padding: 8px 16px; border-radius: 0; position: relative; transition: color .2s; }
.nav-links a::after { content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: #fff; transition: width .2s; }
.nav-links a:hover, .nav-links a.active { background: transparent; color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: calc(100% - 32px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: #fff; border-radius: 3px; transition: all .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: #b01248; padding: 12px 24px 20px; z-index: 299; flex-direction: column; gap: 4px; box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.9); font-size: 16px; font-weight: 700; padding: 12px 14px; border-radius: 8px; transition: background .2s; }
.mobile-menu a:hover { background: rgba(255,255,255,0.15); }
.hero { min-height: 100vh; padding-top: var(--nav-h); background: linear-gradient(135deg, #b01248 0%, #d4205f 45%, #f0457a 100%); display: grid; grid-template-columns: 1fr 1fr; align-items: center; position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 80px; background: var(--bg); clip-path: ellipse(55% 100% at 50% 100%); }
.hero-left { padding: 60px 48px 80px 72px; display: flex; flex-direction: column; justify-content: center; }
.hero-left h1, .frb-ask { font-size: clamp(22px, 2.8vw, 36px); font-weight: 900; color: #fff; line-height: 1.15; text-transform: uppercase; letter-spacing: .02em; margin-bottom: 32px; text-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.login-card { background: var(--white); border-radius: 18px; padding: 36px 32px; box-shadow: 0 8px 40px rgba(0,0,0,0.18); max-width: 420px; }
h1.login-card-title, .login-card-title { font-size: 20px; font-weight: 800; color: var(--pink-nav); text-align: center; margin-bottom: 24px; line-height: 1.2; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 700; color: var(--text-mid); margin-bottom: 7px; }
.form-label .opt { font-weight: 400; color: var(--text-muted); font-style: italic; margin-left: 4px; }
.form-input { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-family: 'Nunito', sans-serif; font-size: 15px; color: var(--text-dark); background: var(--pink-pale); outline: none; transition: border-color .2s, box-shadow .2s, background .2s; }
.form-input:focus { border-color: var(--pink-btn); box-shadow: 0 0 0 3px rgba(232,24,106,0.12); background: #fff; }
.form-input::placeholder { color: #c09ab0; }
.remember-row { display: flex; align-items: center; gap: 10px; margin: 18px 0 22px; }
.checkbox { width: 18px; height: 18px; border: 2px solid var(--border); border-radius: 5px; appearance: none; background: #fff; cursor: pointer; position: relative; flex-shrink: 0; transition: all .2s; }
.checkbox:checked { background: var(--pink-btn); border-color: var(--pink-btn); }
.checkbox:checked::after { content: ''; position: absolute; left: 4px; top: 1px; width: 6px; height: 9px; border: 2px solid #fff; border-top: none; border-left: none; transform: rotate(45deg); }
.remember-label { font-size: 14px; color: var(--text-muted); cursor: pointer; font-weight: 600; }
.btn-connect { width: 100%; padding: 14px; background: var(--pink-btn); color: #fff; border: none; border-radius: 10px; font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: background .2s, transform .15s, box-shadow .2s; }
.btn-connect:hover { background: var(--pink-btn-h); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(192,20,78,0.35); }
.btn-connect:active { transform: translateY(0); }
@keyframes floatLR { 0% { transform: translateX(0px); } 50% { transform: translateX(-20px); } 100% { transform: translateX(0px); } }
.hero-right { display: flex; align-items: flex-end; justify-content: center; padding: 0 8px 0 0; height: 100%; overflow: hidden; }
.hero-right img { width: 90%; max-width: 640px; object-fit: cover; object-position: bottom; display: block; margin-right: auto; margin-bottom: 0; animation: floatLR 4s ease-in-out infinite; }
.mid-section { background: var(--bg); padding: 60px 0 48px; }
.mid-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.mid-text .section-tag { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--pink-btn); margin-bottom: 12px; }
.mid-text h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: var(--pink-nav); line-height: 1.2; margin-bottom: 18px; }
.mid-text p { font-size: 16px; line-height: 1.8; color: var(--text-mid); margin-bottom: 14px; }
.mid-img { display: flex; align-items: flex-end; }
.mid-img img { width: 100%; border-radius: 0; background: none; display: block; margin-bottom: -8px; }
.features-section { background: #FDF4F8; padding: 48px 0 88px; }
.features-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.features-header { text-align: center; margin-bottom: 48px; }
.features-header h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: var(--pink-nav); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card { background: var(--pink-nav); border-radius: 18px; padding: 36px 24px 32px; text-align: center; transition: transform .25s ease; cursor: default; }
.feature-card:hover { transform: translateY(-8px); }
.feature-icon { font-size: 38px; margin-bottom: 16px; line-height: 1; color: #fff; transition: transform .25s ease; }
.feature-card:hover .feature-icon { transform: scale(1.28); }
.feature-title { font-size: 17px; font-weight: 800; color: #fff; margin-top: 0; margin-bottom: 10px; line-height: normal; }
.feature-desc { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.6; }
.site-footer { background: #b01248; padding: 60px 0 0; }
.footer-grid { max-width: 900px; margin: 0 auto 24px; padding: 0 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; align-items: start; }
.footer-col h4 { font-size: 15px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: #ffffff; margin-bottom: 20px; }
.footer-col ul { padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 15px; font-weight: 500; color: #ffffff; transition: color .2s, padding-left .2s; display: flex; align-items: center; gap: 6px; }
.footer-col a::before { content: '»'; color: rgba(255,255,255,0.6); font-size: 16px; font-weight: 700; }
.footer-col a:hover { color: rgba(255,255,255,0.75); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 48px 20px; display: flex; justify-content: space-between; align-items: center; max-width: 900px; margin: 0 auto; gap: 0; width: 100%; box-sizing: border-box; }
.footer-bottom .fb-copy { font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 400; white-space: nowrap; }
.footer-bottom .fb-copy a { color: #fff; font-weight: 600; }
.footer-bottom .fb-credit { font-size: 13px; color: rgba(255,255,255,0.75); font-style: italic; white-space: nowrap; text-align: center; }
.footer-bottom .fb-credit span { color: #fff; font-weight: 700; font-style: normal; }
.footer-bottom .fb-slogan { font-size: 13px; color: rgba(255,255,255,0.8); font-style: italic; white-space: nowrap; }
.page-hero { padding-top: var(--nav-h); background: linear-gradient(135deg, #b01248 0%, #d4205f 45%, #f0457a 100%); min-height: 280px; display: flex; align-items: flex-end; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200'%3E%3Cpath fill='rgba(255,255,255,0.06)' d='M0,100 C360,180 1080,20 1440,100 L1440,200 L0,200Z'/%3E%3C/svg%3E") bottom/cover no-repeat; pointer-events: none; }
.page-hero::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 60px; background: var(--bg); clip-path: ellipse(55% 100% at 50% 100%); }
.page-hero-inner { max-width: 1200px; margin: 0 auto; padding: 40px 48px 72px; position: relative; z-index: 1; }
.breadcrumb { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.7); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; color: #fff; }
.page-hero h1 em { color: #fff; font-style: normal; }
.about-section { padding: 88px 0; background: var(--bg); }
.about-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img img { width: 100%; border-radius: 0; }
.about-text .section-tag { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--pink-btn); background: var(--pink-pale); padding: 4px 12px; border-radius: 20px; margin-bottom: 16px; }
.about-text h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: var(--pink-nav); line-height: 1.2; margin-bottom: 18px; }
.about-text p { font-size: 15px; line-height: 1.8; color: var(--text-mid); margin-bottom: 16px; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 32px; }
.astat { background: var(--pink-pale); border-radius: 14px; padding: 18px 12px; text-align: center; }
.astat-num { font-size: 26px; font-weight: 900; color: var(--pink-btn); margin-bottom: 4px; }
.astat-label { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.sohbet-section-centered { min-height: 100vh; height: 100vh; padding-top: var(--nav-h); background: var(--bg); display: flex; align-items: stretch; overflow: hidden; }
.sohbet-centered-inner { width: 100%; display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - var(--nav-h)); }
.sohbet-img-left { background: var(--pink-pale); display: flex; align-items: flex-end; justify-content: center; padding: 0; overflow: hidden; }
.sohbet-img-left img { width: 100%; height: 100%; max-width: 100%; object-fit: contain; object-position: bottom center; border-radius: 0; display: block; padding: 0; box-sizing: border-box; margin-bottom: 0; }
.sohbet-form-center { display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 60px 64px; background: #fff; }
.sohbet-form-center h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 900; color: var(--pink-nav); margin-bottom: 10px; width: 100%; max-width: 480px; text-align: center; }
.sohbet-sub { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; font-weight: 600; width: 100%; max-width: 480px; text-align: center; }
.sohbet-card { width: 100%; max-width: 480px; box-shadow: var(--shadow); background: #fff; border: 1px solid var(--border); }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--pink-btn); margin-top: 18px; transition: gap .2s; align-self: center; }
.back-link-mobile { display: none; }
.sohbet-section { padding: 88px 0; background: var(--bg); }
.sohbet-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.sohbet-img img { width: 100%; border-radius: 0; }
.sohbet-form-wrap h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 900; color: var(--pink-nav); margin-bottom: 8px; }
.sohbet-form-wrap > p { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; font-weight: 600; }
.back-link:hover { gap: 10px; }
.contact-section { padding: 88px 0; background: var(--bg); }
.contact-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-info h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 900; color: var(--pink-nav); line-height: 1.2; margin-bottom: 14px; }
.contact-info > p { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.cicon { width: 42px; height: 42px; border-radius: 10px; background: var(--pink-pale); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; color: var(--pink-btn); }
.ci-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 3px; }
.ci-val { font-size: 15px; font-weight: 700; color: var(--text-dark); }
.ci-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.contact-form-box { background: #FDF4F8; border-radius: 20px; padding: 40px 36px; border: 1px solid var(--border); }
.contact-form-title { font-size: 20px; font-weight: 900; color: var(--pink-nav); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-family: 'Nunito', sans-serif; font-size: 15px; color: var(--text-dark); background: var(--pink-pale); outline: none; resize: vertical; min-height: 120px; transition: border-color .2s, box-shadow .2s; }
.form-textarea:focus { border-color: var(--pink-btn); box-shadow: 0 0 0 3px rgba(232,24,106,0.1); }
.form-success { display: none; text-align: center; padding: 16px 0; }
.form-success.show { display: block; }
.form-success-icon { font-size: 44px; margin-bottom: 10px; }
.form-success h3 { color: var(--pink-nav); margin-bottom: 6px; font-size: 20px; }
.form-success p { color: var(--text-muted); font-size: 14px; }
.faq-section { background: #FDF4F8; padding: 80px 0; }
.faq-inner { max-width: 760px; margin: 0 auto; padding: 0 48px; }
.faq-inner h2 { font-size: 32px; font-weight: 900; color: var(--pink-nav); text-align: center; margin-bottom: 40px; }
.faq-item { background: #fff; border-radius: 14px; border: 1px solid var(--border); margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 18px 22px; background: none; border: none; font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 700; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background .2s; }
.faq-q:hover { background: var(--pink-pale); }
.faq-arrow { color: var(--pink-btn); font-size: 18px; transition: transform .25s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 22px 18px; font-size: 14px; color: var(--text-muted); line-height: 1.75; }
@keyframes floatLR { 0% { transform: translateX(0px); } 50% { transform: translateX(-20px); } 100% { transform: translateX(0px); } }
.hero-right img { animation: floatLR 4s ease-in-out infinite; }
.notfound-section { min-height: calc(100vh - 72px - 280px - 220px); display: flex; align-items: center; justify-content: center; background: var(--bg); padding: 60px 24px; }
.notfound-inner { text-align: center; max-width: 520px; margin: 0 auto; }
.notfound-num { font-size: clamp(100px, 22vw, 160px); font-weight: 900; line-height: 1; background: linear-gradient(135deg, #b01248 0%, #d4205f 50%, #f0457a 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -4px; margin-bottom: 16px; display: block; }
.notfound-title { font-size: clamp(22px, 4vw, 30px); font-weight: 900; color: var(--pink-nav); margin-bottom: 12px; }
.notfound-sub { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 10px; }
.notfound-tag { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--pink-btn); background: var(--pink-pale); padding: 4px 14px; border-radius: 20px; margin-bottom: 20px; }
.notfound-btn { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; padding: 14px 36px; background: var(--pink-btn); color: #fff; border-radius: 10px; font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; transition: background .2s, transform .15s, box-shadow .2s; }
.notfound-btn:hover { background: var(--pink-btn-h); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(192,20,78,0.35); }
@media (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 20px 16px 0; display: flex; flex-direction: column; min-height: auto; justify-content: flex-start; align-items: center; width: 100%; }
  .login-card { order: 1; max-width: 100%; width: 100%; margin-bottom: 0; margin-top: 0; }
  .frb-ask { order: 2; margin-top: 16px; margin-bottom: 0; font-size: 30px; text-align: center; letter-spacing: .04em; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.18); }
  .hero-right { position: static; width: 100%; height: auto; display: flex !important; justify-content: center; align-items: flex-end; overflow: visible; pointer-events: none; }
  .hero-right img { width: 60%; max-width: 260px; height: auto; object-fit: contain; margin: -10px auto 0; animation: none; }
  .hero-right img { width: auto; max-width: 100%; height: 100%; object-fit: contain; object-position: center bottom; margin-left: 0; animation: none; }
  .mid-inner, .about-inner, .sohbet-inner, .contact-inner { grid-template-columns: 1fr; gap: 16px; }
  .mid-section { padding: 20px 0 16px; }
  .mid-img { order: 2; }
  .mid-text { order: 1; }
  .sohbet-section-centered { height: auto; min-height: auto; overflow: visible; }
  .sohbet-centered-inner { min-height: auto; display: flex !important; flex-direction: column !important; }
  .sohbet-form-center { order: 1; padding: 36px 24px 28px; justify-content: flex-start; }
  .back-link-mobile { display: inline-flex; margin-top: 16px; }
  .sohbet-img-left { order: 2; height: 300px; padding: 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 0 24px 20px; text-align: center; }
  .footer-col a { justify-content: center; outline: none; -webkit-tap-highlight-color: transparent; }
  .footer-col a:focus, .footer-col a:focus-visible { outline: none; }
  .footer-col a::before { display: none; }
  .footer-col h4 { text-align: center; font-size: 17px; }
  .footer-col li a { font-size: 17px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; padding: 16px 24px 24px; gap: 8px; }
  .footer-bottom .fb-copy { white-space: normal; text-align: center; }
  .footer-bottom .fb-credit { white-space: normal; text-align: center; }
  .footer-bottom .fb-slogan { white-space: normal; text-align: center; }
  .faq-inner, .features-inner, .mid-inner { padding: 0 16px; }
  .page-hero-inner, .about-inner, .sohbet-inner, .contact-inner { padding: 32px 16px 48px; }
  .contact-inner { padding-top: 40px; }
  .page-hero-inner { padding-bottom: 80px !important; }
  .page-hero h1 { margin-bottom: 5px;}
}
@media (max-width: 560px) {
  body.no-scroll { overflow: auto; height: auto; }
  .features-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-inner { padding: 0 18px; }
}
