/*
  Snopen Alüminyum — "Modern Endüstriyel" Tasarım Sistemi v2
  ============================================================
  Konsept: Bölünmüş hero • Bento grid hizmetler • Masonry galeri
           Glass morphism kartlar • Parallax • Sayaç animasyonları
           SVG dalga bölücüler • Scroll reveal efektleri

  Palet:
    --navy        #0a1628   Derin lacivert — ana koyu ton
    --orange      #f15a24   Canlı turuncu — tek vurgu rengi
    --wheat       #f5f0eb   Sıcak krem — açık arka plan
    --white       #ffffff
    --text        #1e2330
    --text-soft   #6b7280
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ================================================================
   1. VARIABLES & RESET
   ================================================================ */
:root {
  --navy: #0a1628;
  --navy-light: #132038;
  --anthracite: #1a1f2e;
  --orange: #f15a24;
  --orange-glow: rgba(241,90,36,0.25);
  --wheat: #f5f0eb;
  --white: #ffffff;
  --grey-light: #e8e4df;
  --text: #1e2330;
  --text-soft: #6b7280;
  --font: 'Poppins', sans-serif;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 76px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:var(--header-h); }
body {
  font-family:var(--font); background:var(--white); color:var(--text);
  line-height:1.65; overflow-x:hidden; -webkit-font-smoothing:antialiased;
}
body.menu-open { overflow:hidden; }
a { text-decoration:none; color:inherit; transition:var(--transition); }
ul { list-style:none; }
img { max-width:100%; height:auto; display:block; }
button { font-family:var(--font); cursor:pointer; border:none; }
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:var(--wheat); }
::-webkit-scrollbar-thumb { background:var(--orange); border-radius:3px; }

/* ================================================================
   2. SCROLL REVEAL
   ================================================================ */
.reveal { opacity:0; transform:translateY(36px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-d1 { transition-delay:0.1s; } .reveal-d2 { transition-delay:0.2s; }
.reveal-d3 { transition-delay:0.3s; } .reveal-d4 { transition-delay:0.4s; }

/* ================================================================
   3. HEADER
   ================================================================ */
header {
  position:fixed; top:0; left:0; width:100%; z-index:1000;
  height:var(--header-h); background:transparent;
  transition:background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
header.scrolled {
  background:rgba(10,22,40,0.92); backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px); box-shadow:0 2px 20px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width:1320px; margin:0 auto; padding:0 28px;
  height:100%; display:flex; align-items:center; justify-content:space-between;
}
.logo-wrap { display:flex; align-items:center; height:44px; flex-shrink:0; }
.logo-wrap img { height:44px; width:auto; max-width:200px; object-fit:contain; }
.nav-links { display:flex; align-items:center; gap:36px; }
.nav-links a {
  color:rgba(255,255,255,0.82); font-size:0.84rem; font-weight:600;
  letter-spacing:1.2px; text-transform:uppercase; position:relative; padding:4px 0;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-2px; left:0;
  width:0; height:2px; background:var(--orange); transition:width 0.3s;
}
.nav-links a:hover { color:var(--white); }
.nav-links a:hover::after { width:100%; }
.nav-cta {
  background:var(--orange); color:var(--white)!important;
  padding:10px 22px!important; border-radius:50px; font-size:0.82rem!important;
  letter-spacing:0.5px!important; text-transform:none!important;
  box-shadow:0 4px 18px var(--orange-glow);
}
.nav-cta:hover { background:#d94a1a; transform:translateY(-1px); }
.nav-cta::after { display:none!important; }

.hamburger {
  display:none; flex-direction:column; justify-content:center;
  width:34px; height:26px; gap:5px; background:none; padding:0;
}
.hamburger span { display:block; height:2.5px; background:var(--white); border-radius:2px; transition:var(--transition); }
.hamburger span:nth-child(1) { width:100%; }
.hamburger span:nth-child(2) { width:70%; align-self:flex-end; }
.hamburger span:nth-child(3) { width:50%; align-self:flex-end; }

/* ================================================================
   4. HERO — SPLIT LAYOUT
   ================================================================ */
.hero { display:grid; grid-template-columns:1fr 1fr; min-height:100vh; background:var(--navy); }
.hero-left {
  display:flex; align-items:center; padding:120px 40px 80px 80px;
  position:relative; z-index:2;
}
.hero-text { max-width:540px; }
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  color:var(--orange); font-size:0.82rem; font-weight:600;
  letter-spacing:3px; text-transform:uppercase; margin-bottom:20px;
}
.hero-eyebrow::before { content:''; width:30px; height:2px; background:var(--orange); }
.hero h1 {
  font-size:clamp(2.2rem, 5vw, 3.8rem); font-weight:900; line-height:1.1;
  color:var(--white); margin-bottom:20px; letter-spacing:-1px;
}
.hero h1 em { font-style:normal; color:var(--orange); }
.hero p {
  font-size:1.05rem; color:rgba(255,255,255,0.62); margin-bottom:34px; max-width:440px;
}
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; }
.hero-right { position:relative; overflow:hidden; }
.hero-right img {
  width:100%; height:100%; object-fit:cover;
  clip-path:polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-right::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(10,22,40,0.25) 0%, transparent 50%);
}
.hero-counters {
  position:absolute; bottom:0; left:0; right:0; z-index:10;
  display:flex; justify-content:center;
  background:rgba(255,255,255,0.06); backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-top:1px solid rgba(255,255,255,0.08);
}
.counter-item {
  flex:1; text-align:center; padding:22px 16px; color:var(--white);
  border-right:1px solid rgba(255,255,255,0.06);
}
.counter-item:last-child { border-right:none; }
.counter-num { font-size:2.2rem; font-weight:800; color:var(--orange); line-height:1; }
.counter-label { font-size:0.76rem; color:rgba(255,255,255,0.5); margin-top:6px; letter-spacing:1px; }

/* Buttons */
.btn {
  display:inline-flex; align-items:center; gap:8px; padding:14px 30px;
  border-radius:50px; font-weight:600; font-size:0.92rem; transition:var(--transition); border:none;
}
.btn-fill { background:var(--orange); color:var(--white); box-shadow:0 4px 20px var(--orange-glow); }
.btn-fill:hover { background:#d94a1a; transform:translateY(-2px); box-shadow:0 8px 30px var(--orange-glow); }
.btn-outline { background:transparent; color:var(--white); border:1.5px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color:var(--white); background:rgba(255,255,255,0.06); transform:translateY(-2px); }
.btn-white { background:var(--white); color:var(--navy); box-shadow:var(--shadow-sm); }
.btn-white:hover { transform:translateY(-2px); box-shadow:var(--shadow-md); }

/* ================================================================
   5. SECTIONS
   ================================================================ */
section { padding:100px 24px; position:relative; }
.section-wheat { background:var(--wheat); }
.section-white { background:var(--white); }
.section-navy  { background:var(--navy); color:var(--white); }
.section-dark  { background:var(--anthracite); color:var(--white); }
.container { max-width:1200px; margin:0 auto; }
.container-narrow { max-width:880px; margin:0 auto; }

.section-tag {
  display:inline-flex; align-items:center; gap:8px;
  color:var(--orange); font-size:0.8rem; font-weight:600;
  letter-spacing:2.5px; text-transform:uppercase; margin-bottom:16px;
}
.section-tag::before { content:''; width:24px; height:2px; background:var(--orange); }
.section-heading { font-size:clamp(1.8rem, 3.5vw, 2.8rem); font-weight:800; margin-bottom:18px; line-height:1.2; }
.section-sub { font-size:1rem; color:var(--text-soft); max-width:600px; margin-bottom:48px; }
.section-navy .section-sub, .section-dark .section-sub { color:rgba(255,255,255,0.55); }
.text-center { text-align:center; }
.mx-auto { margin-left:auto; margin-right:auto; }

/* Wave divider */
.wave-divider {
  position:absolute; top:-1px; left:0; width:100%; overflow:hidden; line-height:0; pointer-events:none; z-index:2;
}
.wave-divider svg { width:100%; height:70px; display:block; }
.wave-divider.bottom { top:auto; bottom:-1px; transform:rotate(180deg); }

/* ================================================================
   6. ABOUT — ALTERNATING
   ================================================================ */
.about-block { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-img { position:relative; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-lg); }
.about-img img { width:100%; transition:transform 0.6s; }
.about-img:hover img { transform:scale(1.04); }
.about-badge {
  display:inline-block; background:var(--orange); color:var(--white);
  padding:6px 16px; border-radius:50px; font-size:0.78rem; font-weight:600; margin-bottom:16px;
}
.about-text { font-size:0.98rem; color:var(--text-soft); line-height:1.8; }
.about-text p { margin-bottom:14px; }
.about-text p:last-child { margin-bottom:0; }

/* ================================================================
   7. SERVICES — BENTO GRID
   ================================================================ */
.bento-grid { display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:270px; gap:18px; }
.bento-card {
  position:relative; border-radius:var(--radius); overflow:hidden;
  background:var(--white); box-shadow:var(--shadow-sm); transition:var(--transition); cursor:pointer;
}
.bento-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.bento-card.span-2 { grid-column:span 2; }
.bento-card.span-2-row { grid-row:span 2; }
.bento-card-img { height:100%; overflow:hidden; }
.bento-card-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s; }
.bento-card:hover .bento-card-img img { transform:scale(1.07); }
.bento-card-info {
  position:absolute; bottom:0; left:0; right:0; padding:40px 18px 18px;
  background:linear-gradient(transparent, rgba(0,0,0,0.78)); color:var(--white);
}
.bento-card-title { font-size:1.05rem; font-weight:700; margin-bottom:4px; }
.bento-card-desc { font-size:0.8rem; opacity:0.85; }
.bento-card-link {
  position:absolute; top:14px; right:14px;
  width:38px; height:38px; background:var(--orange); color:var(--white);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:0.9rem; opacity:0; transform:scale(0.8); transition:var(--transition);
}
.bento-card:hover .bento-card-link { opacity:1; transform:scale(1); }

/* ================================================================
   8. GALLERY — MASONRY
   ================================================================ */
.gallery-filters { display:flex; justify-content:center; flex-wrap:wrap; gap:8px; margin-bottom:40px; }
.filter-pill {
  padding:8px 22px; border-radius:50px; font-size:0.84rem; font-weight:600;
  background:var(--white); color:var(--text); border:1.5px solid var(--grey-light); transition:var(--transition);
}
.filter-pill:hover { border-color:var(--orange); color:var(--orange); }
.filter-pill.active { background:var(--orange); color:var(--white); border-color:var(--orange); }
.masonry { columns:3; column-gap:18px; }
.masonry-item {
  break-inside:avoid; margin-bottom:18px; border-radius:var(--radius);
  overflow:hidden; position:relative; cursor:pointer; transition:var(--transition);
}
.masonry-item:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.masonry-item img { width:100%; display:block; transition:transform 0.5s; }
.masonry-item:hover img { transform:scale(1.05); }
.masonry-overlay {
  position:absolute; inset:0; background:linear-gradient(transparent 55%, rgba(10,22,40,0.88));
  display:flex; flex-direction:column; justify-content:flex-end; padding:22px;
  opacity:0; transition:var(--transition);
}
.masonry-item:hover .masonry-overlay { opacity:1; }
.masonry-overlay h4 { color:var(--white); font-size:1rem; font-weight:700; }
.masonry-overlay p { color:rgba(255,255,255,0.7); font-size:0.82rem; }

/* ================================================================
   9. WORKSHOP — PARALLAX STRIP
   ================================================================ */
.parallax-strip {
  position:relative; min-height:480px; display:flex; align-items:center;
  background:var(--anthracite); overflow:hidden;
}
.parallax-bg {
  position:absolute; inset:0; background-size:cover; background-position:center;
  background-attachment:fixed; opacity:0.25;
}
.parallax-content { position:relative; z-index:2; max-width:700px; padding:60px 40px; }
.parallax-content h2 { font-size:2.2rem; font-weight:800; margin-bottom:16px; color:var(--white); }
.parallax-content > p { color:rgba(255,255,255,0.7); font-size:1rem; margin-bottom:24px; line-height:1.7; }
.wshop-features { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:28px; }
.wf-item { text-align:center; }
.wf-icon {
  width:56px; height:56px; margin:0 auto 14px; border-radius:50%;
  background:rgba(241,90,36,0.15); color:var(--orange);
  display:flex; align-items:center; justify-content:center; font-size:1.3rem;
}
.wf-item h4 { font-size:1rem; font-weight:700; color:var(--white); margin-bottom:6px; }
.wf-item p { font-size:0.82rem; color:rgba(255,255,255,0.5); line-height:1.5; margin-bottom:0; }

/* ================================================================
   10. CONTACT — SPLIT LAYOUT
   ================================================================ */
.contact-split { display:grid; grid-template-columns:1fr 1.2fr; gap:60px; align-items:start; }
.contact-info h2 { font-size:2.2rem; font-weight:800; margin-bottom:12px; }
.contact-info > p { color:var(--text-soft); margin-bottom:32px; line-height:1.7; }

.contact-glass {
  background:rgba(255,255,255,0.6); backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,0.8);
  border-radius:var(--radius); padding:20px; margin-bottom:14px;
  display:flex; gap:16px; align-items:center; transition:var(--transition);
}
.contact-glass:hover { background:rgba(255,255,255,0.85); transform:translateX(4px); }
.contact-glass-icon {
  width:46px; height:46px; min-width:46px; border-radius:50%;
  background:var(--orange); color:var(--white);
  display:flex; align-items:center; justify-content:center; font-size:1.1rem;
}
.contact-glass-label { font-size:0.75rem; color:var(--text-soft); text-transform:uppercase; letter-spacing:1px; }
.contact-glass-value { font-size:1rem; font-weight:600; color:var(--text); }
.contact-glass-value a:hover { color:var(--orange); }

.contact-form-card {
  background:var(--white); border-radius:var(--radius); padding:40px; box-shadow:var(--shadow-lg);
}
.contact-form-card h3 { font-size:1.3rem; font-weight:700; margin-bottom:24px; }

/* Contact map (replaces form) */
.contact-map {
  position:relative; border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow-lg); min-height:380px; height:100%;
}
.contact-map iframe {
  width:100%; height:100%; min-height:380px; border:0;
  filter:grayscale(20%) brightness(0.95);
}
.contact-map .map-pop {
  position:absolute; bottom:16px; left:16px; right:16px;
  background:var(--white); border-radius:var(--radius); padding:16px 20px;
  box-shadow:var(--shadow-md); max-width:300px;
}

.form-field { margin-bottom:18px; }
.form-field label { display:block; font-size:0.82rem; font-weight:600; margin-bottom:6px; color:var(--text); }
.form-field input, .form-field select, .form-field textarea {
  width:100%; padding:13px 16px; border:1.5px solid var(--grey-light);
  border-radius:var(--radius-sm); font-size:0.92rem; font-family:var(--font);
  background:var(--wheat); transition:var(--transition); color:var(--text);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline:none; border-color:var(--orange); background:var(--white); box-shadow:0 0 0 3px var(--orange-glow);
}
.form-field textarea { resize:vertical; min-height:90px; }
.form-error { color:#e53e3e; font-size:0.78rem; margin-top:4px; display:none; }
.form-submit {
  width:100%; padding:15px; background:var(--orange); color:var(--white);
  border-radius:50px; font-size:0.95rem; font-weight:700; margin-top:8px;
  transition:var(--transition); display:flex; align-items:center; justify-content:center; gap:8px;
}
.form-submit:hover { background:#d94a1a; transform:translateY(-1px); box-shadow:0 6px 24px var(--orange-glow); }
.form-field select option { background:var(--white); color:var(--text); }

/* ================================================================
   11. MAP (contact-map içinde)
   ================================================================ */
.contact-map .map-pop h4 { font-size:0.92rem; font-weight:700; margin-bottom:4px; }
.contact-map .map-pop p { font-size:0.78rem; color:var(--text-soft); margin-bottom:6px; line-height:1.4; }
.contact-map .map-pop a { color:var(--orange); font-weight:600; font-size:0.8rem; }

/* ================================================================
   12. FOOTER
   ================================================================ */
footer { background:var(--navy); color:var(--white); padding:70px 24px 0; }
.footer-grid { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; padding-bottom:50px; }
.footer-brand img { height:40px; margin-bottom:16px; }
.footer-brand p { font-size:0.85rem; color:rgba(255,255,255,0.5); line-height:1.7; }
footer h5 { font-size:0.9rem; font-weight:700; margin-bottom:18px; color:var(--white); }
footer ul li { margin-bottom:10px; }
footer ul a { font-size:0.84rem; color:rgba(255,255,255,0.5); transition:var(--transition); }
footer ul a:hover { color:var(--orange); padding-left:4px; }
.footer-mini-gallery { display:grid; grid-template-columns:repeat(3,1fr); gap:6px; }
.footer-mini-gallery div { aspect-ratio:1; border-radius:6px; overflow:hidden; }
.footer-mini-gallery img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s; }
.footer-mini-gallery div:hover img { transform:scale(1.1); }
.footer-bar { border-top:1px solid rgba(255,255,255,0.06); text-align:center; padding:20px 0; font-size:0.78rem; color:rgba(255,255,255,0.3); }

/* ================================================================
   13. WHATSAPP FLOAT + PULSE
   ================================================================ */
.wp-float {
  position:fixed; bottom:28px; right:28px; z-index:999;
  width:58px; height:58px; background:#25D366; color:var(--white);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; box-shadow:0 4px 22px rgba(37,211,102,0.45); transition:var(--transition);
  animation:wp-pulse 2.5s ease-in-out infinite;
}
@keyframes wp-pulse {
  0%,100% { box-shadow:0 4px 22px rgba(37,211,102,0.45); }
  50%     { box-shadow:0 4px 35px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.08); }
}
.wp-float:hover { transform:scale(1.12) rotate(-8deg); animation:none; }
.wp-dot {
  position:absolute; top:2px; right:2px; width:16px; height:16px;
  background:#ef4444; border-radius:50%; border:2px solid var(--white);
}

/* ================================================================
   14. SCROLL-TO-TOP BUTTON
   ================================================================ */
.scroll-top {
  position:fixed; bottom:100px; right:28px; z-index:998;
  width:44px; height:44px; background:var(--white); color:var(--navy);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:1rem; box-shadow:var(--shadow-md); cursor:pointer;
  opacity:0; transform:translateY(12px); pointer-events:none;
  transition:opacity 0.35s, transform 0.35s;
}
.scroll-top.visible { opacity:1; transform:translateY(0); pointer-events:auto; }
.scroll-top:hover { background:var(--orange); color:var(--white); transform:translateY(-3px); box-shadow:0 6px 24px var(--orange-glow); }

/* ================================================================
   15. MOBİL ALT AKSİYON BAR
   ================================================================ */
.mobile-action-bar {
  display:none; position:fixed; bottom:0; left:0; right:0; z-index:997;
  background:rgba(255,255,255,0.94); backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-top:1px solid rgba(0,0,0,0.06); padding:10px 16px;
  box-shadow:0 -4px 20px rgba(0,0,0,0.08);
}
.mobile-action-bar .mab-inner {
  display:flex; gap:10px; max-width:500px; margin:0 auto;
}
.mab-btn {
  flex:1; display:flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 16px; border-radius:50px; font-weight:600; font-size:0.88rem;
  transition:var(--transition); border:none; cursor:pointer; font-family:var(--font);
}
.mab-btn-wp { background:#25D366; color:var(--white); }
.mab-btn-wp:active { background:#1da851; transform:scale(0.96); }
.mab-btn-call { background:var(--navy); color:var(--white); }
.mab-btn-call:active { background:#060e1a; transform:scale(0.96); }

/* ================================================================
   16. ANİMASYONLAR & KEYFRAMES
   ================================================================ */
@keyframes pulse-cta {
  0%,100% { box-shadow:0 4px 20px var(--orange-glow); }
  50%     { box-shadow:0 4px 30px rgba(241,90,36,0.45), 0 0 0 8px rgba(241,90,36,0.06); }
}
@keyframes float-up-down {
  0%,100% { transform:translateY(0); }
  50%     { transform:translateY(-8px); }
}
@keyframes shimmer {
  0%   { background-position:-200% 0; }
  100% { background-position:200% 0; }
}
@keyframes fadeInScale {
  from { opacity:0; transform:scale(0.92); }
  to   { opacity:1; transform:scale(1); }
}

/* CTA butonlarına pulse */
.btn-fill { animation:pulse-cta 3s ease-in-out infinite; }
.btn-fill:hover { animation:none; }

/* ================================================================
   17. GELİŞMİŞ GÖRSEL EFEKTLER
   ================================================================ */

/* Gradient başlık vurgusu */
.gradient-text {
  background:linear-gradient(135deg, var(--orange) 0%, #ff8c5a 50%, var(--orange) 100%);
  background-size:200% auto; -webkit-background-clip:text;
  -webkit-text-fill-color:transparent; background-clip:text;
  animation:shimmer 4s linear infinite;
}

/* Kart glow hover */
.bento-card::before {
  content:''; position:absolute; inset:-2px; border-radius:inherit;
  background:linear-gradient(135deg, var(--orange), transparent 60%);
  z-index:-1; opacity:0; transition:opacity 0.4s;
}
.bento-card:hover::before { opacity:0.35; }

/* Katmanlı kart gölgesi */
.card-layered {
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 4px 12px rgba(0,0,0,0.06),
    0 12px 40px rgba(0,0,0,0.1);
}

/* Hero background pattern */
.hero-left {
  background-image:
    radial-gradient(circle at 20% 80%, rgba(241,90,36,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 40%);
}

/* Reveal animasyonuna scale ekle */
.reveal { transform:translateY(36px) scale(0.97); }
.reveal.visible { transform:translateY(0) scale(1); }

/* Hizmet kartı hover efekti güçlendirme */
.service-item-enhanced:hover {
  transform:translateY(-8px) scale(1.01);
  box-shadow:
    0 4px 16px rgba(0,0,0,0.08),
    0 20px 60px rgba(0,0,0,0.14);
}

/* Glass kart hover parlaması */
.contact-glass {
  position:relative; overflow:hidden;
}
.contact-glass::after {
  content:''; position:absolute; top:0; left:-100%; width:60%; height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition:left 0.6s;
}
.contact-glass:hover::after { left:120%; }

/* Hamburger → X animasyonu */
.hamburger.open span:nth-child(1) {
  transform:translateY(7.5px) rotate(45deg); width:100%!important;
}
.hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger.open span:nth-child(3) {
  transform:translateY(-7.5px) rotate(-45deg); width:100%!important;
}

/* Nav aktif link */
.nav-links a.active { color:var(--orange)!important; }
.nav-links a.active::after { width:100%; }

/* Mobil menü linkleri staggered animasyon */
.nav-links.open a {
  animation:fadeInScale 0.4s ease both;
}
.nav-links.open a:nth-child(1) { animation-delay:0.05s; }
.nav-links.open a:nth-child(2) { animation-delay:0.12s; }
.nav-links.open a:nth-child(3) { animation-delay:0.19s; }
.nav-links.open a:nth-child(4) { animation-delay:0.26s; }
.nav-links.open a:nth-child(5) { animation-delay:0.33s; }
.nav-links.open a:nth-child(6) { animation-delay:0.4s; }

/* Gallery masonry item enhance */
.masonry-item { box-shadow:0 2px 10px rgba(0,0,0,0.06); }

/* Counter items subtle hover */
.counter-item { transition:background 0.3s; }
.counter-item:hover { background:rgba(255,255,255,0.04); }

/* ================================================================
   18. RESPONSIVE
   ================================================================ */
@media (max-width:1024px) {
  .hero { grid-template-columns:1fr; min-height:auto; }
  .hero-left { padding:140px 40px 80px; }
  .hero-right { height:380px; }
  .hero-right img { clip-path:none; }
  .hero-counters { position:relative; }
  .about-block { grid-template-columns:1fr; gap:40px; }
  .bento-grid { grid-template-columns:repeat(2,1fr); grid-auto-rows:240px; }
  .bento-card.span-2 { grid-column:span 2; }
  .masonry { columns:2; }
  .contact-split { grid-template-columns:1fr; }
  .wshop-features { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .nav-links {
    position:fixed; inset:var(--header-h) 0 0; background:rgba(10,22,40,0.97);
    backdrop-filter:blur(20px); flex-direction:column; justify-content:center;
    gap:28px; transform:translateX(100%); transition:transform 0.35s ease;
  }
  .nav-links.open { transform:translateX(0); }
  .hamburger { display:flex; }
  .hero-left { padding:120px 24px 60px; }
  .hero h1 { font-size:2rem; }
  .hero-right { height:260px; }
  .hero-counters { flex-wrap:wrap; }
  .counter-item { flex:1 1 50%; border-bottom:1px solid rgba(255,255,255,0.06); }
  .bento-grid { grid-template-columns:1fr; grid-auto-rows:220px; }
  .bento-card.span-2, .bento-card.span-2-row { grid-column:span 1; grid-row:span 1; }
  .masonry { columns:1; }
  .parallax-strip { min-height:auto; }
  .parallax-content { padding:50px 24px; }
  .wshop-features { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:30px; }
  .contact-form-card { padding:28px 20px; }
  .contact-map { min-height:300px; }
  .contact-map iframe { min-height:300px; }
  .contact-map .map-pop { left:10px; right:10px; bottom:10px; max-width:none; }
  .mobile-action-bar { display:block; }
  .wp-float { bottom:82px; }
  .scroll-top { bottom:150px; right:18px; }
  .bento-card::before { display:none; }
}
@media (max-width:480px) {
  section { padding:60px 16px; }
  .hero-left { padding:110px 16px 50px; }
  .hero h1 { font-size:1.7rem; }
  .btn { padding:12px 22px; font-size:0.85rem; }
  .hero-btns { flex-direction:column; }
  .wp-float { width:50px; height:50px; font-size:1.3rem; bottom:80px; right:14px; }
  .scroll-top { width:38px; height:38px; bottom:140px; right:14px; font-size:0.85rem; }
  .mab-btn { padding:10px 14px; font-size:0.8rem; }
  body { padding-bottom:70px; }
}
