/* ========================================
   İzmir Yönetici — Light Theme Stylesheet
   ======================================== */

:root {
  --dark:      #1a2535;
  --dark2:     #2c3e52;
  --dark3:     #3d5166;
  --gold:      #c9a227;
  --gold2:     #e8c04a;
  --gold-light:#fef4d0;
  --white:     #ffffff;
  --off-white: #f8fafc;
  --section:   #f4f7fa;
  --border:    #e0eaf2;
  --text:      #1a2535;
  --text2:     #4a6070;
  --text3:     #8fa3b4;
  --font:      'Inter','Segoe UI',system-ui,sans-serif;
  --radius:    12px;
  --shadow:    0 2px 16px rgba(26,37,53,0.08);
  --shadow-lg: 0 8px 32px rgba(26,37,53,0.12);
  --transition:0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; -webkit-overflow-scrolling: touch; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem,5vw,3.2rem); }
h2 { font-size: clamp(1.6rem,4vw,2.4rem); }
h3 { font-size: clamp(1.1rem,2.5vw,1.4rem); }
h4 { font-size: 1rem; }
.gold { color: var(--gold); }

/* ── UTILITIES ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 80px 0; }
.text-center { text-align: center; }

.section-tag {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title { margin-bottom: 20px; }
.section-subtitle { color: var(--text2); font-size: 1.05rem; max-width: 640px; }
.section-subtitle.center { margin: 0 auto 40px; }

.divider { width: 60px; height: 3px; background: var(--gold); margin: 16px 0 32px; border-radius: 2px; }
.divider--center { margin: 16px auto 32px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 6px;
  font-weight: 600; font-size: .95rem;
  cursor: pointer; border: none; transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--text); }
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,39,.3); }

.btn-outline { background: transparent; color: var(--text); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark2); transform: translateY(-2px); }

.btn-whatsapp { background: #25d366; color: var(--white); }
.btn-whatsapp:hover { background: #1ebc58; transform: translateY(-2px); }

/* ── HEADER ── */
#header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--transition); }

.topbar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 8px 0; font-size: .8rem; color: var(--text2);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left  { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-right { display: flex; gap: 14px; align-items: center; }
.topbar a { color: var(--text2); transition: var(--transition); }
.topbar a:hover { color: var(--gold); }
.topbar .social-icon { width: 20px; height: 20px; fill: var(--text2); transition: var(--transition); vertical-align: middle; }
.topbar .social-icon:hover { fill: var(--gold); }

.navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0; transition: var(--transition);
}
.navbar.scrolled { padding: 8px 0; box-shadow: 0 2px 20px rgba(26,37,53,.08); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { height: 46px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text span:first-child { font-size: 1.05rem; font-weight: 800; color: #1a2535; letter-spacing: .02em; }
.nav-logo-text span:last-child  { font-size: .65rem; color: #c9a227; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 8px 12px; color: var(--text2); font-size: .88rem; font-weight: 500;
  border-radius: 6px; transition: var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold); background: var(--gold-light); }
.nav-cta { margin-left: 8px; }

.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(150deg, #f8fafc 0%, #ffffff 45%, #fef9ee 100%);
  position: relative; display: flex; align-items: center;
  overflow: hidden; padding-top: 120px;
}

.hero-bg {
  position: absolute; inset: 0;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.06; z-index: 0;
}

/* decorative circle */
#hero::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,162,39,.12) 0%, transparent 70%);
  border-radius: 50%; z-index: 0;
}
#hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(201,162,39,.07) 0%, transparent 70%);
  border-radius: 50%; z-index: 0;
}

.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; padding: 60px 0;
}

.hero-text .tag {
  display: inline-block;
  background: var(--gold-light); border: 1px solid rgba(201,162,39,.4);
  color: var(--gold); padding: 6px 16px; border-radius: 50px;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero-text h1 { color: var(--text); margin-bottom: 8px; }
.hero-text h1 span { color: var(--gold); }
.hero-text .subtitle { font-size: 1.05rem; color: var(--text2); margin: 16px 0 32px; max-width: 520px; }

.hero-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.hero-feature  { display: flex; align-items: center; gap: 10px; color: var(--text2); font-size: .92rem; }
.hero-feature-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero right cards */
.hero-cards { display: flex; flex-direction: column; gap: 14px; }
.hero-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
  display: flex; align-items: flex-start; gap: 14px;
  box-shadow: var(--shadow); transition: var(--transition);
}
.hero-card:hover { border-color: var(--gold); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.hero-card-icon {
  width: 42px; height: 42px; background: var(--gold-light);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 1.2rem;
}
.hero-card-title { color: var(--text); font-weight: 700; font-size: .92rem; margin-bottom: 4px; }
.hero-card-desc  { color: var(--text3); font-size: .82rem; line-height: 1.5; }

/* scroll indicator */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center;
  gap: 6px; color: var(--text3); font-size: .73rem;
  letter-spacing: .1em; text-transform: uppercase; animation: bounce 2s infinite;
}
.hero-scroll-wheel { width: 28px; height: 42px; border: 2px solid var(--border); border-radius: 14px; position: relative; }
.hero-scroll-wheel::before {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--gold); border-radius: 2px;
  animation: scroll-dot 2s infinite;
}
@keyframes scroll-dot { 0% { top:6px; opacity:1; } 100% { top:22px; opacity:0; } }
@keyframes bounce { 0%,100% { transform:translateX(-50%) translateY(0); } 50% { transform:translateX(-50%) translateY(-8px); } }

/* ── STATS BAR ── */
.stats-bar { background: var(--gold); padding: 0; }
.stats-bar .container { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { padding: 28px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.3); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 800; color: var(--white); line-height: 1; }
.stat-label  { font-size: .82rem; color: rgba(255,255,255,.8); font-weight: 600; margin-top: 4px; }

/* ── SERVICES ── */
#hizmetler { background: var(--white); }

.services-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-bottom: 56px;
}
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.service-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); background: var(--white); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 54px; height: 54px; background: var(--gold-light);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--gold); }
.service-card h3 { margin-bottom: 10px; font-size: 1.05rem; color: var(--text); }
.service-card p  { color: var(--text2); font-size: .9rem; line-height: 1.65; }

/* ── NEDEN ── */
#neden { background: var(--section); }

.neden-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.neden-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.neden-feature  { display: flex; gap: 16px; align-items: flex-start; }
.neden-feature-icon {
  width: 42px; height: 42px; background: var(--gold-light);
  border: 1px solid rgba(201,162,39,.3);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.neden-feature-text h4 { color: var(--text); margin-bottom: 4px; }
.neden-feature-text p  { color: var(--text2); font-size: .87rem; }

.neden-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.neden-stat {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 20px; text-align: center;
  transition: var(--transition); box-shadow: var(--shadow);
}
.neden-stat:hover { border-color: var(--gold); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.neden-stat-number { font-size: 2.2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.neden-stat-label  { color: var(--text); font-size: .9rem; font-weight: 600; margin-top: 6px; }
.neden-stat-desc   { color: var(--text3); font-size: .75rem; margin-top: 4px; line-height: 1.4; }

/* ── HAKKIMIZDA ── */
#hakkimizda { background: var(--white); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }

.about-image-wrap { position: relative; border-radius: 16px; overflow: hidden; }
.about-image-wrap img { width: 100%; height: 420px; object-fit: cover; border-radius: 16px; }

.about-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--gold); color: var(--text);
  padding: 12px 20px; border-radius: 10px;
  font-weight: 700; font-size: .85rem;
}

.about-placeholder {
  width: 100%; height: 420px;
  background: linear-gradient(135deg, #edf2f7 0%, #f4f7fa 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 28px; padding: 32px;
}
.about-ph-icon {
  font-size: 3.5rem;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(201,162,39,.2));
}

.about-ph-brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: .02em;
}
.about-placeholder-stats { display: flex; gap: 32px; }
.about-ph-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.about-ph-stat span { font-size: 1.6rem; font-weight: 800; color: var(--gold); line-height: 1; }
.about-ph-stat small { font-size: .72rem; color: var(--text3); text-transform: uppercase; letter-spacing: .06em; text-align: center; }
.about-placeholder-tagline { color: var(--text3); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }

.about-text p { color: var(--text2); margin-bottom: 16px; font-size: .97rem; line-height: 1.75; }
.about-checkmarks { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 28px; }
.about-check { display: flex; align-items: center; gap: 10px; color: var(--text2); font-size: .92rem; }
.about-check-icon {
  width: 20px; height: 20px; background: var(--gold-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .7rem; flex-shrink: 0; font-weight: 700;
}
.about-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-weight: 700; font-size: .95rem; transition: var(--transition); margin-top: 8px; }
.about-link:hover { gap: 14px; }

/* ── REFERANSLAR ── */
#referanslar { background: var(--section); }

.refs-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 40px; }

.ref-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/2; cursor: pointer; box-shadow: var(--shadow); }
.ref-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ref-card:hover img { transform: scale(1.08); }

.ref-card--placeholder { background: linear-gradient(135deg, var(--ref-g1), var(--ref-g2)); }
.ref-card-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 4rem; opacity: .15; pointer-events: none; }

.ref-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,37,53,.8) 0%, transparent 55%); display: flex; align-items: flex-end; padding: 16px; }
.ref-card-name { color: var(--white); font-weight: 700; font-size: .92rem; }

/* ── SSS ── */
#sss { background: var(--white); }

.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: flex-start; }
.faq-sidebar { position: sticky; top: 120px; }
.faq-sidebar h2 { margin-bottom: 16px; }
.faq-sidebar p  { color: var(--text2); font-size: .93rem; margin-bottom: 28px; line-height: 1.65; }

.faq-contact-card { background: var(--section); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.faq-contact-card h4 { color: var(--gold); margin-bottom: 8px; }
.faq-contact-card p  { color: var(--text2); font-size: .85rem; margin-bottom: 20px; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--gold); box-shadow: 0 4px 20px rgba(201,162,39,.12); background: var(--white); }

.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 20px 22px; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; text-align: left;
  font-family: var(--font); font-size: .95rem; font-weight: 600;
  color: var(--text); transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }

.faq-icon {
  width: 28px; height: 28px; background: var(--gold-light);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; color: var(--gold);
  flex-shrink: 0; transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--white); transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer-inner { padding: 0 22px 20px; color: var(--text2); font-size: .92rem; line-height: 1.75; }
.faq-answer-inner a      { color: var(--gold); font-weight: 600; text-decoration: underline; }
.faq-answer-inner strong { color: var(--text); }
.faq-answer-inner ul     { padding-left: 18px; list-style: disc; margin-top: 8px; }
.faq-answer-inner ul li  { margin-bottom: 5px; }

/* ── SEO CONTENT ── */
#blog-content { background: var(--section); padding: 80px 0; }

.seo-content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
.seo-article h2 { margin-bottom: 16px; }
.seo-article h3 { margin: 24px 0 10px; color: var(--dark2); }
.seo-article p  { color: var(--text2); font-size: .95rem; line-height: 1.8; margin-bottom: 16px; }
.seo-article a  { color: var(--gold); font-weight: 600; }
.seo-article ul { padding-left: 20px; list-style: disc; }
.seo-article ul li { color: var(--text2); font-size: .93rem; margin-bottom: 6px; }

.seo-sidebar .sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.seo-sidebar .sidebar-card h4 { margin-bottom: 12px; font-size: 1rem; }
.seo-sidebar .sidebar-card ul { display: flex; flex-direction: column; gap: 8px; }
.seo-sidebar .sidebar-card ul li a { color: var(--text2); font-size: .88rem; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.seo-sidebar .sidebar-card ul li a:hover { color: var(--gold); padding-left: 4px; }
.seo-sidebar .sidebar-card ul li a::before { content: '→'; color: var(--gold); }

.review-card { background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 24px; }
.review-card h4 { color: var(--gold); margin-bottom: 10px; }
.review-card p  { color: var(--text2); font-size: .86rem; font-style: italic; line-height: 1.6; }
.review-card cite { display: block; color: var(--gold); font-size: .82rem; margin-top: 10px; font-weight: 700; font-style: normal; }

/* ── İLETİŞİM ── */
#iletisim { background: var(--section); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }

.contact-info h2 { margin-bottom: 16px; }
.contact-info p  { color: var(--text2); font-size: .97rem; margin-bottom: 36px; line-height: 1.7; }

.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon {
  width: 42px; height: 42px; background: var(--gold-light);
  border: 1px solid rgba(201,162,39,.2);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-item-text strong { display: block; color: var(--gold); font-size: .8rem; margin-bottom: 2px; text-transform: uppercase; letter-spacing: .06em; }
.contact-item-text a, .contact-item-text span { color: var(--text2); font-size: .93rem; transition: var(--transition); }
.contact-item-text a:hover { color: var(--gold); }

/* Contact CTA Card */
.contact-cta-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-cta-card h3 {
  font-size: 1.25rem;
  color: var(--text);
}
.contact-cta-card p {
  font-size: 0.93rem;
  color: var(--text2);
  line-height: 1.65;
}
.contact-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-cta-btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 15px;
}
.contact-cta-info {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text2);
}

/* ── FOOTER ── */
#footer { background: var(--off-white); border-top: 1px solid var(--border); padding: 60px 0 0; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }

.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo  { display: flex; align-items: center; gap: 12px; }
.footer-logo img { height: 44px; width: auto; }
.footer-brand-name { display: flex; flex-direction: column; }
.footer-brand-name span:first-child { font-size: 1rem; font-weight: 800; color: var(--text); }
.footer-brand-name span:last-child  { font-size: .65rem; color: var(--gold); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.footer-brand-text { color: var(--text2); font-size: .88rem; line-height: 1.7; max-width: 300px; }

.footer-backlink {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-light); border: 1px solid rgba(201,162,39,.3);
  color: var(--gold); padding: 10px 16px; border-radius: 8px;
  font-size: .85rem; font-weight: 700; transition: var(--transition); width: fit-content;
}
.footer-backlink:hover { background: var(--gold); color: var(--white); }

.footer-col h5 { color: var(--text); font-size: .85rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: var(--text2); font-size: .88rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-col ul li a::before { content: '›'; color: var(--gold); font-size: 1rem; }

.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a {
  width: 36px; height: 36px; background: var(--white);
  border: 1px solid var(--border); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text2); font-size: .9rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-social a svg { fill: currentColor; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: .82rem; color: var(--text3); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: var(--gold); transition: var(--transition); }
.footer-bottom a:hover { text-decoration: underline; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--gold); padding: 50px 0; }
.cta-banner .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-banner h2 { color: var(--text); font-size: clamp(1.3rem,3vw,1.9rem); margin-bottom: 8px; }
.cta-banner p  { color: rgba(26,37,53,.7); font-size: .95rem; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── WHATSAPP ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); font-size: 1.5rem;
  transition: var(--transition); animation: pulse-wa 3s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse-wa { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.4);}50%{box-shadow:0 4px 32px rgba(37,211,102,.65);} }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 100px; right: 28px;
  background: var(--text); color: var(--white);
  padding: 14px 20px; border-radius: 10px; font-size: .88rem;
  border-left: 3px solid var(--gold); box-shadow: var(--shadow-lg);
  z-index: 9999; transform: translateY(20px); opacity: 0;
  transition: var(--transition); pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── AOS ── */
.aos { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.aos.visible { opacity: 1; transform: translateY(0); }
.aos-delay-1 { transition-delay: .1s; }
.aos-delay-2 { transition-delay: .2s; }
.aos-delay-3 { transition-delay: .3s; }
.aos-delay-4 { transition-delay: .4s; }
.aos-delay-5 { transition-delay: .5s; }

/* ── TABLET ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .refs-grid     { grid-template-columns: repeat(2,1fr); }
}

/* ── MOBILE ── */
@media (max-width: 768px) {

  /* === TEMEL: horizontal overflow önle === */
  html, body { overflow-x: hidden; max-width: 100%; }

  .section { padding: 50px 0; }
  .topbar  { display: none; }

  /* === HEADER: backdrop-filter kaldır (scroll performansı) === */
  .navbar {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255,255,255,0.98) !important;
  }

  /* === LOGO === */
  .nav-logo { flex-shrink: 1; min-width: 0; }
  .nav-logo img { height: 32px; width: auto; flex-shrink: 0; }
  .nav-logo-text { display: none; }       /* mobilde metin gizle — sadece logo */
  .hamburger { flex-shrink: 0; margin-left: auto; }

  /* === HAMBURGER === */
  .hamburger { display: flex; position: relative; z-index: 1001; }

  /* === MOBİL MENÜ === */
  .nav-menu {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100vh;
    height: 100dvh;
    width: auto;           /* left+right ile sınırlandırılır — parent padding etkisi yok */
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 20px;
    transform: translateX(-100vw);
    transition: transform .35s ease;
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link {
    font-size: 1.1rem;
    padding: 14px 20px;
    width: 100%;
    text-align: center;
    white-space: nowrap;
  }
  .nav-cta { margin-left: 0; width: 100%; }
  .nav-cta .btn { width: 100%; justify-content: center; margin-top: 8px; }

  /* === HERO === */
  #hero { padding-top: 80px; }
  #hero::before, #hero::after { display: none; } /* büyük daireler taşmayı tetikliyor */
  .hero-content { grid-template-columns: 1fr; gap: 32px; padding: 32px 0; }
  .hero-cards   { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-scroll  { display: none; } /* animasyon kaldır */

  /* === STATS === */
  .stats-bar .container { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.2); }
  .stat-item:last-child,
  .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  /* === HİZMETLER === */
  .services-intro { grid-template-columns: 1fr; gap: 20px; }
  .services-grid  { grid-template-columns: 1fr; }

  /* === NEDEN === */
  .neden-grid  { grid-template-columns: 1fr; gap: 36px; }
  .neden-stats { grid-template-columns: repeat(2,1fr); }

  /* === HAKKIMIZDA === */
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-image-wrap { overflow: visible; display: flex; flex-direction: column; align-items: center; }
  .about-placeholder { height: auto; padding: 32px 20px; gap: 20px; }
  .about-placeholder-stats { width: 100%; justify-content: space-around; gap: 12px; }
  .about-badge { position: static; margin-top: 16px; display: inline-block; width: fit-content; text-align: center; }

  /* === REFERANSLAR === */
  .refs-grid  { grid-template-columns: 1fr 1fr; gap: 12px; }
  #referanslar .text-center .btn {
    white-space: normal;
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding: 14px 16px;
    font-size: .88rem;
  }

  /* === SSS === */
  .faq-layout  { grid-template-columns: 1fr; gap: 28px; }
  .faq-sidebar { position: static; }

  /* === SEO İÇERİK === */
  .seo-content-grid { grid-template-columns: 1fr; }

  /* === İLETİŞİM === */
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-cta-card { padding: 28px 20px; gap: 20px; }

  /* === FOOTER === */
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* === CTA === */
  .cta-banner .container { flex-direction: column; text-align: center; }
  .cta-banner-actions { width: 100%; }
  .cta-banner-actions .btn { width: 100%; justify-content: center; }

  /* === BUTONLAR — taşmayı önle === */
  .btn { white-space: normal; word-break: break-word; }
  .footer-backlink { white-space: normal; }

  /* === WHATSAPP === */
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
  .toast { right: 16px; bottom: 80px; }

  /* === SCROLL PERFORMANSI === */
  .service-card,
  .neden-stat,
  .hero-card,
  .ref-card { will-change: auto; transform: none !important; }

  /* WhatsApp pulse animasyonu kaldır (jank önle) */
  .whatsapp-float { animation: none; }

  /* AOS mobilde basit */
  .aos { transition-duration: .35s; transform: translateY(16px); }

  /* Section'lara contain ekle */
  section { contain: layout style; }
}

/* === 480px altı === */
@media (max-width: 480px) {
  .hero-cards  { grid-template-columns: 1fr; }
  .refs-grid   { grid-template-columns: 1fr; }
  .neden-stats { grid-template-columns: 1fr 1fr; }
  .container   { padding: 0 16px; }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }

  .stat-number { font-size: 1.6rem; }
  .neden-stat-number { font-size: 1.8rem; }
}
