/* Dağlı Grup Enerji - Ana Stil */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --orange:   #E85D04;
  --gold:     #FAA307;
  --dark:     #1a1a2e;
  --light:    #F8F6F1;
  --light-2:  #EEEAE0;
  --white:    #ffffff;
  --text:     #1C1C1C;
  --text-mid: #4A4A4A;
  --text-dim: #888;
  --border:   #E0DDD5;
}
html { scroll-behavior: smooth; }
body { background: var(--light); color: var(--text); font-family: "Barlow", sans-serif; overflow-x: hidden; }

/* ── CURSOR ── */
@media (pointer: fine) {
  body { cursor: none; }
  #cursor {
    width: 12px; height: 12px; background: var(--orange); border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 99999;
    top: 0; left: 0; will-change: transform;
    transform: translate(-100px, -100px);
    transition: width .18s ease, height .18s ease;
  }
  #cursor-ring {
    width: 36px; height: 36px; border: 2px solid var(--orange); border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 99998;
    top: 0; left: 0; will-change: transform;
    transform: translate(-100px, -100px);
    opacity: .5; transition: width .18s ease, height .18s ease;
  }
}
@media (pointer: coarse) { #cursor, #cursor-ring { display: none !important; } }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 60px; display: flex; justify-content: space-between; align-items: center;
  background: rgba(248,246,241,0); transition: all .35s ease;
}
nav.scrolled {
  background: rgba(248,246,241,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); padding: 14px 60px;
  box-shadow: 0 2px 24px rgba(0,0,0,.06);
}
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 38px; height: 38px; background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  font-size: 1.1rem; flex-shrink: 0;
}
.logo-text { font-family: "Barlow Condensed", sans-serif; font-weight: 900; line-height: 1.1; }
.logo-text .l1 { color: var(--orange); display: block; font-size: 1.35rem; letter-spacing: 1px; text-transform: uppercase; }
.logo-text .l2 { color: var(--text-mid); display: block; font-size: .78rem; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-family: "Barlow Condensed", sans-serif; font-size: .9rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--text-mid); text-decoration: none;
  transition: color .2s; position: relative;
}
.nav-links a::after { content: ""; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--orange); transition: width .3s; }
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--orange) !important; color: #fff !important; padding: 10px 22px; border-radius: 2px; font-weight: 700 !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--dark) !important; color: #fff !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; z-index: 1100; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--orange); border-radius: 2px; transition: all .3s; }
.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); }

.mobile-menu {
  display: none; position: fixed; inset: 0; background: rgba(248,246,241,.99);
  z-index: 1050; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  opacity: 0; transform: translateY(-14px); transition: opacity .3s, transform .3s; pointer-events: none;
}
.mobile-menu.active { opacity: 1; transform: translateY(0); pointer-events: all; }
.mobile-menu a { font-family: "Barlow Condensed", sans-serif; font-size: 2.8rem; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; color: var(--text); text-decoration: none; padding: 6px 0; transition: color .2s; }
.mobile-menu a:hover, .mobile-menu a:active { color: var(--orange); }
.mobile-menu .m-cta { margin-top: 24px; background: var(--orange); color: #fff !important; padding: 14px 48px; font-size: 1.5rem; border-radius: 2px; }

/* ── HERO ── */
.hero { min-height: 100vh; position: relative; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: 140px 60px 160px; background: var(--light); }
.hero::before { content: ""; position: absolute; top: 0; right: 0; width: 45%; height: 100%; background: linear-gradient(160deg, #FFF5E6 0%, #FDEAC8 50%, #F8E0A0 100%); clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%); }
.hero-grid-lines { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(232,93,4,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(232,93,4,.04) 1px, transparent 1px); background-size: 60px 60px; }
.hero-deco { position: absolute; right: 2%; top: 50%; transform: translateY(-50%); font-family: "Barlow Condensed", sans-serif; font-weight: 900; font-size: 22vw; color: var(--orange); opacity: .06; line-height: 1; pointer-events: none; user-select: none; text-transform: uppercase; }
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,93,4,.08); border: 1px solid rgba(232,93,4,.2); padding: 6px 16px; margin-bottom: 28px; font-family: "Barlow Condensed", sans-serif; font-size: .8rem; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); }
.hero-badge::before { content: ""; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.15} }
.hero-title { font-family: "Barlow Condensed", sans-serif; font-weight: 900; font-size: clamp(3.6rem, 7.5vw, 8rem); line-height: .9; text-transform: uppercase; letter-spacing: -2px; margin-bottom: 28px; }
.hero-title .l1 { display: block; color: var(--text); }
.hero-title .l2 { display: block; color: var(--orange); }
.hero-title .l3 { display: block; color: var(--text); }
.hero-desc { font-size: 1.1rem; color: var(--text-mid); max-width: 480px; line-height: 1.75; margin-bottom: 44px; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 40px; }
.pill { display: flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--border); padding: 8px 16px; font-family: "Barlow Condensed", sans-serif; font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-mid); transition: all .25s; }
.pill:hover { border-color: var(--orange); color: var(--orange); }
.pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.hero-stats { position: relative; z-index: 2; display: flex; gap: 0; margin-top: 64px; border-top: 2px solid var(--border); }
.stat-item { padding: 28px 48px 28px 0; }
.stat-item + .stat-item { padding-left: 48px; border-left: 1px solid var(--border); }
.stat-num { font-family: "Barlow Condensed", sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--orange); line-height: 1; }
.stat-label { font-size: .76rem; color: var(--text-dim); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }
.scroll-hint { position: absolute; bottom: 40px; left: 60px; z-index: 2; display: flex; align-items: center; gap: 10px; font-family: "Barlow Condensed", sans-serif; font-size: .75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-dim); }
.scroll-hint::before { content: ""; width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, var(--orange)); animation: scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim { 0%{transform:scaleY(0);transform-origin:top}49%{transform:scaleY(1);transform-origin:top}50%{transform:scaleY(1);transform-origin:bottom}100%{transform:scaleY(0);transform-origin:bottom} }

/* ── BUTTONS ── */
.btn-primary { background: var(--orange); color: #fff; padding: 16px 40px; font-family: "Barlow Condensed", sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: all .3s; border-radius: 2px; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,93,4,.3); }
.btn-secondary { color: var(--text); font-family: "Barlow Condensed", sans-serif; font-size: 1rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; border-bottom: 2px solid var(--border); padding-bottom: 4px; transition: color .2s, border-color .2s; }
.btn-secondary:hover { color: var(--orange); border-color: var(--orange); }

/* ── PARALLAX QUOTE ── */
.parallax-section { position: relative; height: 400px; overflow: hidden; display: flex; align-items: center; background: var(--dark); }
.parallax-bg { position: absolute; inset: -100px; background: linear-gradient(rgba(26,26,46,.88), rgba(26,26,46,.88)), repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(232,93,4,.04) 40px, rgba(232,93,4,.04) 41px); }
.parallax-content { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 60px; text-align: center; }
.parallax-quote { font-family: "Barlow Condensed", sans-serif; font-size: clamp(2rem, 4vw, 4.5rem); font-weight: 700; line-height: 1.15; text-transform: uppercase; letter-spacing: 1px; color: #fff; }
.parallax-quote em { font-style: normal; color: var(--gold); }

/* ── SECTION COMMONS ── */
section { padding: 120px 60px; }
.section-label { font-family: "Barlow Condensed", sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.section-title { font-family: "Barlow Condensed", sans-serif; font-size: clamp(2.4rem, 5vw, 5rem); font-weight: 900; text-transform: uppercase; line-height: .95; letter-spacing: -1px; color: var(--text); }
.section-title span { color: var(--orange); }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 72px; }

/* ── SERVICES ── */
#hizmetler { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.service-card { background: var(--white); padding: 48px 40px 76px; position: relative; overflow: hidden; transition: background .3s; }
.service-card:hover { background: var(--light); }
.service-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.4rem; margin-bottom: 24px; display: block; }
.service-num { font-family: "Barlow Condensed", sans-serif; font-size: 5rem; font-weight: 900; color: rgba(0,0,0,.04); position: absolute; top: 16px; right: 24px; line-height: 1; }
.service-name { font-family: "Barlow Condensed", sans-serif; font-size: 1.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text); margin-bottom: 14px; }
.service-desc { font-size: .9rem; color: var(--text-mid); line-height: 1.75; padding-bottom: 32px; }
.service-arrow { position: absolute; bottom: 28px; right: 28px; width: 36px; height: 36px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-dim); transition: all .3s; }
.service-card:hover .service-arrow { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ── PROJECTS ── */
#calismalari { background: var(--light-2); }
.projects-tabs { display: flex; margin-bottom: 48px; border-bottom: 2px solid var(--border); }
.tab-btn { font-family: "Barlow Condensed", sans-serif; font-size: .88rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 14px 28px; background: none; border: none; color: var(--text-dim); cursor: pointer; position: relative; transition: color .2s; }
.tab-btn::after { content: ""; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--orange); transition: width .3s; }
.tab-btn.active { color: var(--orange); }
.tab-btn.active::after { width: 100%; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.project-item { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--border); cursor: pointer; border-radius: 4px; display: none; }
.project-item.visible { display: block; }
.project-thumb { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; transition: transform .5s ease; }
.project-item:hover .project-thumb { transform: scale(1.06); }
.proj-solar { background: linear-gradient(135deg, #FFF5CC 0%, #FFE066 50%, #FAD000 100%); }
.proj-ev    { background: linear-gradient(135deg, #CCE5FF 0%, #74B9FF 50%, #0984E3 100%); }
.proj-tesi  { background: linear-gradient(135deg, #FFE5CC 0%, #FDAB74 50%, #E17055 100%); }
.proj-icon  { font-size: 4rem; opacity: .35; }
.project-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,46,.92) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; opacity: 0; transition: opacity .35s; border-radius: 4px; }
.project-item:hover .project-overlay { opacity: 1; }
.proj-cat { font-family: "Barlow Condensed", sans-serif; font-size: .72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.proj-name { font-family: "Barlow Condensed", sans-serif; font-size: 1.2rem; font-weight: 700; text-transform: uppercase; color: #fff; }
.proj-loc { font-size: .8rem; color: rgba(255,255,255,.65); margin-top: 3px; }
.projects-grid .project-item:first-child { grid-column: span 2; aspect-ratio: auto; min-height: 280px; }

/* ── NUMBERS ── */
.numbers-banner { background: var(--orange); padding: 80px 60px; position: relative; overflow: hidden; }
.numbers-banner::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(255,255,255,.04) 30px, rgba(255,255,255,.04) 31px); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; z-index: 2; }
.number-item { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,.2); }
.number-item:last-child { border-right: none; }
.big-num { font-family: "Barlow Condensed", sans-serif; font-size: clamp(3.5rem, 6vw, 6rem); font-weight: 900; color: #fff; line-height: 1; }
.num-label { font-size: .82rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 8px; }

/* ── WHY ── */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-visual { position: relative; }
.why-img-box { width: 100%; aspect-ratio: 4/5; position: relative; overflow: hidden; background: linear-gradient(135deg, #FFF5E6 0%, #FDEAC8 100%); border: 1px solid var(--border); }
.why-img-box svg { width: 100%; height: 100%; opacity: .2; }
.why-img-big-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 8rem; opacity: .15; }
.why-badge-float { position: absolute; bottom: -20px; right: -20px; background: var(--orange); color: #fff; padding: 28px 32px; text-align: center; box-shadow: 0 8px 32px rgba(232,93,4,.4); }
.why-badge-float .bn { font-family: "Barlow Condensed", sans-serif; font-size: 3rem; font-weight: 900; line-height: 1; display: block; }
.why-badge-float .bl { font-size: .72rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; opacity: .85; }
.why-list { list-style: none; margin-top: 36px; }
.why-list li { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--light-2); align-items: flex-start; }
.why-icon { width: 46px; height: 46px; min-width: 46px; background: rgba(232,93,4,.08); border: 1px solid rgba(232,93,4,.15); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.why-title { font-family: "Barlow Condensed", sans-serif; font-size: 1.2rem; font-weight: 700; text-transform: uppercase; color: var(--text); margin-bottom: 4px; }
.why-text { font-size: .88rem; color: var(--text-mid); line-height: 1.65; }

/* ── PROCESS ── */
#surec { background: var(--light); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 16px; }
.step-card { background: var(--white); padding: 40px 32px; position: relative; transition: background .25s; }
.step-card:hover { background: var(--light); }
.step-num { font-family: "Barlow Condensed", sans-serif; font-size: 4.5rem; font-weight: 900; color: rgba(232,93,4,.08); line-height: 1; margin-bottom: 20px; display: block; }
.step-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.step-title { font-family: "Barlow Condensed", sans-serif; font-size: 1.3rem; font-weight: 700; text-transform: uppercase; color: var(--text); margin-bottom: 12px; }
.step-desc { font-size: .88rem; color: var(--text-mid); line-height: 1.65; }
.step-connector { position: absolute; top: 48px; right: -16px; z-index: 3; width: 32px; height: 32px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .85rem; }
.step-card:last-child .step-connector { display: none; }

/* ── FORM ── */
#teklif { background: var(--light-2); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.form-intro p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-top: 16px; max-width: 400px; }
.form-intro .contact-items { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.form-contact-item { display: flex; gap: 14px; align-items: center; }
.form-contact-icon { width: 42px; height: 42px; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; border-radius: 2px; }
.form-contact-label { font-size: .72rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); }
.form-contact-val { font-family: "Barlow Condensed", sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--text); text-decoration: none; }
.form-contact-val:hover { color: var(--orange); }
.quote-form { background: var(--white); padding: 48px; border: 1px solid var(--border); box-shadow: 0 4px 40px rgba(0,0,0,.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: "Barlow Condensed", sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-mid); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; background: var(--light); border: 1px solid var(--border); font-family: "Barlow", sans-serif; font-size: .92rem; color: var(--text); transition: border-color .2s, box-shadow .2s; outline: none; -webkit-appearance: none; appearance: none; border-radius: 0; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,93,4,.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 16px; background: var(--orange); color: #fff; border: none; cursor: pointer; font-family: "Barlow Condensed", sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; transition: background .3s; border-radius: 2px; }
.form-submit:hover { background: var(--dark); }

/* ── CTA ── */
.parallax-cta { position: relative; min-height: 400px; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 80px 20px; background: var(--dark); }
.parallax-cta-bg { position: absolute; inset: -120px; background: radial-gradient(ellipse 60% 80% at center, rgba(232,93,4,.2) 0%, transparent 70%); }
.cta-lines { position: absolute; inset: 0; overflow: hidden; }
.cta-line { position: absolute; left: 50%; top: 0; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent 0%, rgba(232,93,4,.25) 50%, transparent 100%); animation: ctaPulse 3s ease-in-out infinite; }
.cta-line:nth-child(1){transform:translateX(-300px);animation-delay:0s}.cta-line:nth-child(2){transform:translateX(-150px);animation-delay:.5s}.cta-line:nth-child(3){transform:translateX(0);animation-delay:1s}.cta-line:nth-child(4){transform:translateX(150px);animation-delay:.5s}.cta-line:nth-child(5){transform:translateX(300px);animation-delay:0s}
@keyframes ctaPulse { 0%,100%{opacity:.3} 50%{opacity:1} }
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-content h2 { font-family: "Barlow Condensed", sans-serif; font-size: clamp(3rem, 6vw, 6rem); font-weight: 900; text-transform: uppercase; line-height: .95; margin-bottom: 24px; color: #fff; }
.cta-content h2 span { color: var(--gold); }
.cta-phone { font-family: "Barlow Condensed", sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--gold); display: block; margin: 0 0 36px; letter-spacing: 2px; }
.btn-primary-light { background: #fff !important; color: var(--orange) !important; }
.btn-primary-light:hover { background: var(--gold) !important; color: #fff !important; }

/* ── FOOTER ── */
footer { background: var(--dark); color: #fff; padding: 60px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-text .l1 { color: var(--gold); }
.footer-brand .logo-text .l2 { color: rgba(255,255,255,.5); }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.75; margin-top: 16px; }
.footer-links h4 { font-family: "Barlow Condensed", sans-serif; font-size: .75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.3); letter-spacing: 1px; }

/* ── WHATSAPP ── */
.whatsapp-btn { position: fixed; bottom: 28px; right: 28px; z-index: 5000; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.5); text-decoration: none; transition: transform .25s, box-shadow .25s; animation: waPop 0.6s ease 1.5s both; }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }
@keyframes waPop { from{opacity:0;transform:scale(0)} to{opacity:1;transform:scale(1)} }
.whatsapp-tooltip { position: absolute; right: 68px; bottom: 50%; transform: translateY(50%); background: var(--dark); color: #fff; padding: 8px 14px; white-space: nowrap; font-family: "Barlow Condensed", sans-serif; font-size: .85rem; letter-spacing: 1px; opacity: 0; transition: opacity .2s; pointer-events: none; border-radius: 2px; }
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.stagger.visible > *:nth-child(1){opacity:1;transform:none}.stagger.visible > *:nth-child(2){opacity:1;transform:none;transition-delay:.08s}.stagger.visible > *:nth-child(3){opacity:1;transform:none;transition-delay:.16s}.stagger.visible > *:nth-child(4){opacity:1;transform:none;transition-delay:.24s}.stagger.visible > *:nth-child(5){opacity:1;transform:none;transition-delay:.32s}.stagger.visible > *:nth-child(6){opacity:1;transform:none;transition-delay:.40s}
.hero-badge,.hero-title,.hero-desc,.hero-actions,.hero-pills,.hero-stats { animation: fadeUp .8s ease both; }
.hero-badge{animation-delay:.15s}.hero-title{animation-delay:.3s}.hero-desc{animation-delay:.45s}.hero-actions{animation-delay:.6s}.hero-pills{animation-delay:.7s}.hero-stats{animation-delay:.85s}
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* ── TABLET ── */
@media (max-width: 1024px) {
  nav { padding: 16px 32px; } nav.scrolled { padding: 12px 32px; }
  section { padding: 96px 40px; }
  .hero { padding: 120px 40px 140px; } .hero::before { width: 40%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { gap: 48px; }
  .numbers-banner { padding: 60px 40px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); } .step-connector { display: none; }
  .form-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid .project-item:first-child { grid-column: span 2; }
  footer { padding: 48px 40px; }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 14px 20px; } nav.scrolled { padding: 12px 20px; }
  .nav-links { display: none; } .hamburger { display: flex; } .mobile-menu { display: flex; }
  .hero { padding: 96px 20px 48px; } .hero::before { display: none; } .hero-deco { font-size: 60vw; opacity: .04; }
  .hero-title { font-size: clamp(3rem, 13vw, 4.8rem); margin-bottom: 18px; }
  .hero-desc { max-width: 100%; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-primary { justify-content: center; padding: 15px 28px; }
  .btn-secondary { justify-content: center; }
  .hero-stats { margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; border-top: 2px solid var(--border); }
  .stat-item { padding: 18px 16px; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(even) { border-left: 1px solid var(--border); }
  .stat-item + .stat-item { padding-left: 16px; }
  .stat-num { font-size: 2rem; } .scroll-hint { display: none; }
  .parallax-section { height: auto; min-height: 200px; padding: 52px 0; } .parallax-content { padding: 0 20px; } .parallax-quote { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  section { padding: 64px 20px; } .section-header { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 40px; }
  #hizmetler { padding: 64px 20px; } .services-grid { grid-template-columns: 1fr; } .service-card { padding: 36px 28px 64px; }
  .projects-tabs { overflow-x: auto; padding-bottom: 4px; } .tab-btn { white-space: nowrap; padding: 12px 18px; }
  .projects-grid { grid-template-columns: 1fr; gap: 8px; } .projects-grid .project-item:first-child { grid-column: span 1; min-height: 200px; }
  .numbers-banner { padding: 48px 20px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .number-item { padding: 28px 16px; border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.1); }
  .number-item:nth-child(even) { border-right: none; } .number-item:nth-child(3), .number-item:nth-child(4) { border-bottom: none; }
  .big-num { font-size: clamp(2.8rem, 10vw, 4rem); }
  .why-section { padding: 64px 20px; } .why-grid { grid-template-columns: 1fr; gap: 36px; } .why-visual { order: -1; } .why-img-box { aspect-ratio: 16/9; }
  .why-badge-float { bottom: -12px; right: 0; padding: 18px 22px; } .why-badge-float .bn { font-size: 2.2rem; }
  .why-list { margin-top: 20px; } .why-list li { padding: 16px 0; gap: 14px; } .why-icon { width: 40px; height: 40px; min-width: 40px; }
  #surec { padding: 64px 20px; } .process-steps { grid-template-columns: 1fr; }
  #teklif { padding: 64px 20px; } .quote-form { padding: 28px 20px; } .form-row { grid-template-columns: 1fr; }
  .parallax-cta { padding: 64px 20px; } .cta-content h2 { font-size: clamp(2.4rem, 9vw, 3.8rem); } .cta-phone { font-size: 1.6rem; }
  .cta-lines .cta-line:nth-child(1),.cta-lines .cta-line:nth-child(5) { display: none; }
  footer { padding: 48px 20px; } .footer-inner { grid-template-columns: 1fr; gap: 32px; } .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .whatsapp-btn { width: 52px; height: 52px; bottom: 20px; right: 20px; }
}
@media (max-width: 380px) { .hero-title { font-size: 2.8rem; } .stat-num { font-size: 1.7rem; } }
