:root {
  --bg-dark: #05060a;
  --bg-section: #0d0f16;
  --accent: #f4b000;
  --accent-soft: rgba(244,176,0,0.16);
  --text-main: #f7f7f7;
  --text-muted: #9ca3af;
  --border: #1f2933;
  --danger: #ef4444;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 55%);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(2,6,23,0.96), rgba(2,6,23,0.88), transparent);
  border-bottom: 1px solid rgba(148,163,184,0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 0, #f4b000 0, #991b1b 45%, #020617 100%);
  box-shadow: 0 0 22px rgba(244,176,0,0.45);
  font-size: 1.2rem;
  font-weight: 800;
}

.brand-text-main {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-text-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  color: rgb(236, 236, 35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #d1d5db;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), #f97316);
  transition: width 0.2s ease-out;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-cta .btn {
  padding: 0.30rem 0.5rem;   /* daha ince yastık */
  font-size: 0.8rem;          /* yazı biraz küçük */
  border-radius: 900px;       /* tam kapsül */
  line-height: 1.1;
}
.nav-cta .btn .icon {
  font-size: 0.65rem;
}

.nav-cta .btn span + span {
  /* ikon ile yazı arasındaki mesafe */
  margin-left: 0.25rem;
}
@media (max-width: 720px) {
  .nav-cta .btn {
    padding: 0.40rem 0.6rem;
  }

  /* Mobilde sadece ikon kalsın istersen: */
  /* Yoruma alırsan yazılar da görünür */
  .nav-cta .btn span:not(.icon) {
    display: flex;
  }
}


.btn {
  border-radius: 999px;
  padding: 0.45rem 1rem;
  border: 1px solid var(--accent-soft);
  background: rgba(15,23,42,0.85);
  color: var(--text-main);
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: 0.16s ease-out;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn span.icon {
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #21c504);
  border-color: transparent;
  color: #111827;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(249,115,22,0.28);
}

.btn-primary:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 500px;
}


.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(15,23,42,0.9);
}



.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  color: #e5e7eb;
  font-size: 1.5rem;
  cursor: pointer;
}

/* HERO */
.hero {
  padding: 3rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.8);
  border: 1px solid var(--accent-soft);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  margin-bottom: 0.9rem;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34,197,94,0.7);
}

.hero-title {
  font-size: clamp(2rem, 3.3vw, 2.7rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-title span.accent {
  background: linear-gradient(to right, #facc15, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 32rem;
  margin-bottom: 1.4rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.7rem;
}

.hero-pill {
  font-size: 0.78rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(15,23,42,0.75);
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-pill:hover {
  background: rgba(48, 211, 7, 0.95);
  border-color: #22c55e;
  color: #111827; 
  
}
.hero-pill:hover .icon {
  animation: pulse 1s infinite;
}


.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.2rem;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-note b {
  color: #e5e7eb;
}
.hero-note h4{  
  color: #f4b000;   
  font-weight: bold;  
  transition: background-color 0.3s ease, transform 0.3s ease;
  
}
.hero-note h4:hover{  
  transform: scale(1.05); /* hafif büyüme efekti */
}

.hero-media {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,0.2);
  background: radial-gradient(circle at top left,#f97316 0,#0b1120 45%,#020617 100%);
  box-shadow: 0 18px 40px rgba(15,23,42,0.9);
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 8% 0,rgba(248,250,252,0.06) 0,transparent 45%);
  pointer-events: none;
}

.hero-media-inner {
  position: relative;
  padding: 1.4rem;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 1rem;
  height: 100%;
}

.hero-media-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.badge {
  font-size: 0.75rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.4);
  background: rgba(15,23,42,0.85);
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.badge span.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-media-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-media-sub {
  font-size: 0.75rem;
  color: #e5e7eb;
  opacity: 0.8;
}

.hero-photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.6rem;
  align-items: stretch;
}

.hero-photo-main,
.hero-photo-side {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.9);
  background: #020617;
  position: relative;
}

.hero-photo-main img,
.hero-photo-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 5s ease-out;
}

.hero-photo-main:hover img,
.hero-photo-side:hover img {
  transform: scale(1.4);
}

.hero-photo-label {
  position: absolute;
  left: 0.6rem;
  bottom: 0.6rem;
  background: rgba(15,23,42,0.85);
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  border: 1px solid rgba(148,163,184,0.3);
  color: #e5e7eb;
}

/* SECTIONS */
section {
  padding: 3.5rem 0;
}

section:nth-of-type(odd) {
  background: transparent;
}

section:nth-of-type(even) {
  background: var(--bg-section);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.section-title {
  font-size: 1.7rem;
  font-weight: 900;
  
}

.section-title span {
  color: var(--accent);
  text-align: center;

}

.section-sub {
  font-size: 1rem;
  color: #f4b000;  
  max-width: 500px; 
  
}

/* HAKKIMIZDA */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
}

.bullet-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.bullet-list li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.4rem;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.2rem;
}

.stat-box {
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  background: rgba(15,23,42,0.85);
  min-width: 140px;
}
.stat-box:hover {
  background: radial-gradient(circle at top left, rgba(244,176,0,0.12), #020617);
  border-color: #f4b000; 
  transition: transform 0.3s ease; /* animasyon geçişi */
  transform: translateY(-3px); /* hafif yukarı kaldırma */
  transform: scale(1.05); /* %5 büyütme */
}

.stat-key {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.15rem;
}

.stat-value {
  font-size: 1.1rem;
  font-weight: 700;
}

.stat-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.label-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 0.75rem;
  color: #fbbf24;
  margin-bottom: 0.4rem;
}
.about-note:hover {
  background: radial-gradient(circle at top right, rgba(244,176,0,0.18), #020617);
  border-color: #f4b000;
  transition: transform 0.3s ease; /* animasyon geçişi */
  transform: translateY(-3px); /* hafif yukarı kaldırma */
  transform: scale(1.05); /* %5 büyütme */

}

.about-main-text {
  font-size: 0.95rem;
  color: #e5e7eb;
  margin-bottom: 1rem;
}

.stat-box-margin {
  margin-bottom: 1rem;
}

.stat-value-text {
  font-size: 0.88rem;
  color: #e5e7eb;
}

/* -------- HAKKIMIZDA LAYOUT -------- */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.about-main {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-main-text {
  font-size: 0.9rem;
  color: var(--text-main);
}

.about-list {
  margin: 0;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-list li::marker {
  color: var(--accent);
}

/* Sağ taraf */

.about-side {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}


.stats-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.stat-box {
  border-radius: 0.8rem;
  border: 1px solid var(--border);
  padding: 0.7rem 0.75rem;
  background: radial-gradient(circle at top left, rgba(248,250,252,0.03), #020617);
}

.stat-key {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.stat-value {
  font-size: 1rem;
  font-weight: 600;
  color: #e5e7eb;
}

.stat-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.about-note {
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  background: radial-gradient(circle at top right, rgba(30,64,175,0.25), #020617);
  padding: 0.8rem 0.85rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.about-note-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e5e7eb;
}

/* Mobil uyum */

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .stats-row {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* HİZMETLER */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}


.service-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: radial-gradient(circle at top, rgba(15,23,42,0.85) 0, rgba(15,23,42,0.98) 55%, #020617 100%);
  padding: 1rem;
  font-size: 0.9rem;
}
.service-card:hover{
  background: radial-gradient(circle at top left, rgba(244,176,0,0.12), #020617);
  border-color: #f4b000; 
  transition: transform 0.3s ease; /* animasyon geçişi */
  transform: translateY(-3px); /* hafif yukarı kaldırma */
  transform: scale(1.05); /* %5 büyütme */
}

.service-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.service-title {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.service-body {
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.05rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.28);
  font-size: 0.7rem;
  color: #e5e7eb;
}

/* GALERİ / VİDEO */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.gallery-item {
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.8);
  background: #020617;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease-out;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-tag {
  position: absolute;
  left: 0.45rem;
  bottom: 0.45rem;
  font-size: 0.7rem;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.85);
  border: 1px solid rgba(148,163,184,0.35);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.video-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #020617;
}

.video-card video {
  width: 100%;
  display: block;
}

.video-caption {
  padding: 0.75rem 0.9rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ÖNCESİ / SONRASI */
.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

/* Kartlar: hover’da hafif kaldır + gölge + zoom */
.ba-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
  background: #020617;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ba-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.ba-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(15,23,42,0.38) 0, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,23,42,0.9);
  border-color: rgba(248,250,252,0.18);
}

.ba-card:hover img {
  transform: scale(1.05);
}

.ba-card:hover::after {
  opacity: 1;
}

/* Etiketler: daha net, rozet gibi */
.ba-label {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  padding: 0.38rem 0.9rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: 999px;
  background: rgba(15,23,42,0.96);
  border: 1px solid rgba(148,163,184,0.4);
}

.ba-label.before {
  border-bottom: 1px solid rgba(248,113,113,0.55);
  color: #fecaca;
}

.ba-label.after {
  border-bottom: 1px solid rgba(52,211,153,0.65);
  color: #bbf7d0;
}

/* Alt açıklama */
.ba-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.6rem 0.85rem;
  font-size: 0.78rem;
  color: #e5e7eb;
  background: linear-gradient(to top, rgba(15,23,42,0.95), rgba(15,23,42,0.0));
}


/* İLETİŞİM */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.contact-card {
  border-radius: 1.2rem;
  border: 1px solid var(--border);
  padding: 1.1rem 1.2rem;
  background: rgba(15,23,42,0.95);
  font-size: 0.9rem;
}

.contact-row {
  margin-bottom: 0.7rem;
}

.contact-row b {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.1rem;
}

.contact-row span {
  font-size: 0.95rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.map-embed {
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 230px;
  background: #020617;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(31,41,55,0.95);
  background: #020617;
  padding: 1.3rem 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-media {
    order: -1;
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .video-grid,
  .before-after {
    grid-template-columns: minmax(0, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .nav-open .nav-links,
  .nav-open .nav-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0.75rem;
  }
  .nav {
    flex-wrap: wrap;
  }
  section {
    padding: 2.5rem 0;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

#fiyat {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 500px;
  color: var(--accent);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 0 1.25rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.footer-brand .brand-logo {
  flex-shrink: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.contact-item a {
  color: inherit;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--accent-soft);
  font-size: 0.9rem;
}

/* Alt bar */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 0.9rem 0 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Yuvarlak sosyal butonlar */
.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(148,163,184,0.25), rgba(15,23,42,1));
  border: 1px solid rgba(148,163,184,0.7);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.social-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* Renkler */
.social-icon--fb svg path {
  fill: #e5e7eb;
}

.social-icon--ig svg rect {
  fill: none;
  stroke: #e5e7eb;
  stroke-width: 1.6;
}

.social-icon--ig svg circle {
  fill: none;
  stroke: #e5e7eb;
  stroke-width: 1.6;
}

/* Hover etkisi */
.social-icon:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(15,23,42,0.9);
}


/* Küçük ekranlarda footer hizası */
@media (max-width: 720px) {
  .footer-content {
    flex-direction: column;
  }
}

.brand-logo img {
  width: 70px;   /* 56-72 arası deneyebilirsin */
  height: auto;
}
.brand-logo {
  width: auto;
  height: auto;
  padding: 0; /* Gerekirse kaldırabilirsin */
  border: none; /* Gerekirse kaldırabilirsin */
  box-shadow: none; /* Gerekirse kaldırabilirsin */
  background: transparent; /* Gerekirse kaldırabilirsin */
}

/* -------- GALERİ LIGHTBOX -------- */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  display: none; /* varsayılan kapalı */
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 999;
}

.lightbox-overlay.is-open {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: min(980px, 100%);
  max-height: 100%;
  background: radial-gradient(circle at top, rgba(15,23,42,0.95), #020617);
  border-radius: 1.1rem;
  border: 1px solid rgba(148,163,184,0.4);
  box-shadow: 0 24px 80px rgba(15,23,42,0.95);
  padding: 1rem 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

#lightbox-img {
  width: 100%;
  max-height: calc(100vh - 180px);
  object-fit: contain;
  border-radius: 0.9rem;
  background: #020617;
}

.lightbox-caption {
  font-size: 0.85rem;
  color: #e5e7eb;
  padding: 0.3rem 0.25rem 0.5rem;
  text-align: left;
  opacity: 0.9;
}

/* Kapat butonu */
.lightbox-close {
  position: absolute;
  top: 0.4rem;
  right: 0.6rem;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
  background: rgba(15,23,42,0.9);
  color: #e5e7eb;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: rgba(30,64,175,0.95);
}

/* Küçük ekranlar için hafif ayar */
@media (max-width: 720px) {
  .lightbox-content {
    padding: 0.7rem 0.7rem 0.6rem;
    border-radius: 0.9rem;
  }

  #lightbox-img {
    max-height: calc(100vh - 150px);
  }
}

/* Galeri görsellerine "zoom" hissi */
.gallery-item img {
  cursor: zoom-in;
}

/* -------- SÜREÇ + SSS LAYOUT -------- */

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
  color: #e5e7eb;
}

.faq-heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Süreç (4 adım) */

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
}


.process-card {
  position: relative;
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.03), #020617);
  padding: 0.8rem 0.8rem 0.7rem 0.95rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.5rem 0.6rem;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.process-card:hover {
  
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.9);
  background: radial-gradient(circle at top left, rgba(244,176,0,0.12), #020617);
  border-color: #f4b000; 
  transition: transform 0.3s ease; /* animasyon geçişi */
  transform: translateY(-3px); /* hafif yukarı kaldırma */
  transform: scale(1.05); /* %5 büyütme */
}

.process-step {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(244, 176, 0, 0.1);
  border: 1px solid rgba(244, 176, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fde68a;
  margin-top: 0.15rem;
}

.process-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.process-text {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* SSS (akordeon) */



.faq-block {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: radial-gradient(circle at top right, rgba(30, 64, 175, 0.18), #020617);
  padding: 0.9rem 0.95rem;
  color: #e5e7eb;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.faq-item {
  border-radius: 0.7rem;
  border: 1px solid rgba(51, 65, 85, 0.9);
  background: rgba(15, 23, 42, 0.9);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-item.is-open {
  border-color: rgba(244, 176, 0, 0.9);
  background: radial-gradient(circle at top left, rgba(244, 176, 0, 0.13), rgba(15, 23, 42, 0.98));
}

.faq-question {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border: none;
  background: transparent;
  color: #e5e7eb;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.2s ease;
  color: #f4b000;
  
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg); 

  
}

.faq-answer {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0 0.7rem 0.6rem;
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* Responsive */

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}


#sss{  
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;

  width: 400px; /* Uzunluk ayarlanabilir */
  height: 4px;
  background-color: #FFD700; /* Sarı renk */
  margin: 0 auto; /* Ortalamak için */
  border-radius: 2px;


}

.İLETİŞİM {
  background-color: #f4b000; /* sıcak sarı ton */
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.İLETİŞİM:hover {
  background-color: #d99a00; /* biraz daha koyu ton */
  transform: scale(1.05); /* hafif büyüme efekti */
}