/* =========================
   POYRAZ KURUYEMİŞ & TEKEL
   Final Clean CSS
   Single-scroll / Mobile-safe
========================= */

:root {
  --black: #070707;
  --black-soft: #101010;
  --gold: #d6a017;
  --gold-light: #f3c85a;
  --cream: #f7f1e4;
  --text: #f8f4ea;
  --muted: #b9b0a2;
  --border: rgba(214, 160, 23, 0.28);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --container: 1180px;
}

/* BASE */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  width: 100%;
  overflow: visible;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* SCROLL PROGRESS */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  z-index: 10000;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 18px rgba(243, 200, 90, 0.55);
}

/* HEADER */

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), var(--container));
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transition:
    top .3s ease,
    padding .3s ease,
    background .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}

.site-header:hover {
  border-color: rgba(243, 200, 90, 0.48);
}

.site-header.scrolled {
  top: 10px;
  padding: 9px 14px;
  background: rgba(8, 8, 8, 0.9);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.logo-area img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 12px;
  transition: .3s ease;
}

.logo-area:hover img {
  transform: rotate(-3deg) scale(1.06);
}

.site-header.scrolled .logo-area img {
  width: 34px;
  height: 34px;
}

.site-header.scrolled .logo-area span {
  font-size: 14px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 14px;
}

.nav-menu a {
  transition: color .25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold-light);
}

/* HERO */

.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 160px 24px 70px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.86), rgba(0,0,0,0.42), rgba(0,0,0,0.7)),
    url("../images/hero-poyraz-tekel.png") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.48), rgba(0,0,0,.72)),
    rgba(0,0,0,.28);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,195,0,.10), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255,170,0,.06), transparent 40%),
    linear-gradient(to bottom, transparent 72%, var(--black));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--container));
  margin: 0 auto;
  transform: translateY(-35px);
}

.eyebrow,
.section-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  opacity: .85;
}

.hero h1 {
  max-width: 720px;
  margin: 0 0 28px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: .92;
  letter-spacing: -2px;
  text-transform: uppercase;
  text-shadow: 0 8px 30px rgba(0,0,0,.35);
}

.hero-text {
  max-width: 560px;
  margin: 0 0 34px;
  color: var(--cream);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.6;
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 620px;
  margin-bottom: 0;
}

.hero-info span,
.hero-tags span {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  color: var(--cream);
  font-weight: 800;
  white-space: nowrap;
}

.hero-info span {
  padding: 11px 18px;
  font-size: 14px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 560px;
  margin: 30px 0 0;
}

.hero-tags span {
  padding: 9px 15px;
  font-size: 13px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 560px;
  margin-top: 30px;
  justify-content: flex-start;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 150px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    background .28s ease,
    border-color .28s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #148d33, #25d366);
  color: #fff;
  animation: whatsappGlow 2.8s ease-in-out infinite;
}

.btn.secondary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0c0a06;
  box-shadow: 0 14px 34px rgba(214, 160, 23, 0.22);
}

.btn.ghost {
  border-color: var(--border);
  border-width: 2px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--cream);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn.primary:hover {
  box-shadow: 0 14px 35px rgba(34,197,94,.35);
}

.btn.secondary:hover {
  box-shadow: 0 14px 35px rgba(212,175,55,.25);
}

.btn.ghost:hover {
  border-color: #d4af37;
  box-shadow: 0 10px 30px rgba(212,175,55,.15);
}

/* SECTIONS */

.section {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 100px 0;
}

.about {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 44px;
  align-items: center;
}

.about h2,
.gallery-section h2,
.services-section h2,
.contact-section h2 {
  margin: 0 0 34px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -1px;
}

.about p,
.service-card p,
.contact-section p {
  color: var(--muted);
  font-size: 17px;
}

.about img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-top: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: .45s ease;
}

.about img:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow:
    0 0 0 1px rgba(214, 160, 23, 0.45),
    0 28px 80px rgba(214, 160, 23, 0.18);
}

/* GALLERY */

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--border);
  filter: brightness(.88) contrast(1.08);
  cursor: zoom-in;
  transition:
    transform .45s ease,
    box-shadow .45s ease,
    border-color .45s ease,
    filter .45s ease;
}

.gallery-grid img:first-child {
  grid-row: span 2;
  height: 678px;
}

@media (hover:hover) {
  .gallery-grid img:hover {
    transform: scale(1.035);
    border-color: #d4af37;
    filter: brightness(1) contrast(1.12);
    box-shadow: 0 20px 45px rgba(212,175,55,.18);
  }
}

/* SERVICES */

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  padding: 30px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  transition:
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 22px;
}

@media (hover:hover) {
  .service-card:hover {
    transform: translateY(-6px);
    border-color: #d4af37;
    box-shadow: 0 18px 40px rgba(212,175,55,.12);
  }
}

/* CONTACT + MAP */

.contact-section {
  border-top: 1px solid var(--border);
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.map-section {
  margin-top: 60px;
}

.map-title {
  margin: 8px 0 28px;
  color: #fff;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.location-info {
  margin: 24px 0 34px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-info span {
  padding: 14px 18px;
  border: 1px solid rgba(212,175,55,.18);
  border-radius: 14px;
  background: rgba(17,17,17,.85);
  color: #d8d8d8;
  font-size: 15px;
}

.map-box {
  width: 100%;
  height: 340px;
  margin-top: 34px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,.35);
  background: #0d0d0d;
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(1) invert(.92) contrast(.88);
}

.map-box:hover {
  transform: translateY(-4px);
  border-color: #d4af37;
  box-shadow: 0 25px 70px rgba(212,175,55,.15);
}

/* FOOTER */

.site-footer {
  width: 100%;
  margin-top: 120px;
  padding: 70px 20px;
  border-top: 1px solid rgba(212,175,55,.12);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  color: #8d8d8d;
  text-align: center;
}

.site-footer img {
  width: 82px;
  margin-bottom: 18px;
  border-radius: 14px;
  opacity: .95;
}

.site-footer p {
  margin: 0;
  opacity: .75;
  font-size: 15px;
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.92);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 30px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.8);
  color: var(--gold-light);
  font-size: 34px;
  cursor: pointer;
}

/* FLOATING WHATSAPP */

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 110px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #148d33, #25d366);
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(37, 211, 102, 0.32);
  animation: whatsappPulse 2.6s ease-in-out infinite;
  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.floating-whatsapp span {
  transform: rotate(12deg);
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(34,197,94,.45);
}

/* REVEAL */

.reveal-item {
  opacity: 0;
  transform: translateY(45px);
  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.22,.61,.36,1);
  will-change: transform, opacity;
}

.reveal-item.show {
  opacity: 1;
  transform: none;
}

/* ANIMATIONS */

@keyframes pageFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes whatsappGlow {
  0%, 100% {
    box-shadow: 0 12px 30px rgba(37, 211, 102, .22);
  }

  50% {
    box-shadow: 0 18px 46px rgba(37, 211, 102, .38);
  }
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 16px 42px rgba(37, 211, 102, .28);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 22px 58px rgba(37, 211, 102, .44);
    transform: scale(1.05);
  }
}

/* TABLET */

@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid img:first-child {
    grid-row: auto;
    height: 330px;
  }
}

/* MOBILE */

@media (max-width: 820px) {
  body {
    animation: none !important;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 32px);
    max-width: 380px;
    padding: 12px 16px;
    gap: 8px;
    border-radius: 22px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(8, 8, 8, .92) !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .site-header.scrolled {
    padding: 9px 14px;
  }

  .logo-area {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .logo-area img,
  .site-header.scrolled .logo-area img {
    width: 32px;
    height: 32px;
  }

  .logo-area span,
  .site-header.scrolled .logo-area span {
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
  }

  .nav-menu {
    width: 100%;
    justify-content: center;
    gap: 38px;
    margin: 0;
    padding-top: 6px;
    font-size: 11px;
  }

  .hero {
    min-height: 100svh;
    padding: 155px 0 60px;
    align-items: center;
    justify-content: center;
    background-position: center;
  }

  .hero::after {
    background: linear-gradient(to bottom, transparent 72%, var(--black)) !important;
  }

  .hero-content {
    width: calc(100% - 40px);
    max-width: 360px;
    margin: 0 auto;
    padding: 0;
    transform: none;
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }

  .hero h1 {
    width: 100%;
    max-width: 320px;
    margin-bottom: 24px;
    font-size: clamp(38px, 11.6vw, 50px);
    line-height: .92;
    letter-spacing: -1.8px;
  }

  .hero-text {
    width: 100%;
    max-width: 320px;
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-info {
    width: 100%;
    max-width: 320px;
    gap: 9px;
  }

  .hero-info span {
    padding: 10px 15px;
    font-size: 12px;
  }

  .hero-tags {
    max-width: 320px;
    gap: 8px;
    margin-top: 30px;
  }

  .hero-tags span {
    padding: 7px 12px;
    font-size: 11px;
  }

  .hero-buttons {
    width: 100%;
    max-width: 320px;
    margin-top: 22px;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
  }

  .section {
    width: calc(100% - 32px);
    max-width: 380px;
    padding: 70px 0;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about h2,
  .gallery-section h2,
  .services-section h2,
  .contact-section h2 {
    font-size: 38px;
    line-height: 1;
  }

  .about p,
  .service-card p,
  .contact-section p {
    font-size: 16px;
  }

  .gallery-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img,
  .gallery-grid img:first-child {
    height: 280px;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .contact-buttons .btn {
    width: 100%;
  }

  .map-title {
    font-size: 24px;
  }

  .map-box {
    height: 260px;
    border-radius: 22px;
  }

  .map-box iframe {
    filter: none !important;
  }

  .site-footer {
    margin-top: 70px;
    padding: 44px 18px;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 90px;
    font-size: 24px;
  }

  .floating-whatsapp,
  .btn.primary {
    animation: none !important;
  }

  .about img:hover,
  .gallery-grid img:hover,
  .service-card:hover,
  .map-box:hover,
  .btn:hover,
  .floating-whatsapp:hover {
    transform: none !important;
  }

  .gallery-grid img,
  .about img,
  .service-card,
  .map-box,
  .btn,
  .floating-whatsapp {
    transition: none !important;
  }
}

/* SMALL MOBILE */

@media (max-width: 390px) {
  .site-header {
    width: calc(100% - 24px);
    max-width: 360px;
  }

  .nav-menu {
    gap: 30px;
  }

  .hero-content,
  .section {
    width: calc(100% - 28px);
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 46px);
  }
}
/* MOBILE SAFE ANIMATIONS */

@media (max-width: 820px) {
  .reveal-item {
    opacity: 0;
    transform: translateY(26px);
    transition:
      opacity .55s ease,
      transform .55s cubic-bezier(.22,.61,.36,1) !important;
    will-change: opacity, transform;
  }

  .reveal-item.show {
    opacity: 1;
    transform: translateY(0) !important;
  }

  .btn {
    transition:
      transform .22s ease,
      box-shadow .22s ease,
      background .22s ease,
      border-color .22s ease !important;
  }

  .btn:active {
    transform: scale(.97) !important;
  }

  .floating-whatsapp {
    transition:
      transform .25s ease,
      box-shadow .25s ease !important;
  }

  .floating-whatsapp:active {
    transform: scale(.94) !important;
  }

  .gallery-grid img,
  .about img,
  .service-card,
  .map-box {
    transition:
      opacity .35s ease,
      transform .35s ease,
      box-shadow .35s ease,
      border-color .35s ease !important;
  }
}