@charset "UTF-8";

/* ==========================================
   DEĞİŞKENLER VE RENKLER
========================================== */
:root {
  --bg1: #0b1220;
  --bg2: #121b33;
  --bg3: #19294f;
  --text: #e8eef7;
  --muted: #9fb2c7;
  --primary: #f1c27d;
  --accent: #5ec2ff;
  --border: rgba(255,255,255,.08);
  --shadow: 0 6px 24px rgba(0,0,0,.4);
  --radius: 16px;
}

/* ==========================================
   GENEL
========================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(270deg, var(--bg1), var(--bg2), var(--bg1));
  background-size: 600% 600%;
  animation: bgMove 18s ease infinite;
  overflow-x: hidden;
  line-height: 1.6;
}

@keyframes bgMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  font-weight: 700;
  margin-bottom: .6rem;
  text-align: center;
}
p { color: var(--muted); margin: .5rem 0; }
a { color: var(--accent); text-decoration: none; transition: .3s; }
a:hover { color: var(--primary); }

/* ==========================================
   HEADER
========================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,17,32,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: background .3s ease;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}
.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
}
.logo span { color: var(--primary); }

.menu-btn {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,.3);
  color: var(--text);
  padding: 6px 12px;
  font-size: 1.4rem;
  border-radius: 10px;
  cursor: pointer;
}
.menu {
  display: flex;
  gap: 20px;
  align-items: center;
}
.menu a {
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 8px;
}
.menu a:hover,
.menu a[aria-current="page"] {
  background: rgba(255,255,255,.1);
  color: var(--text);
}

@media (max-width: 820px) {
  .menu-btn { display: block; }
  .menu {
    position: absolute;
    top: 64px;
    right: 20px;
    background: var(--bg2);
    flex-direction: column;
    padding: 12px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: .3s;
  }
  .menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
}

/* ==========================================
   HERO
========================================== */
.hero {
  text-align: center;
  padding: 100px 0;
  background: radial-gradient(600px 300px at 80% 10%, rgba(241,194,125,.1), transparent 70%);
}
.hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--primary);
}
.hero p {
  color: var(--muted);
  max-width: 700px;
  margin: 12px auto 24px;
}
.cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  background: var(--primary);
  color: #000;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(241,194,125,.25);
  transition: .3s;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: var(--text);
}

/* ==========================================
   GENEL BÖLÜM STİLLERİ
========================================== */
.section {
  margin: 80px auto;
  padding: 60px 30px;
  background: linear-gradient(145deg, var(--bg2), var(--bg3));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.section h2 {
  color: var(--primary);
  margin-bottom: 24px;
}
.section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ==========================================
   NEDEN BİZ
========================================== */
.highlight {
  text-align: center;
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  border-radius: 24px;
  padding: 60px 40px;
  margin: 80px auto;
  box-shadow: 0 10px 40px rgba(0,0,0,.4);
  max-width: 900px;
  position: relative;
}
.highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(94,194,255,.15), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(241,194,125,.15), transparent 60%);
  border-radius: 24px;
  z-index: 0;
}
.highlight h2 {
  color: var(--primary);
  position: relative;
  z-index: 2;
  font-size: clamp(26px, 3vw, 36px);
}
.highlight ul {
  list-style: none;
  margin: 30px 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.highlight li {
  font-size: 18px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.highlight .btn {
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

/* ==========================================
   TEKNOLOJİ ŞERİDİ (SABİT)
========================================== */
.tech-strip {
  width: 100%;
  background: linear-gradient(90deg, rgba(18,27,51,.8), rgba(15,22,40,.8));
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tech-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
  max-width: 900px;
}
.tech-slide img {
  height: 52px;
  opacity: 0.8;
  filter: grayscale(100%) brightness(1.1);
  transition: 0.3s;
}
.tech-slide img:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .tech-slide {
    gap: 40px;
  }
  .tech-slide img {
    height: 42px;
  }
}

/* ==========================================
   KARTLAR / FİYATLAR / REFERANSLAR
========================================== */
.grid, .cards, .pricing, .references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.card, .price-card, .ref-card {
  background: linear-gradient(180deg, var(--bg2), var(--bg1));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: .35s;
}
.card:hover, .price-card:hover, .ref-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(94,194,255,.2);
}
.price-card h3, .ref-card h3 { color: var(--primary); }
.price { font-size: 1.8rem; font-weight: 800; color: var(--primary); }

/* ==========================================
   FORM / İLETİŞİM
========================================== */
form { max-width: 600px; margin: 40px auto; }
label { display: block; margin-top: 15px; font-weight: 600; }
input, textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  background: #0e1730;
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(94,194,255,.3);
}
textarea { resize: vertical; min-height: 120px; }

/* ==========================================
   FOOTER
========================================== */
.site-footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 20px;
  margin-top: 60px;
  color: var(--muted);
}

/* ==========================================
   SCROLLBAR / FOCUS
========================================== */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.15);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,.25);
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
/* ==========================================
   REFERANSLAR SAYFASI DÜZENİ
========================================== */
.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.ref-card {
  background: linear-gradient(180deg, var(--bg2), var(--bg1));
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
}

.ref-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(94, 194, 255, 0.2);
}

.ref-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.ref-card:hover img {
  transform: scale(1.05);
  opacity: 0.95;
}

.ref-info {
  padding: 18px 20px;
}

.ref-info h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.ref-info h3 a {
  color: var(--primary);
  text-decoration: none;
}

.ref-info h3 a:hover {
  text-decoration: underline;
}

.ref-info p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Mobilde daha düzenli görünüm */
@media (max-width: 768px) {
  .ref-card img {
    height: 140px;
  }
  .ref-info {
    padding: 14px;
  }
}
/* ==========================================
   ÜCRETLER SAYFASI TASARIMI
========================================== */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.price-card {
  background: linear-gradient(180deg, rgba(23, 33, 55, 0.9), rgba(12, 18, 30, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  padding: 25px 22px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #5ec2ff, #f1c27d);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(94, 194, 255, 0.25);
}

.price-card h3 {
  font-size: 1.3rem;
  color: #5ec2ff;
  margin-bottom: 10px;
}

.price-card .price {
  font-size: 1.6rem;
  font-weight: bold;
  color: #f1c27d;
  margin-bottom: 14px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.price-card ul li {
  position: relative;
  margin: 8px 0;
  padding-left: 26px;
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}

/* Özel ikonlar (tik işareti gibi) */
.price-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #5ec2ff;
  font-weight: bold;
  font-size: 1rem;
}

/* En popüler pakete özel parıltı */
.price-card.popular {
  background: linear-gradient(180deg, rgba(50, 80, 120, 0.95), rgba(20, 30, 50, 0.95));
  border: 1px solid rgba(241, 194, 125, 0.6);
  box-shadow: 0 0 25px rgba(241, 194, 125, 0.3);
}
.price-card.popular::before {
  background: linear-gradient(90deg, #f1c27d, #5ec2ff);
}
.price-card.popular h3 {
  color: #f1c27d;
}

/* Alt bilgi notu */
.note {
  font-size: 0.9rem;
  text-align: center;
  color: #aaa;
  margin-top: 40px;
  font-style: italic;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
  .pricing {
    grid-template-columns: 1fr;
  }
  .price-card {
    padding: 22px 18px;
  }
}
/* ==========================================
   HAKKIMIZDA – KURUMSAL FİNAL TASARIM
========================================== */

/* Genel düzen */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 20px;
}

.section h1 {
  text-align: center;
  margin-bottom: 25px;
  color: #5ec2ff;
  font-size: 2.2rem;
  letter-spacing: 0.5px;
  font-family: "Poppins", "Segoe UI", Roboto, sans-serif;
}

.section p {
  text-align: center;
  color: #ddd;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto 50px;
  font-size: 1rem;
  font-family: "Poppins", "Segoe UI", Roboto, sans-serif;
}

/* Grid düzeni – Misyon & Vizyon */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 80px;
}

/* Kart tasarımı */
.card {
  background: linear-gradient(180deg, rgba(23, 33, 55, 0.92), rgba(12, 18, 30, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4);
  padding: 40px 28px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #5ec2ff, #f1c27d);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(94, 194, 255, 0.25);
}

/* Başlık */
.card h2 {
  color: #f1c27d;
  margin-bottom: 20px;
  font-size: 1.5rem;
  letter-spacing: 0.4px;
  font-family: "Poppins", "Segoe UI", Roboto, sans-serif;
}

/* Paragraflar */
.card p {
  color: #ccc;
  line-height: 1.7;
  font-size: 1rem;
  font-family: "Poppins", "Segoe UI", Roboto, sans-serif;
}

/* Yaklaşımımız kutusu */
.section .card:last-of-type {
  margin-top: 90px; /* Yukarıdaki kartlardan uzaklaştır */
}

.section .card:last-of-type h2 {
  margin-bottom: 25px;
  color: #5ec2ff;
}

/* Yaklaşımımız listesi (sade kurumsal görünüm) */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.steps li {
  font-size: 1.05rem;
  color: #d8d8d8;
  line-height: 1.8;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: "Poppins", "Segoe UI", Roboto, sans-serif;
  letter-spacing: 0.3px;
}

.steps li:last-child {
  border-bottom: none;
}

/* Hover etkisi */
.steps li:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.25s ease;
  padding-left: 6px;
}

/* Responsive düzen */
@media (max-width: 992px) {
  .section {
    padding: 50px 18px;
  }
  .grid {
    gap: 30px;
    margin-bottom: 60px;
  }
  .card {
    padding: 32px 22px;
  }
  .section .card:last-of-type {
    margin-top: 60px;
  }
}

@media (max-width: 600px) {
  .section h1 {
    font-size: 1.8rem;
  }
  .section p {
    font-size: 0.95rem;
  }
  .card h2 {
    font-size: 1.3rem;
  }
  .steps li {
    font-size: 0.95rem;
  }
}
/* ==========================================
   GÜLMÜŞ SOFT – İLETİŞİM (SVG İKONLU)
========================================== */

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  background: rgba(23, 33, 55, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 12px;
  transition: all 0.35s ease;
  font-size: 1rem;
  font-family: "Poppins", "Segoe UI", Roboto, sans-serif;
  position: relative;
}

/* --- ORTAK İKON STİLİ --- */
.contact-btn::before {
  content: "";
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #5ec2ff;
  transition: all 0.3s ease;
}

/* --- İKONLAR (SVG MASK PATH) --- */

/* Instagram */
.contact-btn.insta::before {
  mask-image: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M7.5 2C4.46 2 2 4.46 2 7.5v9C2 19.54 4.46 22 7.5 22h9c3.04 0 5.5-2.46 5.5-5.5v-9C22 4.46 19.54 2 16.5 2h-9ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm5.75-.25a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"/></svg>');
}

/* Mail */
.contact-btn.mail::before {
  mask-image: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Zm8 7 8-5H4l8 5Zm0 2-8-5v10h16V8l-8 5Z"/></svg>');
}

/* Telefon */
.contact-btn.phone::before {
  mask-image: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.6 10.8a15.1 15.1 0 0 0 6.6 6.6l2.2-2.2a1 1 0 0 1 1-.25 11 11 0 0 0 3.4.54 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C11.85 21 3 12.15 3 1a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1 11 11 0 0 0 .54 3.4 1 1 0 0 1-.25 1L6.6 10.8Z"/></svg>');
}

/* WhatsApp */
.contact-btn.whatsapp::before {
  mask-image: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a9.93 9.93 0 0 0 1.46 5.18L2 22l4.95-1.43A10 10 0 1 0 12 2Zm0 18a8 8 0 0 1-4.12-1.13l-.3-.18-2.93.84.84-2.84-.18-.3A7.92 7.92 0 0 1 4 12a8 8 0 1 1 8 8Zm3.73-5.48c-.2-.1-1.19-.59-1.37-.65s-.32-.1-.46.1-.53.65-.65.79-.24.15-.44.05a6.61 6.61 0 0 1-1.94-1.2 7.19 7.19 0 0 1-1.33-1.65c-.1-.2 0-.3.1-.4s.2-.24.3-.36a1.31 1.31 0 0 0 .2-.32.37.37 0 0 0 0-.4c0-.1-.46-1.12-.63-1.52s-.33-.35-.46-.36h-.4a.76.76 0 0 0-.55.26 2.3 2.3 0 0 0-.72 1.7 3.98 3.98 0 0 0 .85 2.05A9.22 9.22 0 0 0 11 15.9a9.45 9.45 0 0 0 3.94.9 3.42 3.42 0 0 0 2.25-.77 1.85 1.85 0 0 0 .6-1.4c0-.25 0-.45-.07-.5s-.18-.1-.38-.2Z"/></svg>');
}

/* Hover efektleri */
.contact-btn:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 0 18px rgba(94, 194, 255, 0.25);
}

.contact-btn.insta:hover::before { background-color: #E1306C; }
.contact-btn.mail:hover::before { background-color: #0073ff; }
.contact-btn.phone:hover::before { background-color: #5ec2ff; }
.contact-btn.whatsapp:hover::before { background-color: #25D366; }

/* Mobil */
@media (max-width: 768px) {
  .contact-links {
    gap: 12px;
  }
  .contact-btn {
    font-size: 0.95rem;
    padding: 12px 16px;
  }
  .contact-btn::before {
    width: 20px;
    height: 20px;
  }
}

/* ==========================================
   HARİTA (GOOGLE MAP) STİLİ
========================================== */

.map-embed {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 25px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(0.9) contrast(1.05) saturate(1.1);
  transition: all 0.3s ease;
}

.map-embed iframe:hover {
  filter: brightness(1) contrast(1.15) saturate(1.2);
  transform: scale(1.02);
}

/* Mobil görünümde yüksekliği azalt */
@media (max-width: 768px) {
  .map-embed {
    height: 250px;
  }
}
