/* ============================================================
   NAIL AHŞAP — Premium Wood Design & Application
   Design System & Global Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --gold:       #A67C52;
  --gold-light: #C49A6C;
  --dark-wood:  #6B4E31;
  --black:      #1F1F1F;
  --charcoal:   #2A2A2A;
  --cream:      #F7F4EF;
  --cream-dark: #EDE8DF;
  --white:      #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  --nav-h: 80px;
  --radius: 2px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

/* ── Typography Scale ──────────────────────────────────────── */
.display-1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display-2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.display-3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-lg {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.75;
  color: #555;
}

.body-md {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
  color: #666;
}

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}

.section {
  padding: 120px 0;
}

.section--dark {
  background-color: var(--black);
  color: var(--cream);
}

.section--cream {
  background-color: var(--cream);
}

.section--white {
  background-color: var(--white);
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}

.nav.scrolled {
  background: rgba(31, 31, 31, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(166, 124, 82, 0.15);
  height: 68px;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 48px;
  max-width: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav__logo img {
  width: auto;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.18));
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--cream);
  text-transform: uppercase;
}

.nav__logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.8);
  position: relative;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__phone {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.nav__phone:hover { color: var(--gold); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
  transform-origin: center;
}

.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.nav__mobile-link:hover { color: var(--gold); }

.nav__mobile-phone {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(166, 124, 82, 0.3);
  width: 100%;
  text-align: center;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--dark-wood);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(166, 124, 82, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(247, 244, 239, 0.4);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(31, 31, 31, 0.3);
}

.btn--outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn--whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Divider ───────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0;
}

.divider--center { margin: 20px auto; }

/* ── Section Header ────────────────────────────────────────── */
.section-header {
  max-width: 680px;
}

.section-header--center {
  text-align: center;
  margin: 0 auto;
}

.section-header--center .divider { margin: 20px auto; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0f08 0%, #2d1a0e 30%, #3d2510 60%, #1a0f08 100%);
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(166, 124, 82, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 60%, rgba(107, 78, 49, 0.2) 0%, transparent 70%);
}

.hero__img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero__img.loaded { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 8, 3, 0.55) 0%,
    rgba(15, 8, 3, 0.68) 40%,
    rgba(15, 8, 3, 0.72) 65%,
    rgba(15, 8, 3, 0.90) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(247, 244, 239, 0.7);
  max-width: 520px;
  margin: 0 auto 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 0.8s ease 1.4s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero__scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.5);
  writing-mode: vertical-rl;
}

/* ── Services Cards ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(166, 124, 82, 0.15);
  margin-top: 80px;
}

.service-card {
  background: var(--white);
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  background: var(--cream);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  z-index: 1;
}

.service-card__icon {
  font-size: 2rem;
  line-height: 1;
}

.service-card__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.2;
}

.service-card__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #777;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  transition: gap var(--transition);
}

.service-card:hover .service-card__link { gap: 14px; }

/* ── Why Section ───────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.why__visual {
  position: relative;
  height: 600px;
}

.why__img-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 60px;
  bottom: 80px;
  overflow: hidden;
}
.why__img-main img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.why__img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 240px;
  overflow: hidden;
  border: 4px solid var(--cream);
}
.why__img-accent img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.why__img-badge {
  position: absolute;
  top: 40px;
  right: 80px;
  width: 100px;
  height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  z-index: 2;
  box-shadow: 0 8px 30px rgba(166, 124, 82, 0.4);
}

.why__img-badge-year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}

.why__img-badge-text {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.9;
}

.why__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}

.why__item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(166, 124, 82, 0.15);
}

.why__item:first-child { border-top: 1px solid rgba(166, 124, 82, 0.15); }

.why__item-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
  min-width: 28px;
  padding-top: 2px;
}

.why__item-text {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.5;
}

.why__item-sub {
  font-size: 0.825rem;
  color: #888;
  margin-top: 4px;
  font-weight: 300;
}

/* ── Projects Grid ─────────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 320px 320px;
  gap: 12px;
  margin-top: 64px;
}

.project-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--charcoal);
}

.project-item:nth-child(1) { grid-column: 1 / 7; grid-row: 1; }
.project-item:nth-child(2) { grid-column: 7 / 10; grid-row: 1; }
.project-item:nth-child(3) { grid-column: 10 / 13; grid-row: 1; }
.project-item:nth-child(4) { grid-column: 1 / 4; grid-row: 2; }
.project-item:nth-child(5) { grid-column: 4 / 7; grid-row: 2; }
.project-item:nth-child(6) { grid-column: 7 / 13; grid-row: 2; }

.project-item img {
  transition: transform 0.7s var(--transition-slow);
}

.project-item:hover img { transform: scale(1.06); }

.project-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 12, 6, 0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.project-item:hover .project-item__overlay { opacity: 1; }

.project-item__info { color: var(--cream); }

.project-item__cat {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.project-item__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
}

/* Placeholder image backgrounds */
.placeholder-wood-1 { background: linear-gradient(135deg, #3d2410 0%, #6b4e31 40%, #a67c52 100%); }
.placeholder-wood-2 { background: linear-gradient(160deg, #2d1a0e 0%, #4a3020 50%, #7a5c3a 100%); }
.placeholder-wood-3 { background: linear-gradient(120deg, #1a0f08 0%, #3d2410 60%, #6b4e31 100%); }
.placeholder-wood-4 { background: linear-gradient(180deg, #4a3020 0%, #8b6540 60%, #c49a6c 100%); }
.placeholder-wood-5 { background: linear-gradient(135deg, #6b4e31 0%, #a67c52 50%, #c49a6c 100%); }
.placeholder-wood-6 { background: linear-gradient(160deg, #2d1a0e 0%, #5a3820 40%, #8b6540 100%); }
.placeholder-cream { background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%); }
.placeholder-dark  { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); }

/* ── Stats ─────────────────────────────────────────────────── */
.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(166, 124, 82, 0.25);
}

.stat-item {
  padding: 64px 48px;
  border-right: 1px solid rgba(166, 124, 82, 0.25);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.5);
}

.stat-desc {
  font-size: 0.875rem;
  color: rgba(247, 244, 239, 0.4);
  margin-top: 8px;
  font-weight: 300;
}

/* ── CTA Section ───────────────────────────────────────────── */
.cta-section {
  background: var(--cream-dark);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: #141414;
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(166, 124, 82, 0.15);
}

.footer__brand-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer__brand-desc {
  font-size: 0.85rem;
  color: rgba(247, 244, 239, 0.45);
  line-height: 1.7;
  margin-top: 16px;
}

.footer__col-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.875rem;
  color: rgba(247, 244, 239, 0.5);
  transition: color var(--transition);
}

.footer__link:hover { color: var(--gold); }

.footer__contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(247, 244, 239, 0.5);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer__contact-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(247, 244, 239, 0.3);
}

.footer__copy span { color: var(--gold); }

/* ── Floating Action Buttons ───────────────────────────────── */
.float-buttons {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 20px 13px 16px;
  color: var(--white);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.float-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.float-btn--wa {
  background: #25D366;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.42);
  animation: float 3s ease-in-out infinite;
}

.float-btn--wa:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.52);
}

.float-btn--phone {
  background: var(--gold);
  box-shadow: 0 8px 28px rgba(166, 124, 82, 0.38);
}

.float-btn--phone:hover {
  background: var(--dark-wood);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(107, 78, 49, 0.42);
}

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  height: 400px;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 12, 6, 0.95) 0%, rgba(20, 12, 6, 0.4) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 48px 64px;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.4);
  margin-bottom: 16px;
}

.page-hero__breadcrumb a { transition: color var(--transition); }
.page-hero__breadcrumb a:hover { color: var(--gold); }
.page-hero__breadcrumb-sep { color: var(--gold); }
.page-hero__breadcrumb-current { color: var(--gold); }

/* ── Hizmetler Page ────────────────────────────────────────── */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(166, 124, 82, 0.12);
}

.service-detail:last-child { border-bottom: none; }

.service-detail.reverse .service-detail__visual { order: 2; }
.service-detail.reverse .service-detail__content { order: 1; }

.service-detail__visual {
  height: 480px;
  overflow: hidden;
  position: relative;
}

.service-detail__num {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 300;
  color: rgba(166, 124, 82, 0.1);
  line-height: 1;
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 0;
}

.service-detail__content { position: relative; }

.service-detail__sub-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}

.service-detail__sub-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(166, 124, 82, 0.1);
  font-size: 0.9rem;
  color: var(--black);
  transition: var(--transition);
}

.service-detail__sub-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.service-detail__sub-item:hover { color: var(--gold); padding-left: 8px; }

/* ── Gallery ───────────────────────────────────────────────── */
.gallery-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 48px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  border: 1px solid rgba(166, 124, 82, 0.2);
  background: transparent;
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  transition: var(--transition);
}

.gallery-item:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.15); }

.gallery-item img,
.gallery-item .gallery-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-slow);
}

.gallery-item:hover img,
.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 12, 6, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__zoom {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(247, 244, 239, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transform: scale(0.7);
  transition: transform var(--transition);
}

.gallery-item:hover .gallery-item__zoom { transform: scale(1); }

.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(20, 12, 6, 0.9) 0%, transparent 100%);
  color: var(--cream);
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item__caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-caption-cat {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.gallery-caption-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
}

/* ── Lightbox ──────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid rgba(166, 124, 82, 0.2);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.lightbox__close:hover { opacity: 1; }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(166, 124, 82, 0.2);
  border: 1px solid rgba(166, 124, 82, 0.3);
  color: var(--cream);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  font-size: 1.2rem;
}

.lightbox__nav:hover { background: var(--gold); }
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }

.lightbox__caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--cream);
}

.lightbox__caption-cat {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.lightbox__caption-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-top: 4px;
}

/* ── Hakkımızda ────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
}

.value-card {
  padding: 36px 32px;
  background: var(--white);
  border-top: 2px solid var(--gold);
  position: relative;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 12px;
}

.value-card__text {
  font-size: 0.875rem;
  color: #777;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.team-member {
  text-align: center;
}

.team-member__img {
  height: 280px;
  overflow: hidden;
  margin-bottom: 20px;
}

.team-member__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black);
}

.team-member__role {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

/* ── Contact ───────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(166, 124, 82, 0.1);
  border: 1px solid rgba(166, 124, 82, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-info-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--black);
  line-height: 1.4;
}

.contact-form {
  background: var(--white);
  padding: 56px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(166, 124, 82, 0.2);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--black);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
  border-radius: 0;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-textarea {
  height: 140px;
  resize: vertical;
  min-height: 120px;
}

.form-input::placeholder,
.form-textarea::placeholder { color: #aaa; }

.map-container {
  height: 400px;
  background: var(--cream-dark);
  overflow: hidden;
  margin-top: 64px;
  border: 1px solid rgba(166, 124, 82, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── SEO Section ───────────────────────────────────────────── */
.seo-section {
  padding: 64px 0;
  border-top: 1px solid rgba(166, 124, 82, 0.12);
}

.seo-intro {
  max-width: 800px;
  font-size: 0.875rem;
  color: #888;
  line-height: 1.8;
}

/* ── Contact page layout ───────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; }

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  background: var(--cream);
  border: 1px solid rgba(166, 124, 82, 0.15);
  text-decoration: none;
  transition: var(--transition);
  cursor: default;
}

a.contact-card { cursor: pointer; }
a.contact-card:hover {
  border-color: var(--gold);
  background: var(--white);
  transform: translateX(4px);
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(166, 124, 82, 0.1);
  border: 1px solid rgba(166, 124, 82, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-card__icon svg { width: 20px; height: 20px; }
.contact-card__icon--wa { background: rgba(37, 211, 102, 0.08); border-color: rgba(37, 211, 102, 0.25); color: #25D366; }

.contact-card__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-card__value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--black);
  line-height: 1.45;
}

.contact-form-wrap {
  background: var(--white);
  padding: 52px;
  border: 1px solid rgba(166, 124, 82, 0.1);
}

.form-select { cursor: pointer; }

.form-error {
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: -4px;
  min-height: 18px;
  display: block;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  gap: 10px;
}
.form-submit svg { width: 16px; height: 16px; }

.form-note {
  font-size: 0.75rem;
  color: #aaa;
  text-align: center;
  margin-top: 14px;
}

.map-section { display: block; line-height: 0; }
.map-section iframe { width: 100%; height: 440px; border: 0; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .container { padding: 0 32px; }
  .section { padding: 80px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 60px; }
  .why__visual { height: 400px; order: -1; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 36px; }
  .service-detail { grid-template-columns: 1fr; gap: 40px; }
  .service-detail.reverse .service-detail__visual { order: -1; }
  .projects-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .project-item { grid-column: auto !important; grid-row: auto !important; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(166, 124, 82, 0.25); }
  .about-values { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 36px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .nav__links,
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { display: flex; }
  .hero__content { padding: 0 24px 80px; }
  .hero__scroll { right: 24px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .container { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .team-grid { grid-template-columns: 1fr; }
  .float-btn span { display: none; }
  .float-btn { padding: 13px; border-radius: 50%; }
  .page-hero { height: 280px; }
  .page-hero__content { padding: 0 20px 40px; }
  .nav__inner { padding: 0 24px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.4rem; }
  .display-2 { font-size: 2rem; }
}
