@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg: #fafaf9;
  --white: #ffffff;
  --dark: #1c1c1c;
  --heading: #2a2a2a;
  --body: #555555;
  --muted: #999999;
  --line: #eeeeee;
  --surface: #f3f3f1;
  --accent: #3a3a3a;
  --green: #34a853;
  --r: 12px;
  --t: all 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ─────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,249,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand img { height: 28px; }
.nav-brand span { font-size: 15px; font-weight: 700; color: var(--dark); }
.nav-menu { display: flex; gap: 28px; list-style: none; }
.nav-menu a { font-size: 13px; font-weight: 500; color: var(--muted); text-decoration: none; transition: var(--t); }
.nav-menu a:hover { color: var(--dark); }
.nav-btn {
  font-size: 13px; font-weight: 600; color: #fff; background: var(--dark);
  padding: 9px 20px; border-radius: 999px; text-decoration: none; transition: var(--t);
}
.nav-btn:hover { background: #333; }
.nav-call {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--bg);
  background: var(--dark); padding: 9px 18px; border-radius: 999px;
  text-decoration: none; transition: var(--t); margin-left: 8px;
}
.nav-call:hover { background: #333; }
.nav-call i { animation: ring 2.5s ease-in-out infinite; }
@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  5% { transform: rotate(14deg); }
  10% { transform: rotate(-12deg); }
  15% { transform: rotate(10deg); }
  20% { transform: rotate(-8deg); }
  25% { transform: rotate(0deg); }
}

/* ── HERO ─────────────────────────────────── */
.hero { padding: 80px 0 72px; text-align: center; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: #2a5c36;
  background: #ebf5ee; border: 1px solid #d3ebd9;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 24px;
}
.hero-pill i {
  color: #34a853;
}
.hero h1 {
  font-size: 44px; font-weight: 700; color: var(--dark);
  line-height: 1.15; letter-spacing: -1px; margin-bottom: 18px;
}
.hero h1 .hl {
  color: #2a5c36;
  position: relative;
  display: inline-block;
}
.hero h1 .hl::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 6px;
  background: rgba(52, 168, 83, 0.12);
  border-radius: 2px;
  z-index: -1;
}
.hero p { font-size: 17px; color: var(--body); max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-fill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: #fff; background: var(--dark);
  padding: 13px 26px; border-radius: 999px; text-decoration: none; transition: var(--t);
}
.btn-fill:hover { background: #333; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.btn-line {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--dark); background: transparent;
  padding: 12px 26px; border-radius: 999px; text-decoration: none;
  border: 1.5px solid var(--line); transition: var(--t);
}
.btn-line:hover { border-color: #ccc; }
.hero-nums {
  display: flex; justify-content: center; gap: 48px;
  margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--line);
}
.hero-num strong { display: block; font-size: 24px; font-weight: 700; color: var(--dark); }
.hero-num span { font-size: 12px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* ── SECTION ──────────────────────────────── */
.sec { padding: 80px 0; }
.sec-alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-top { margin-bottom: 48px; }
.sec-top.center { text-align: center; }
.sec-top.center p { margin-left: auto; margin-right: auto; }
.sec-label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.sec-top h2 { font-size: 32px; font-weight: 700; color: var(--dark); letter-spacing: -0.5px; margin-bottom: 10px; }
.sec-top p { font-size: 15px; color: var(--body); max-width: 480px; line-height: 1.7; }

/* ── SERVICES (Interactive Photo Cards) ─────────── */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  padding: 32px 24px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  transition: var(--t);
  background: var(--dark);
}

/* Background image using pseudo-element so we can scale it without scaling text */
.svc::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  filter: brightness(0.85);
}

/* Specific background images */
.svc-koltuk::before { background-image: url('assets/koltuk.webp'); }
.svc-arac::before { background-image: url('assets/arac-koltuk.webp'); }
.svc-yatak::before { background-image: url('assets/yatak.webp'); }
.svc-hali::before { background-image: url('assets/hali.webp'); }
.svc-yerinde::before { background-image: url('assets/yerinde-hali.webp'); }
.svc-cami::before { background-image: url('assets/cami-halisi.webp'); }
.svc-sandalye::before { background-image: url('assets/sandalye.webp'); }
.svc-perde::before { background-image: url('assets/perde-stor.webp'); }
.svc-yorgan::before { background-image: url('assets/yorgan.webp'); }

/* Overlay for text readability (dark gradient bottom to top) */
.svc::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.2) 100%);
  transition: var(--t);
  z-index: 2;
}

/* Hover effects */
.svc:hover::before {
  transform: scale(1.08);
}
.svc:hover::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.3) 100%);
}
.svc:hover {
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  transform: translateY(-4px);
}

.svc-ico {
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; margin-bottom: auto;
  position: relative; z-index: 3;
  transition: var(--t);
}
.svc:hover .svc-ico {
  background: #ffffff !important;
  color: var(--dark) !important;
  transform: translateY(-2px);
}
.svc h3 {
  font-size: 16px; font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 6px;
  position: relative; z-index: 3;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.svc p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88) !important;
  line-height: 1.5;
  position: relative; z-index: 3;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

/* ── CAMPAIGNS ────────────────────────────── */
.camp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 720px; margin: 0 auto; }
.camp {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); padding: 36px 28px;
  text-align: center; position: relative; transition: var(--t);
}
.camp.pop { border-color: var(--dark); }
.camp:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); transform: translateY(-2px); }
.camp-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  background: var(--dark); color: #fff; padding: 4px 14px; border-radius: 999px;
}
.camp h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin: 10px 0 20px; }
.camp-list { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.camp-list li { font-size: 13px; color: var(--body); display: flex; align-items: center; gap: 8px; }
.camp-list i { color: var(--green); font-size: 12px; }
.camp-amt { font-size: 36px; font-weight: 700; color: var(--dark); }
.camp-amt small { font-size: 14px; font-weight: 400; color: var(--muted); margin-left: 2px; }

/* ── ABOUT ────────────────────────────────── */
.about-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; border-radius: var(--r); object-fit: cover; }
.about-chip {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--dark); color: #fff;
  padding: 16px 20px; border-radius: var(--r);
}
.about-chip strong { display: block; font-size: 26px; font-weight: 700; line-height: 1; }
.about-chip span { font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px; }
.about-body h2 { font-size: 30px; font-weight: 700; color: var(--dark); margin-bottom: 14px; letter-spacing: -0.3px; }
.about-body > p { font-size: 15px; color: var(--body); line-height: 1.75; margin-bottom: 32px; }
.vals { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.val h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.val p { font-size: 13px; color: var(--body); line-height: 1.5; }

/* ── FAQ ──────────────────────────────────── */
.faq-box { max-width: 680px; margin: 0 auto; }
.faq { border-bottom: 1px solid var(--line); }
.faq:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; padding: 18px 0; border: none; background: none;
  display: flex; justify-content: space-between; align-items: center;
  font-family: inherit; font-size: 14px; font-weight: 600; color: var(--dark);
  cursor: pointer; text-align: left; gap: 16px; transition: var(--t);
}
.faq-q:hover { color: #444; }
.faq.on .faq-q { color: #000; }
.faq-q i { font-size: 10px; color: var(--muted); transition: transform 0.25s ease; }
.faq.on .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p {
  font-size: 14px; color: var(--body); line-height: 1.7;
  margin: 0 0 18px 0; padding: 14px 18px;
  background: var(--surface); border-radius: 8px;
  border-left: 3px solid var(--line);
}

/* ── REVIEWS (Müşteri Yorumları) ───────────────── */
.reviews-grid {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 24px;
  margin-top: 24px;
  padding-bottom: 20px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.reviews-grid::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
.review-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--r);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--t);
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
  flex: 0 0 350px;
  scroll-snap-align: start;
}
.review-card::before {
  content: '“';
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 80px;
  font-family: 'DM Sans', serif;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  pointer-events: none;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.1);
}
.rev-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
}
.rev-user {
  display: flex;
  align-items: center;
}

.rev-user h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}
.rev-loc {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 3px;
}
.rev-loc i {
  color: #e74c3c;
  margin-right: 2px;
}
.rev-stars {
  display: flex;
  gap: 3px;
  color: #ffb000;
  font-size: 12px;
}
.rev-text {
  font-size: 14px;
  color: #3e3e3e;
  line-height: 1.65;
  margin-bottom: 0;
  flex-grow: 1;
  font-weight: 400;
}
.reviews-more {
  text-align: center;
  margin-top: 32px;
}

/* ── CONTACT ──────────────────────────────── */
.ct-row { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: flex-start; }
.ct-info h2 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.ct-info > p { font-size: 15px; color: var(--body); margin-bottom: 32px; line-height: 1.7; }
.ct-items { display: flex; flex-direction: column; gap: 18px; }
.ct-item { display: flex; gap: 12px; text-decoration: none; color: inherit; }
.ct-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.ct-lbl { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); }
.ct-val { font-size: 14px; font-weight: 600; color: var(--dark); margin-top: 2px; }
.ct-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 32px; }
.ct-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field.wide { grid-column: span 2; }
.field label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 14px; color: var(--dark);
  background: var(--bg); border: 1px solid var(--line); border-radius: 8px;
  padding: 11px 14px; width: 100%; outline: none; transition: var(--t);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: #bbb; background: #fff; }
.field select { appearance: none; }
.field textarea { resize: none; height: 80px; }
.ct-send {
  width: 100%; padding: 13px; margin-top: 4px;
  background: var(--dark); color: #fff; border: none; border-radius: 999px;
  font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--t);
}
.ct-send:hover { background: #333; }

/* ── FOOTER ───────────────────────────────── */
footer { background: var(--dark); color: rgba(255,255,255,0.5); padding: 56px 0 28px; }
.ft-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.ft-name { font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.85); margin-bottom: 10px; }
.ft-brand p { font-size: 13px; line-height: 1.6; max-width: 260px; }
.ft-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-col a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: var(--t); }
.ft-col a:hover { color: rgba(255,255,255,0.8); }
.ft-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; font-size: 12px; }

/* ── FLOATS ───────────────────────────────── */
.floats { position: fixed; bottom: 24px; right: 24px; z-index: 99; display: flex; flex-direction: column; gap: 10px; }
.fl {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff; text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12); transition: var(--t);
}
.fl:hover { transform: scale(1.08); }
.fl.call { background: var(--dark); }
.fl.wa { background: #25d366; }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 900px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .review-card { flex: 0 0 310px; }
  .about-row, .ct-row { grid-template-columns: 1fr; gap: 40px; }
  .ft-top { grid-template-columns: 1fr; gap: 28px; }
  .about-chip { position: static; display: inline-block; margin-top: 12px; }
}
@media (max-width: 640px) {
  .nav-menu, .nav-btn { display: none; }
  .hero h1 { font-size: 30px; }
  .hero-nums { gap: 24px; flex-wrap: wrap; }
  .svc-grid { grid-template-columns: 1fr; }
  .review-card { flex: 0 0 280px; }
  .camp-row { grid-template-columns: 1fr; }
  .vals { grid-template-columns: 1fr; }
  .ct-grid { grid-template-columns: 1fr; }
  .field.wide { grid-column: span 1; }
  .sec { padding: 56px 0; }
  .sec-top h2 { font-size: 24px; }
}
