:root {
  /* Buradaki iki rengi logo.jpg içinden eyedropper ile alıp güncelleyebilirsin */
  --gold: #d4af37;
  --gold-light: #f4d98a;
  --bg-dark: #070707;
  --bg-section: #111111;
  --text-light: #f7f7f7;
  --text-muted: #c0c0c0;
  --accent: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: radial-gradient(circle at top, #1e1e1e 0, #050505 55%);
  color: var(--text-light);
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* HEADER / NAVBAR */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: linear-gradient(90deg, rgba(7, 7, 7, 0.94), rgba(7, 7, 7, 0.8));
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 64px;
  width: auto;
}

/* Eski text tabanlı logo stilleri kaldırıldı */

.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transition: width 0.25s ease-out;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: radial-gradient(circle at 0 0, rgba(244, 217, 138, 0.16), transparent);
  color: var(--gold-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta:hover {
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  color: #111;
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.8);
  transform: translateY(-1px);
}

/* MOBILE NAV TOGGLE */
.nav-toggle {
  display: none;
  width: 28px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  height: 3px;
  background: var(--gold-light);
  border-radius: 999px;
  transition: all 0.25s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 800px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.2rem;
    border-radius: 0 0 0 18px;
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 0.25rem;
  }

  .nav-toggle {
    display: flex;
  }
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 15% 0, rgba(244, 217, 138, 0.16), transparent 60%),
    radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.18), transparent 65%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(7, 7, 7, 0.8);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 0, #ffffff, var(--gold));
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.9);
}

.hero-title {
  font-size: clamp(2.3rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-title .highlight {
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 1.8rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.badge {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-size: 0.75rem;
  color: var(--gold-light);
  background: rgba(7, 7, 7, 0.8);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #111;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.8);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary span {
  font-size: 1.1rem;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.95);
  filter: brightness(1.05);
}

.btn-ghost {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: transparent;
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-ghost:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-light);
}

.hero-meta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-meta .label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--gold-light);
  margin-bottom: 0.2rem;
}

.hero-meta strong {
  font-size: 1rem;
  color: var(--accent);
}

/* HERO RIGHT - CARD */
.hero-card {
  background: radial-gradient(circle at top, rgba(244, 217, 138, 0.08), rgba(10, 10, 10, 0.98));
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow:
    0 0 40px rgba(0, 0, 0, 0.8),
    0 0 26px rgba(212, 175, 55, 0.35);
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 0, rgba(244, 217, 138, 0.16), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(212, 175, 55, 0.16), transparent 65%);
  opacity: 0.8;
  pointer-events: none;
}

.hero-card-inner {
  position: relative;
  z-index: 1;
}

.card-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.45);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.card-map {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: radial-gradient(circle at 10% 0, #202020, #050505);
  padding: 1rem;
  margin-bottom: 1.4rem;
  overflow: hidden;
}

.card-map-grid {
  position: relative;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 26px 26px;
  padding: 1.2rem 1.1rem;
}

.card-map-location {
  position: absolute;
  top: 35%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.9);
  background: radial-gradient(circle at 30% 0, #ffffff, var(--gold));
  box-shadow:
    0 0 12px rgba(212, 175, 55, 0.9),
    0 0 32px rgba(212, 175, 55, 0.5);
  animation: pulse 1.6s infinite ease-out;
}

.card-map-path {
  position: absolute;
  inset: 30% 15%;
  border-radius: 999px;
  border: 1px dashed rgba(212, 175, 55, 0.65);
  opacity: 0.8;
}

.card-stats {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.card-stats strong {
  display: block;
  color: var(--accent);
  font-size: 0.95rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 0.3rem;
}

.card-footer-left {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.card-footer-left span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  color: var(--gold-light);
  margin-bottom: 0.1rem;
}

.status-pill {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.5);
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold-light);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 8px rgba(46, 204, 113, 0.9);
}

/* SECTION BASE STYLES */
section {
  padding: 5rem 1.5rem;
  background: var(--bg-dark);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  background: #050505;
}

.section-header h2 {
  font-size: 1.8rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  max-width: 620px;
  margin: 0.35rem auto 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* SERVICES SECTION */
#services {
  background: radial-gradient(circle at top, #151515, #050505);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: rgba(10, 10, 10, 0.96);
  border-radius: 18px;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.85);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 0 0, rgba(244, 217, 138, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 0, #ffffff, var(--gold));
  border: 1px solid rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #111;
  font-size: 1.3rem;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.7);
}

.service-title {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.service-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.7rem;
}

.service-tags span {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold-light);
}

/* PROJECTS SECTION */
#projects {
  background: var(--bg-section);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

.project-card {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
}

.project-image {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, #303030, #121212);
  overflow: hidden;
}

.project-image-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 0, rgba(244, 217, 138, 0.18), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(212, 175, 55, 0.16), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.85;
}

.project-content {
  padding: 1.1rem 1.2rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.project-title {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.project-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.project-footer {
  margin-top: auto;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-badge {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  font-size: 0.7rem;
  color: var(--gold-light);
}

/* ABOUT SECTION */
#about {
  background: radial-gradient(circle at 0 0, #151515, #050505);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1.5rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.about-list li::before {
  content: "◆";
  margin-right: 0.4rem;
  color: var(--gold-light);
  font-size: 0.7rem;
}

.about-highlight {
  margin-top: 1.3rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(7, 7, 7, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-size: 0.86rem;
}

.about-highlight strong {
  color: var(--gold-light);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-stat-card {
  border-radius: 16px;
  padding: 1rem;
  background: rgba(10, 10, 10, 0.96);
  border: 1px solid rgba(212, 175, 55, 0.3);
  text-align: center;
}

.about-stat-card h3 {
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.about-stat-card span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

/* CONTACT SECTION */
#contact {
  background: #050505;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: rgba(10, 10, 10, 0.98);
  border-radius: 18px;
  padding: 1.7rem 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.85);
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-row .label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--gold-light);
}

.contact-row a {
  color: var(--gold-light);
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.78rem;
}

.contact-badges span {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-light);
}

/* WhatsApp hızlı iletişim rozet linkleri */
.contact-badge-link {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-light);
  cursor: pointer;
}

.contact-badge-link:hover {
  background: rgba(212, 175, 55, 0.12);
}

form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

input,
textarea {
  width: 100%;
  padding: 0.7rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(120, 120, 120, 0.6);
  background: rgba(7, 7, 7, 0.9);
  color: var(--text-light);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.5);
  background: #050505;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* WHATSAPP BUTTON */
.whatsapp-floating {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 900;
}

.whatsapp-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: radial-gradient(circle at 30% 0, #ffffff, #25d366);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b2b16;
  font-size: 1.5rem;
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.9);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.9);
  filter: brightness(1.05);
}

/* FOOTER */
footer {
  padding: 1.5rem;
  background: #020202;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

footer .brand {
  color: var(--gold-light);
  font-weight: 500;
}

/* LOGO MOBILE AYARI */
@media (max-width: 600px) {
  .logo-img {
    height: 48px;
  }
}

/* UTILITIES */
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.35);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.35);
    opacity: 0;
  }
}
