:root {
  --bg: #fffaf3;
  --bg-alt: #ffffff;
  --text-main: #1c1917;
  --text-muted: #6b6560;
  --accent: #c9a24b;
  --accent-dark: #a9812f;
  --accent-light: #c9a24b1f;
  --accent-gradient: linear-gradient(135deg, #e8c877, #c9a24b);
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;
  --radius: 18px;
  --shadow-sm: 0 6px 20px rgba(28, 25, 23, 0.06);
  --shadow-md: 0 16px 40px rgba(28, 25, 23, 0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  font-weight: 600;
  color: var(--text-main);
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: all .25s ease; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 5%; }

.section { padding: 120px 0; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--accent);
  color: #1c1917; padding: .75rem 1.25rem; z-index: 2000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  cursor: pointer; border: none; border-radius: 40px;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 2.1rem; font-size: 1rem; font-weight: 600;
  transition: all .3s ease; white-space: nowrap;
}
.btn-primary {
  background: var(--accent-gradient); color: #221a08;
  box-shadow: 0 10px 24px rgba(201, 162, 75, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(201, 162, 75, 0.45); }
.btn-outline {
  border: 1.5px solid var(--accent); color: var(--text-main); background: transparent;
}
.btn-outline:hover { background: var(--accent-light); transform: translateY(-3px); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@keyframes fadeIn { 0% { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: fadeIn .9s ease-out forwards; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.4rem 0; transition: all .35s cubic-bezier(.165,.84,.44,1);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar.scrolled {
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding: .7rem 0;
}
.nav-logo img {
  height: 46px; transition: all .3s;
  filter: brightness(0) invert(1) drop-shadow(0 1px 4px rgba(0,0,0,.35));
}
.navbar.scrolled .nav-logo img { height: 38px; filter: none; }
.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-link-item {
  text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; font-weight: 600;
  color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.4); position: relative; padding-bottom: 4px;
  transition: color .3s ease, text-shadow .3s ease;
}
.navbar.scrolled .nav-link-item { color: var(--text-main); text-shadow: none; }
.nav-link-item::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--accent); transition: width .3s ease;
}
.nav-link-item:hover::after { width: 100%; }
.nav-cta { padding: .6rem 1.4rem; font-size: .85rem; }
.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px;
}
.mobile-menu-btn span {
  width: 24px; height: 2px; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.4); transition: all .3s;
}
.navbar.scrolled .mobile-menu-btn span { background: var(--text-main); box-shadow: none; }
.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: 100px; padding-bottom: 12vh; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,15,8,.55) 0%, rgba(20,15,8,.42) 45%, rgba(255,250,243,.9) 100%);
}
.hero-content { text-align: center; max-width: 780px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-block; color: #fff; letter-spacing: .3em; text-transform: uppercase;
  font-size: .8rem; font-weight: 700; margin-bottom: 1.4rem; padding: .4rem 1.1rem;
  border: 1px solid rgba(255,255,255,.5); border-radius: 30px;
}
.hero-title {
  color: #fff; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; line-height: 1.12;
  margin-bottom: 1.4rem; text-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.hero-title span { color: var(--accent); font-style: italic; }
.hero-desc {
  color: #f4f0e8; max-width: 600px; margin: 0 auto 2.4rem; font-size: 1.12rem; font-weight: 400;
}
.hero-btns { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }
.hero .btn-outline { border-color: #fff; color: #fff; }
.hero .btn-outline:hover { background: rgba(255,255,255,.15); }

.wave-container { position: absolute; bottom: 0; left: 0; width: 100%; line-height: 0; overflow: hidden; z-index: 0; }
.waves { width: 100%; height: 10vh; min-height: 70px; max-height: 100px; margin-bottom: -7px; }
.parallax > use { animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite; }
.parallax > use:nth-child(1) { animation-duration: 7s; animation-delay: -2s; }
.parallax > use:nth-child(2) { animation-duration: 10s; animation-delay: -3s; }
.parallax > use:nth-child(3) { animation-duration: 13s; animation-delay: -4s; }
.parallax > use:nth-child(4) { animation-duration: 20s; animation-delay: -5s; }
@keyframes move-forever { 0% { transform: translate(-90px); } to { transform: translate(85px); } }

/* ---------- Section headers ---------- */
.section-eyebrow {
  display: block; text-align: center; color: var(--accent-dark); text-transform: uppercase;
  letter-spacing: .25em; font-size: .8rem; font-weight: 700; margin-bottom: 1rem;
}
.section-title {
  text-align: center; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1.2rem;
}
.section-title-left { text-align: left; }
.section-lead {
  text-align: center; max-width: 620px; margin: 0 auto 3.5rem; color: var(--text-muted); font-size: 1.08rem;
}

/* ---------- Services ---------- */
.services-section { background: var(--bg-alt); }
.services-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.service-card {
  flex: 1 1 300px; max-width: 340px; background: var(--bg);
  border: 1px solid rgba(28,25,23,.06); border-radius: var(--radius);
  padding: 2.6rem 2rem; text-align: center; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--accent-light); }
.service-icon {
  width: 66px; height: 66px; margin: 0 auto 1.5rem; border-radius: 50%;
  background: var(--accent-light); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 30px; height: 30px; }
.service-title { font-size: 1.35rem; margin-bottom: .75rem; }
.service-desc { color: var(--text-muted); font-size: 1rem; }

/* ---------- About / Neden Biz ---------- */
.about-section { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.about-media { position: relative; }
.about-media img {
  border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 1/1; object-fit: cover;
}
.about-media-badge {
  position: absolute; bottom: -18px; right: -18px; background: #fff; border-radius: 50px;
  padding: .7rem 1.2rem; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .9rem; color: var(--accent-dark); border: 1px solid var(--accent-light);
}
.about-list { list-style: none; margin: 2rem 0 2.2rem; display: flex; flex-direction: column; gap: 1.3rem; }
.about-list li { display: flex; align-items: flex-start; gap: 1rem; }
.about-list-icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--accent-gradient);
  color: #221a08; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .85rem;
}
.about-list h4 { font-size: 1.08rem; margin-bottom: .2rem; }
.about-list p { color: var(--text-muted); font-size: .96rem; }

/* ---------- Contact ---------- */
.contact-section { background: var(--bg-alt); }
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: stretch; }
.contact-info { display: flex; flex-direction: column; gap: 1.6rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 1.2rem;
  border-radius: 14px; border: 1px solid rgba(28,25,23,.06); background: var(--bg);
}
a.contact-item:hover { border-color: var(--accent-light); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.contact-icon {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; background: var(--accent-light);
  color: var(--accent-dark); display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item h4 { font-size: 1.05rem; margin-bottom: .2rem; }
.contact-item p { color: var(--text-muted); font-size: .96rem; }
.contact-whatsapp { margin-top: .5rem; }
.map-container {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 4px solid var(--bg); min-height: 320px;
}

/* ---------- Footer ---------- */
.footer { background: #1c1713; color: #f2ede4; padding: 3.5rem 0 2.5rem; text-align: center; }
.footer-logo img { height: 42px; margin: 0 auto 1.6rem; filter: brightness(0) invert(1); opacity: .9; }
.social-links { display: flex; justify-content: center; gap: 1rem; margin-bottom: 1.6rem; }
.social-links a {
  width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.social-links a:hover { background: var(--accent); color: #221a08; transform: translateY(-3px); }
.footer p { color: #b8afa2; font-size: .9rem; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.45); z-index: 999; animation: pulse 2.6s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-container { grid-template-columns: 1fr; }
  .map-container { min-height: 280px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-cta { display: none; }
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    background: var(--bg); flex-direction: column; justify-content: center; align-items: flex-start;
    gap: 1.8rem; padding: 2rem 2.4rem; box-shadow: -10px 0 40px rgba(0,0,0,.12);
    transform: translateX(100%); transition: transform .35s ease; z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link-item { color: var(--text-main); text-shadow: none; }
  .mobile-menu-btn { display: flex; }
  .hero-btns { flex-direction: column; align-items: center; }
  .whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
}
