:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --white: #f5f0e8;
  --gray: #888;

  --section-px: 60px;
  --section-py: 100px;
  --nav-px: 60px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  cursor: default;
}

a,
button,
.dot,
.service-card,
.ref-card,
.social-link,
.nav-toggle,
.btn-gold,
.btn-outline,
.btn-submit {
  cursor: pointer;
}

.form-group {
  position: relative;
  margin-top: 1.2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: #111;
  border: 1.5px solid #2a2a2a;
  border-radius: 8px;
  color: var(--white);
  padding: 14px 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  width: 100%;
  outline: none;
  transition: border-color 0.3s;
  display: block;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  cursor: pointer;
}

.form-group textarea {
  resize: none;
  height: 130px;
  padding-top: 22px;
}

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

.floatingLabel {
  position: absolute;
  left: 16px;
  top: 14px;
  color: var(--gray);
  transition: 0.3s ease all;
  pointer-events: none;
  background-color: transparent;
  padding: 0 4px;
  font-size: 0.9rem;
}

.form-group input:focus ~ .floatingLabel,
.form-group input:not(:placeholder-shown) ~ .floatingLabel,
.form-group textarea:focus ~ .floatingLabel,
.form-group textarea:not(:placeholder-shown) ~ .floatingLabel,
.form-group select:focus ~ .floatingLabel,
.form-group select:valid ~ .floatingLabel {
  top: -10px;
  left: 12px;
  font-size: 0.75rem;
  background-color: var(--dark3);
  padding: 0 6px;
  color: var(--gold);
}

/* ═══ NAVBAR ═══ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 28px var(--nav-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), transparent);
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  padding: 18px var(--nav-px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 4px;
  color: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

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

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-links a,
.nav-links a:visited,
.nav-links a:active,
.nav-links a:focus {
  text-decoration: none;
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  padding: 4px;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}

.nav-close {
  display: none;
}

/* ═══ HERO SLIDER ═══ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
}

.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(10, 10, 10, 0.3) 50%,
    rgba(10, 10, 10, 0.65) 100%
  );
}

.slide-1 {
  background-color: #0f0f0f;
}
.slide-2 {
  background-color: #0d0d0d;
}
.slide-3 {
  background-color: #080808;
}

.hero-content {
  position: absolute;
  z-index: 10;
  left: var(--section-px);
  bottom: 120px;
  max-width: 600px;
  right: var(--section-px);
}

.hero-tag {
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 6rem);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

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

.hero-desc {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-btns {
  display: flex;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}

.trust-pill {
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: rgba(10, 10, 10, 0.5);
  color: rgba(245, 240, 232, 0.85);
  font-size: 0.72rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 8px 12px;
  cursor: pointer;
}

.trust-pill:hover {
  color: white;
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  -webkit-tap-highlight-color: transparent;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(245, 240, 232, 0.3);
  color: var(--white);
  padding: 14px 32px;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  -webkit-tap-highlight-color: transparent;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.slide-dots {
  position: absolute;
  bottom: 40px;
  right: var(--section-px);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

.dot {
  width: 24px;
  height: 2px;
  background: rgba(245, 240, 232, 0.3);
  transition: all 0.3s;
}

.dot.active {
  background: var(--gold);
  width: 48px;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: var(--section-px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    width: 40px;
  }
  50% {
    opacity: 1;
    width: 60px;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══ STATS BAR ═══ */
.stats-bar {
  background: var(--gold);
  padding: 24px var(--section-px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  color: var(--dark);
  letter-spacing: 2px;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.65);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(10, 10, 10, 0.2);
  flex-shrink: 0;
}

/* ═══ SECTIONS ═══ */
section {
  padding: var(--section-py) var(--section-px);
}

.section-tag {
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 20px;
}

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

/* ═══ HİZMETLER ═══ */
#hizmetler {
  background: var(--dark2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.service-card {
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.96),
    rgba(17, 17, 17, 0.96)
  );
  padding: 34px 28px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.16);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  transition: height 0.45s ease;
  border-radius: 0 6px 6px 0;
}

.service-card:hover {
  background: linear-gradient(180deg, rgba(19, 19, 19, 1), rgba(13, 13, 13, 1));
  border-color: rgba(201, 168, 76, 0.38);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.09);
  border: 1px solid rgba(201, 168, 76, 0.2);
  font-size: 2rem;
  margin-bottom: 20px;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.08);
  background: rgba(201, 168, 76, 0.14);
}

.service-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.6rem;
  color: rgba(201, 168, 76, 0.14);
  line-height: 1;
}

.service-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1.6px;
  margin-bottom: 12px;
  color: var(--white);
}

.service-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.7);
  margin-top: auto;
}

/* ═══ REFERANSLAR ═══ */
#referanslar {
  background: var(--dark);
}

.refs-intro {
  max-width: 500px;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 60px;
}

.refs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: #222;
  border: 1px solid #222;
}

.ref-card {
  background: var(--dark2);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.ref-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.ref-card:hover {
  background: var(--dark3);
  transform: translateY(-4px);
}

.ref-card:hover::after {
  transform: scaleX(1);
}

.ref-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: rgba(245, 240, 232, 0.3);
  margin-bottom: 8px;
  transition: color 0.3s;
}

.ref-card:hover .ref-logo {
  color: var(--gold);
}

.ref-type {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.2);
}

/* ═══ İLETİŞİM ═══ */
#iletisim {
  background: var(--dark3);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}

.contact-info h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #222;
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-icon {
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-detail label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-detail p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown),
.form-group select:invalid {
  border-color: #a14242;
}

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

.btn-submit {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 16px 40px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  align-self: flex-start;
  transition: all 0.3s;
  -webkit-tap-highlight-color: transparent;
}

.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-submit:disabled {
  opacity: 0.75;
  cursor: wait;
  transform: none;
}

.btn-submit .btn-spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(10, 10, 10, 0.25);
  border-top-color: rgba(10, 10, 10, 0.9);
  animation: spin 0.8s linear infinite;
  display: none;
}

.btn-submit.loading .btn-submit-text {
  display: none;
}

.btn-submit.loading .btn-spinner {
  display: inline-block;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.72);
  line-height: 1.45;
}

.form-consent input {
  margin-top: 2px;
  accent-color: var(--gold);
}

.security-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(245, 181, 74, 0.42);
  background: rgba(245, 181, 74, 0.08);
  color: rgba(245, 240, 232, 0.85);
  font-size: 0.78rem;
  line-height: 1.6;
}

.security-banner__icon {
  font-size: 1rem;
  line-height: 1.2;
  transform: translateY(2px);
}

.security-banner strong {
  color: var(--gold-light);
}

.info-note {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.06);
  color: rgba(245, 240, 232, 0.82);
  font-size: 0.78rem;
  line-height: 1.6;
}

.info-note strong {
  color: var(--gold-light);
}

/* ═══ FOOTER ═══ */
footer {
  background: #050505;
  padding: 60px var(--section-px) 30px;
  border-top: 1px solid #1a1a1a;
  position: relative;
  z-index: 10;
  clear: both;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  display: none;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.footer-textbtn {
  background: none;
  border: none;
  color: var(--gray);
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  transition: color 0.3s;
}

.footer-textbtn:hover {
  color: var(--white);
}

.social-links {
  display: none;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  color: var(--gray);
  transition: all 0.3s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.logo-footer {
  height: 50px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(136, 136, 136, 0.6);
}

.footer-cert {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cert-badge {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 4px 8px;
}

/* ═══ SCROLL REVEAL ═══ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.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;
}

/* ═══ SCROLL TOP BTN ═══ */
.scrollTopBtn {
  background: conic-gradient(
    var(--gold) var(--scroll-value, 0%),
    rgba(201, 168, 76, 0.15) var(--scroll-value, 0%)
  );
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: transparent;
  border: none;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  transition:
    opacity 0.4s,
    visibility 0.4s,
    transform 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 90;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

.scrollTopBtn::after {
  content: "↑";
  position: absolute;
  inset: 3px;
  background-color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: "DM Sans", sans-serif;
  font-size: 1.2rem;
  transition:
    background-color 0.3s,
    color 0.3s;
}

.scrollTopBtn:hover {
  transform: translateY(-2px) scale(1.08);
}

.scrollTopBtn:hover::after {
  background-color: #1a1a1a;
  color: var(--gold-light);
}

/* ═══ ÇEREZ KUTUSU & BUTONU (MENÜYÜ ASLA KAPATMAZ) ═══ */
.cookie-banner {
  display: none !important;
}

.cookie-box {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 9500;
  width: min(360px, calc(100vw - 28px));
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 20px;
  padding: 16px 16px 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  transform: translateY(140%);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease,
    visibility 0.4s;
}

.cookie-box.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-box-body {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.cookie-box-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.18);
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}

.cookie-box-text strong {
  display: block;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 4px;
}

.cookie-box-text p {
  font-size: 0.76rem;
  color: rgba(245, 240, 232, 0.74);
  line-height: 1.5;
  margin: 0;
}

.cookie-inline-link {
  background: none;
  border: none;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 0;
  font-size: 0.76rem;
  font-family: inherit;
}

.cookie-box-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.cookie-box-actions .cookie-btn {
  padding: 9px 16px;
  font-size: 0.7rem;
  border-radius: 999px;
  min-width: 110px;
}

.cookie-side-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 8900;
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.32);
  border-radius: 999px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.cookie-side-btn:hover {
  background: rgba(24, 24, 24, 1);
  border-color: rgba(201, 168, 76, 0.56);
  transform: translateY(-2px);
}

.cookie-btn {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.cookie-btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  box-shadow: 0 10px 22px rgba(201, 168, 76, 0.22);
}

.cookie-btn--gold:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.cookie-btn--ghost {
  background: rgba(245, 240, 232, 0.02);
  border: 1px solid rgba(245, 240, 232, 0.16);
  color: rgba(245, 240, 232, 0.8);
}

.cookie-btn--ghost:hover {
  border-color: rgba(245, 240, 232, 0.35);
  color: var(--white);
}

/* ═══ MODAL ═══ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10005;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

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

.modal-box {
  background: linear-gradient(
    180deg,
    rgba(16, 16, 16, 0.98),
    rgba(10, 10, 10, 0.98)
  );
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 22px;
  width: 100%;
  max-width: 680px;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.06), transparent);
  flex-shrink: 0;
}

.modal-header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.7rem, 2vw, 2.1rem);
  letter-spacing: 2px;
  color: var(--white);
}

.modal-close {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--gray);
  font-size: 1.1rem;
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
  line-height: 1;
}

.modal-close:hover {
  color: var(--white);
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.08);
  transform: rotate(90deg);
}

.modal-body {
  overflow-y: auto;
  padding: 28px 28px 20px;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 168, 76, 0.6) transparent;
  -webkit-overflow-scrolling: touch;
}

.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.45);
  border-radius: 999px;
}

.modal-date {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.18);
  font-size: 0.7rem;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.modal-body h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1.8px;
  color: var(--gold);
  margin: 26px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.14);
}

.modal-body p {
  font-size: 0.92rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.8;
}

.modal-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

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

.modal-footer {
  padding: 18px 28px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.01);
}

.modal-footer .cookie-btn {
  min-width: 170px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.72rem;
}

/* ═══ HARİTA ═══ */
.map-container-v3 {
  position: relative;
  max-width: 1200px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 4px solid #1a1a1a;
  display: block;
  width: calc(100% - 60px);
  margin: 40px auto;
  height: 400px;
  min-height: 320px;
  border-radius: 12px;
  background: #0c0c0c;
}

.map-container-v3 iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
  background: #0c0c0c;
  color-scheme: light;
}

.map-overlay-btn {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--dark);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  z-index: 5;
}

.map-overlay-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ═══ FORM & UYARI ═══ */
.warning {
  border: 1px solid rgba(245, 240, 232, 0.13);
  background: rgba(15, 15, 15, 0.92);
  border-radius: 8px;
  padding: 12px 14px;
  width: 100%;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.warning[hidden] {
  display: none !important;
}

.warning[data-type="error"] {
  border-color: rgba(220, 100, 100, 0.55);
  color: #f7b3b3;
  background: rgba(58, 19, 19, 0.38);
}

.warning[data-type="success"] {
  border-color: rgba(58, 180, 120, 0.55);
  color: #b2f5d2;
  background: rgba(8, 56, 35, 0.45);
}

/* ═══ QUICK CONTACT ═══ */
.quick-contact-bar {
  position: fixed;
  right: 20px;
  bottom: 88px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  pointer-events: none;
}

.quick-contact-bar .quick-fab {
  pointer-events: auto;
}

.quick-fab {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.quick-fab:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.quick-fab--phone {
  background: rgba(22, 22, 22, 0.95);
  color: var(--gold);
  backdrop-filter: blur(10px);
}

.quick-fab--wa {
  background: #25d366;
  color: #fff;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1200px) {
  :root {
    --section-px: 48px;
    --nav-px: 48px;
  }

  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
  }

  .contact-grid {
    gap: 50px;
  }
}

@media (max-width: 1024px) {
  :root {
    --section-px: 36px;
    --nav-px: 36px;
    --section-py: 80px;
  }

  .hero-content {
    max-width: 520px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .refs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .contact-grid {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  :root {
    --section-px: 24px;
    --nav-px: 24px;
    --section-py: 70px;
  }

  nav {
    padding: 20px var(--nav-px);
  }

  nav.scrolled {
    padding: 16px var(--nav-px);
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-close {
    display: none;
    position: fixed;
    top: 22px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: rgba(15, 15, 15, 0.9);
    color: var(--gold);
    font-size: 1.1rem;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    cursor: pointer;
  }

  .nav-links.open + .nav-close,
  .nav-links.open ~ .nav-close {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.99);
    padding: 100px 24px 40px;
    gap: 8px;
    z-index: 9999;
    overflow-y: auto;
  }

  .nav-links.open li {
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 8px;
  }

  .nav-links.open a {
    font-size: 1rem;
    display: block;
    padding: 10px 0;
    color: rgba(245, 240, 232, 0.8);
  }

  .nav-cta {
    margin-top: 16px !important;
    padding: 14px 24px !important;
    text-align: center;
    display: block;
  }

  .hero-content {
    left: var(--section-px);
    right: var(--section-px);
    bottom: 90px;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(2.8rem, 9vw, 4.5rem);
  }

  .hero-desc {
    font-size: 0.9rem;
    margin-bottom: 28px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .btn-gold,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .slide-dots {
    right: var(--section-px);
    bottom: 28px;
  }

  .scroll-hint {
    display: none;
  }

  .stats-bar {
    padding: 20px var(--section-px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stat {
    padding: 14px 0;
    border-bottom: 1px solid rgba(10, 10, 10, 0.15);
  }

  .stat:nth-last-child(-n + 2):not(.stat-divider) {
    border-bottom: none;
  }

  .stat-divider {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .service-card {
    padding: 36px 28px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .btn-submit {
    align-self: stretch;
    text-align: center;
  }

  footer {
    padding: 48px var(--section-px) 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-cert {
    justify-content: center;
    gap: 10px;
  }

  .modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .modal-box {
    max-height: 92vh;
    max-width: 100%;
    border-radius: 18px 18px 0 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .modal-header h2 {
    font-size: 1.6rem;
  }

  .map-container-v3 {
    width: calc(100% - 32px);
    height: 320px;
    min-height: 280px;
    background: #0c0c0c;
  }

  .map-container-v3 iframe {
    min-height: 280px;
    background: #0c0c0c;
  }
}

@media (max-width: 480px) {
  :root {
    --section-px: 18px;
    --nav-px: 18px;
    --section-py: 52px;
  }

  .logo {
    font-size: 1.6rem;
    letter-spacing: 3px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
  }

  .refs-grid {
    grid-template-columns: 1fr;
  }

  .ref-card {
    padding: 24px 16px;
  }

  .contact-item {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .map-overlay-btn {
    bottom: 16px;
    right: 16px;
    padding: 10px 18px;
    font-size: 13px;
  }

  .cookie-box {
    left: 14px;
    right: 14px;
    max-width: none;
    bottom: 14px;
  }

  .cookie-side-btn {
    left: 14px;
    bottom: 14px;
  }
}
