@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

:root {
  --bg: #0b0f1a;
  --primary: #38bdf8;
  --text: #e2e8f0;
  --gray: #94a3b8;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}
.logo span {
  color: var(--primary);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}
nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}
nav a.active,
nav a:hover {
  color: var(--primary);
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
              url('../assets/img/bg.png') no-repeat center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding-top: 70px;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.hero p {
  color: var(--gray);
  margin-bottom: 30px;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.btn-primary:hover {
  background: #0ea5e9;
}

/* Services */
.services {
  padding: 80px 20px;
  text-align: center;
}
.services h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #fff;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.card {
  background: #1e293b;
  border-radius: 12px;
  padding: 30px;
  transition: 0.3s;
}
.card:hover {
  background: #334155;
  transform: translateY(-5px);
}
.card h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Call Button */
.call-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  box-shadow: 0 0 25px rgba(56,189,248,0.6);
  text-decoration: none;
  transition: 0.3s;
}
.call-btn:hover {
  transform: scale(1.1);
}

/* Footer */
footer {
  background: #0f172a;
  text-align: center;
  padding: 20px;
  color: var(--gray);
  font-size: 14px;
}
.page-header {
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(11,15,26,1));
  text-align: center;
  padding: 120px 20px 60px;
}
.page-header h1 {
  color: var(--primary);
  font-size: 2.4rem;
  margin: 0;
}
.about {
  background: #0b0f1a;
  color: var(--text);
  padding: 50px 20px 80px;
}
.about-content {
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
  font-size: 1rem;
  text-align: center;
}
.about-icon {
  font-size: 60px;
  color: var(--primary);
  margin-bottom: 25px;
}
.hero-about {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
              url('../assets/img/bg.png') no-repeat center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text);
  margin-top: 60px;
}

.hero-about h1 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.hero-about p {
  font-size: 1.1rem;
  color: #cbd5e1;
}

.about {
  background: #0b0f1a;
  color: var(--text);
  padding: 60px 20px 80px;
  text-align: center;
}

.about-content {
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
  font-size: 1rem;
}

.about-icon {
  font-size: 60px;
  color: var(--primary);
  margin-bottom: 25px;
}
.hero-services {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
              url('../assets/img/bg.png') no-repeat center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text);
  margin-top: 60px;
}

.hero-services h1 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.hero-services p {
  font-size: 1.1rem;
  color: #cbd5e1;
}
.hero-brands {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
              url('../assets/img/bg.png') no-repeat center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text);
  margin-top: 60px;
}

.hero-brands h1 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.hero-brands p {
  font-size: 1.1rem;
  color: #cbd5e1;
}

/* Markalar Bölümü */
.brands {
  background: #0b0f1a;
  padding: 60px 20px 80px;
  text-align: center;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
}
.brand img {
  max-width: 160px;
  height: auto;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
.brand img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}
/* ---- Kayan butonlar: sağlam sürüm ---- */
.floating-btns{
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;           /* her şeyin üstünde */
  pointer-events: none;    /* ebeveyn tıklama almaz */
}
.floating-btns .fab{
  pointer-events: auto;    /* sadece butonlar tıklanır */
  width: 58px; height: 58px;
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  text-decoration:none; color:#fff; font-size:26px;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
  transition: transform .2s ease, filter .2s ease;
}
.fab-call{ background:#38bdf8; }
.fab-wa{   background:#25D366; }
.floating-btns .fab:hover{ transform: scale(1.1); filter: brightness(1.08); }

/* Küçük ekranlarda taşma olmasın */
@media (max-width:600px){
  .floating-btns{ right:14px; bottom:14px; gap:12px; }
  .floating-btns .fab{ width:50px; height:50px; font-size:22px; }
}
.floating-btns .fab{
  pointer-events: auto;
  width: 58px; height: 58px;
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  text-decoration:none; color:#fff; font-size:26px;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
  transition: transform .2s ease, filter .2s ease;
}
/* --- Mobil Görünüm Düzeltmeleri --- */
@media (max-width: 768px) {

  /* Navbar içeriğini dikey hizala */
  .navbar .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  /* Logo ortalansın */
  .logo {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  /* Menü yatay yerine dikey hale gelsin */
  nav ul {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: flex-start;
  }

  nav a {
    display: block;
    width: 100%;
    padding: 8px 0;
  }

  /* Hero (üst görsel) taşmasın */
  .hero {
    height: auto;
    padding: 120px 15px 60px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  /* Hizmet kartları */
  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Markalar logoları */
  .brand-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  /* Footer metni */
  footer {
    font-size: 12px;
    padding: 15px;
  }

  /* Sabit butonlar */
  .floating-btns {
    right: 12px;
    bottom: 12px;
    gap: 10px;
  }

  .floating-btns .fab {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}
/* --- Hamburger Menü --- */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #38bdf8;
  cursor: pointer;
}

/* Mobil görünüm */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    position: absolute;
    top: 65px;
    left: 0;
    padding: 20px;
    gap: 15px;
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .navbar .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  nav a {
    color: #e2e8f0;
    font-size: 1rem;
  }

  nav a:hover {
    color: #38bdf8;
  }
}
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    position: absolute;
    top: 65px;
    left: 0;
    padding: 20px;
    gap: 15px;
  }
  nav ul.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
    font-size: 26px;
    color: #38bdf8;
    cursor: pointer;
  }
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    font-size: 26px;
    color: #38bdf8;
    cursor: pointer;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(0,0,0,0.85);
    position: absolute;
    top: 65px;
    left: 0;
    padding: 20px;
    gap: 15px;
  }

  nav ul.show {
    display: flex;
  }
}
/* Menü düğmesi */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #38bdf8;
  cursor: pointer;
}

/* Mobil görünüm */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 65px;
    left: 0;
    padding: 20px;
    gap: 20px;
    z-index: 1000;
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 65px;
    left: 0;
    padding: 20px;
    gap: 20px;
    z-index: 1000;
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
    font-size: 26px;
    color: #38bdf8;
    cursor: pointer;
  }
}
/* Hamburger buton sadece mobilde görünür */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #38bdf8;
  cursor: pointer;
}

/* Mobil görünüm ayarları */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    gap: 20px;
    border-top: 1px solid rgba(56,189,248,0.2);
  }

  nav ul.open {
    display: flex;
  }
}
/* Hamburger buton sadece mobilde görünür */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #38bdf8;
  cursor: pointer;
}

/* Mobil görünüm ayarları */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    gap: 20px;
    border-top: 1px solid rgba(56,189,248,0.2);
  }

  nav ul.open {
    display: flex;
  }
}
/* Hamburger buton sadece mobilde görünür */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #38bdf8;
  cursor: pointer;
}

/* Mobil görünüm ayarları */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    gap: 20px;
    border-top: 1px solid rgba(56,189,248,0.2);
  }

  nav ul.open {
    display: flex;
  }
}
/* Hamburger buton sadece mobilde görünür */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #38bdf8;
  cursor: pointer;
}

/* Mobil görünüm ayarları */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    gap: 20px;
    border-top: 1px solid rgba(56,189,248,0.2);
  }

  nav ul.open {
    display: flex;
  }
}
/* Hamburger buton sadece mobilde görünür */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #38bdf8;
  cursor: pointer;
}

/* Mobil görünüm ayarları */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    gap: 20px;
    border-top: 1px solid rgba(56,189,248,0.2);
  }

  nav ul.open {
    display: flex;
  }
}
/* ---- Responsive Menü Tam Düzeltme ---- */

.menu-toggle {
  display: none;
  font-size: 28px;
  color: #38bdf8;
  cursor: pointer;
  margin-left: 15px;
  z-index: 1001;
}

@media (max-width: 992px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.96);
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 25px 0;
    gap: 20px;
    border-top: 1px solid rgba(56,189,248,0.2);
    transition: all 0.3s ease;
  }

  nav ul.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .navbar .container {
    flex-wrap: nowrap;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.4rem;
  }

  .logo img {
    height: 40px;
  }

  /* Menü kapalıyken kaymayı önler */
  body.menu-open {
    overflow: hidden;
  }
}
/* --- Oturum Aç (dropdown) --- */
.dropdown {
  position: relative;
}
.dropdown > a {
  cursor: pointer;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1e293b;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  z-index: 999;
  width: 180px;
  text-align: left;
}
.dropdown-menu li {
  padding: 8px 20px;
}
.dropdown-menu li a {
  color: #e2e8f0;
  text-decoration: none;
  display: block;
}
.dropdown-menu li a:hover {
  background: #38bdf8;
  color: #fff;
}
.dropdown.show .dropdown-menu {
  display: block;
}

/* Mobilde hizalama */
@media (max-width: 992px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    width: 100%;
    background: rgba(0,0,0,0.9);
  }
  .dropdown-menu li a:hover {
    background: #0ea5e9;
  }
}
/* --- Oturum Aç (dropdown) --- */
.dropdown {
  position: relative;
}
.dropdown > a {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1e293b;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  z-index: 999;
  width: 190px;
}
.dropdown-menu li {
  padding: 8px 20px;
}
.dropdown-menu li a {
  color: #e2e8f0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dropdown-menu li a:hover {
  background: #38bdf8;
  color: #fff;
}
.dropdown.show .dropdown-menu {
  display: block;
}

/* Mobilde hizalama */
@media (max-width: 992px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    width: 100%;
    background: rgba(0,0,0,0.9);
  }
  .dropdown-menu li a:hover {
    background: #0ea5e9;
  }
}
.device-btn {
  width: 100%;
  padding: 16px;
  margin-bottom: 8px;
  background: #0f172a;
  color: #fff;
  border: none;
  text-align: left;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

.device-btn:hover {
  background: #1e293b;
}

.device-panel {
  display: none;
  padding: 15px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  margin-bottom: 15px;
  background: #ffffff;
  color: #444;
}
.services-pro {
  background: #0f172a;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.section-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-sub {
  color: #cbd5e1;
  margin-bottom: 50px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card {
  background: #1e293b;
  padding: 30px 20px;
  border-radius: 12px;
  transition: 0.3s;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.service-card i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #38bdf8;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  color: #cbd5e1;
  font-size: 14px;
}

.toggle-btn {
  margin-top: 15px;
  padding: 8px 15px;
  border: none;
  background: #38bdf8;
  color: #000;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.hidden-content {
  display: none;
  margin-top: 15px;
  font-size: 13px;
  color: #e2e8f0;
}
.services-clean {
  background: linear-gradient(180deg,#020617,#020617);
  padding: 90px 20px;
  color: #fff;
}

.services-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 10px;
}

.services-desc {
  text-align: center;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
}

.service-box {
  background: #0f172a;
  border-radius: 14px;
  padding: 30px 25px;
  transition: 0.3s;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.service-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.service-head i {
  font-size: 28px;
  color: #38bdf8;
}

.service-box p {
  color: #cbd5e1;
  font-size: 14px;
}

.service-link {
  display: inline-block;
  margin-top: 12px;
  color: #38bdf8;
  cursor: pointer;
  font-size: 14px;
}

.service-detail {
  display: none;
  margin-top: 15px;
  font-size: 13px;
  color: #e5e7eb;
  border-top: 1px solid #1e293b;
  padding-top: 12px;
}
.services-modern {
  background: #020617;
  padding: 80px 20px;
  color: #fff;
}

.services-modern h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
}

.services-sub {
  text-align: center;
  color: #94a3b8;
  margin-bottom: 50px;
}

.services-list {
  max-width: 900px;
  margin: auto;
}

.service-item {
  padding: 25px 0;
  border-bottom: 1px solid #1e293b;
}

.service-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #38bdf8;
}

.service-item p {
  margin-bottom: 8px;
  color: #cbd5e1;
}

.service-item span {
  font-size: 13px;
  color: #64748b;
}
.brand-accordion {
  padding: 80px 20px;
  background: #f8fafc;
}

.accordion-item {
  max-width: 800px;
  margin: 15px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.accordion-btn {
  width: 100%;
  padding: 20px;
  border: none;
  background: linear-gradient(135deg,#0f172a,#1e293b);
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: 0.3s;
}

.accordion-btn:hover {
  background: linear-gradient(135deg,#1e293b,#334155);
}

.accordion-content {
  display: none;
  padding: 20px;
  background: white;
  color: #334155;
  line-height: 1.6;
}
.services-photo {
  padding: 80px 20px;
  background: #f8fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-title {
  font-size: 18px;
  font-weight: 600;
  padding: 15px;
}

.service-btn {
  width: calc(100% - 30px);
  margin: 0 15px 15px;
  padding: 10px;
  background: #0ea5e9;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.service-detail {
  display: none;
  padding: 15px;
  font-size: 14px;
  color: #334155;
  border-top: 1px solid #e5e7eb;
}
.services-cards {
  padding: 80px 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: #0f172a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.service-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.service-body {
  padding: 20px;
  color: #fff;
}

.service-body h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.service-toggle {
  background: #38bdf8;
  border: none;
  color: #000;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.service-detail {
  display: none;
  margin-top: 12px;
  font-size: 14px;
  color: #cbd5e1;
}
#searchOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2,6,23,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.search-box {
  background: #0f172a;
  padding: 35px;
  border-radius: 14px;
  width: 90%;
  max-width: 500px;
  color: #fff;
  position: relative;
}

.search-box h3 {
  margin-bottom: 20px;
}

.search-box input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  margin-bottom: 15px;
  font-size: 15px;
}

.search-box button {
  width: 100%;
  padding: 12px;
  background: #38bdf8;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.close-search {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
}
/* ================================
   HİZMET KARTLARI
================================ */

.services-cards {
  padding: 80px 20px;
  background: linear-gradient(180deg,#020617,#020617);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card {
  background: #0f172a;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.45);
  transition: 0.3s;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #e5e7eb;
}

.service-toggle {
  padding: 10px 18px;
  background: #38bdf8;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  color: #000;
}

.service-toggle:hover {
  background: #0ea5e9;
}

/* ================================
   POPUP (ARAMA + ARAMA & WHATSAPP)
================================ */

#searchOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.search-box {
  background: #0f172a;
  width: 90%;
  max-width: 480px;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  color: #fff;
  position: relative;
  animation: slideUp 0.35s ease;
}

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

.search-box h2 {
  margin-bottom: 5px;
}

.search-sub {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 15px;
}

.search-box input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  margin-bottom: 15px;
  font-size: 14px;
}

.actions {
  display: flex;
  gap: 10px;
}

.call-btn,
.wp-btn {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
}

.call-btn {
  background: #38bdf8;
  color: #000;
}

.call-btn:hover {
  background: #0ea5e9;
}

.wp-btn {
  background: #25D366;
  color: #fff;
}

.wp-btn:hover {
  background: #1ebe5d;
}

.close-search {
  position: absolute;
  right: 18px;
  top: 12px;
  font-size: 22px;
  cursor: pointer;
}

.urgent {
  margin-top: 15px;
  font-size: 13px;
  color: #facc15;
}
