/* ═══════════════════════════════════════
   ALPER MAKİNA — Shared Stylesheet
   ═══════════════════════════════════════ */
:root {
  --navy:      #1a3560;
  --navy-dk:   #0f2040;
  --navy-lt:   #254a82;
  --orange:    #f5821f;
  --orange-dk: #d96e10;
  --white:     #ffffff;
  --cream:     #f6f4f0;
  --gray-lt:   #ece9e3;
  --gray:      #d8d3cb;
  --gray-mid:  #9a9590;
  --gray-dk:   #4a4744;
  --text:      #2a2724;
  --green-wa:  #25d366;
  --r:         2px;
  --trans:     0.22s ease;
  --shadow-sm: 0 2px 10px rgba(26,53,96,0.08);
  --shadow-md: 0 8px 28px rgba(26,53,96,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Source Sans 3', 'Segoe UI', sans-serif; font-size: 16px; line-height: 1.65; color: var(--text); background: var(--cream); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; line-height: 1.1; color: var(--navy); }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); }
section { scroll-margin-top: 76px; }
.container { max-width: 1200px; margin: 0 auto; }

/* ── TOP BAR ── */
.topbar { background: var(--navy-dk); padding: 6px 24px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar span, .topbar a { font-size: 0.78rem; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 5px; }
.topbar a:hover { color: var(--orange); }
.topbar-right { display: flex; gap: 18px; }
.topbar i { color: var(--orange); font-size: 0.75rem; }

/* ── HEADER ── */
header { background: var(--white); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--gray-lt); box-shadow: var(--shadow-sm); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
.logo-bar { width: 5px; height: 48px; background: var(--orange); border-radius: 1px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; justify-content: center; }
.logo-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.45rem; font-weight: 900; color: var(--navy); letter-spacing: 0.02em; line-height: 1; }
.logo-sub { font-size: 0.68rem; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; }
nav ul { display: flex; gap: 2px; align-items: center; }
nav ul li a { display: block; padding: 8px 14px; font-size: 0.88rem; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 2px solid transparent; transition: color var(--trans), border-color var(--trans); }
nav ul li a:hover, nav ul li a.active { color: var(--orange); border-bottom-color: var(--orange); }
.header-ctas { display: flex; gap: 8px; align-items: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--navy); transition: all 0.3s; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 24px; font-size: 0.88rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; border: 2px solid transparent; cursor: pointer; transition: all var(--trans); border-radius: var(--r); font-family: inherit; white-space: nowrap; }
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,130,31,0.35); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-white { background: var(--white); color: var(--orange); border-color: var(--white); }
.btn-white:hover { background: var(--cream); }
.btn-wa { background: var(--green-wa); color: var(--white); border-color: var(--green-wa); }
.btn-wa:hover { background: #1fba58; border-color: #1fba58; }
.btn-sm { padding: 8px 16px; font-size: 0.78rem; }

/* ── SECTION HEADER ── */
.sec-header { text-align: center; margin-bottom: 52px; }
.sec-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.sec-bar { width: 44px; height: 3px; background: var(--orange); margin: 12px auto 0; }
.sec-header p { color: var(--gray-mid); max-width: 500px; margin: 14px auto 0; font-size: 0.95rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--navy-dk); padding: 52px 24px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--orange); }
.page-hero::after { content: ''; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px; border: 50px solid rgba(245,130,31,0.06); border-radius: 50%; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); }
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-top: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.5); flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb i { font-size: 0.6rem; }

/* ── CTA BAND ── */
.cta-band { background: var(--navy-dk); padding: 56px 24px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--orange); }
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem,3vw,2.2rem); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.65); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--navy); padding: 36px 24px; }
.trust-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,0.07); }
.trust-item { background: var(--navy); padding: 28px 20px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.trust-icon { width: 44px; height: 44px; border: 1.5px solid rgba(245,130,31,0.35); display: flex; align-items: center; justify-content: center; border-radius: 50%; margin-bottom: 4px; }
.trust-icon i { color: var(--orange); font-size: 1rem; }
.trust-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--white); line-height: 1; }
.trust-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── FOOTER ── */
footer { background: var(--navy-dk); color: rgba(255,255,255,0.65); }
.footer-top { max-width: 1200px; margin: 0 auto; padding: 60px 24px 44px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 44px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-bar { height: 40px; }
.footer-logo .logo-name { font-size: 1.2rem; color: var(--white); }
.footer-logo .logo-sub { color: rgba(255,255,255,0.4); }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; }
.footer-col h4 { color: var(--white); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--orange); display: inline-block; font-family: 'Source Sans 3', sans-serif; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color var(--trans); }
.footer-col ul li a:hover { color: var(--orange); }
.footer-ci { display: flex; gap: 10px; margin-bottom: 13px; font-size: 0.85rem; align-items: flex-start; }
.footer-ci i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.footer-ci a { color: rgba(255,255,255,0.6); transition: color var(--trans); }
.footer-ci a:hover { color: var(--orange); }
.footer-ci span { color: rgba(255,255,255,0.6); line-height: 1.55; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 18px 24px; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 24px; right: 24px; display: flex; align-items: center; gap: 10px; background: var(--green-wa); color: var(--white); font-size: 0.85rem; font-weight: 700; padding: 12px 18px 12px 14px; border-radius: 50px; box-shadow: 0 6px 24px rgba(37,211,102,0.45); z-index: 9999; transition: transform var(--trans), box-shadow var(--trans); }
.wa-float i { font-size: 1.4rem; }
.wa-float:hover { transform: scale(1.05); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }
.wa-pulse { position: absolute; inset: -4px; border-radius: 50px; border: 2px solid rgba(37,211,102,0.35); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{transform:scale(1);opacity:1} 100%{transform:scale(1.18);opacity:0} }
.scroll-top { position: fixed; bottom: 90px; right: 28px; width: 42px; height: 42px; background: var(--navy); color: var(--white); border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(15,32,64,0.25); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .25s, visibility .25s, transform .25s, background .2s; z-index: 9998; }
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--orange); }

/* ── QUICK CONTACT BAR ── */
.quick-contact-bar { background: var(--cream); padding: 32px 24px; border-top: 1px solid var(--gray-lt); }
.qcb-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.qcb-card { background: var(--white); border: 1.5px solid var(--gray-lt); padding: 24px 16px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; transition: all var(--trans); color: inherit; text-decoration: none; }
.qcb-card:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.qcb-card i { font-size: 1.7rem; color: var(--orange); }
.qcb-card i.fa-whatsapp { color: #25d366; }
.qcb-card span { font-size: 0.72rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.1em; }
.qcb-card strong { font-size: 0.9rem; color: var(--gray-dk); font-weight: 600; }
@media(max-width:700px){ .qcb-inner { grid-template-columns: 1fr 1fr; } }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .trust-inner { grid-template-columns: repeat(2,1fr); }
  .header-ctas .btn-wa { display: none; }
}
@media (max-width: 700px) {
  .topbar { display: none; }
  .hamburger { display: flex; }
  nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); border-top: 2px solid var(--gray-lt); box-shadow: var(--shadow-md); padding: 8px 0; }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 0; }
  nav ul li a { padding: 13px 24px; border-bottom: 1px solid var(--gray-lt); }
  .header-ctas { display: none; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
}

.contact-form textarea{max-height:200px;resize:vertical}
