/* =======================================================
   LED Ekran & Ses/Işık Kiralama - Genel Stil Dosyası
   ======================================================= */

:root {
  --color-primary: #ff5a1f;
  --color-primary-dark: #d94510;
  --color-dark: #0d0f14;
  --color-dark-2: #161922;
  --color-light: #f5f6f8;
  --color-gray: #6b7280;
  --color-border: #232734;
  --radius: 10px;
  --max-width: 1180px;
  --font-main: "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-dark);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Üst Bilgi Şeridi ---------- */
.top-bar {
  background: var(--color-dark);
  color: #cfd3da;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}

.top-bar a {
  color: #cfd3da;
}

.top-bar a:hover {
  color: #fff;
}

/* ---------- Header / Navigasyon ---------- */
header.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  display: inline-flex;
  align-items: center;
  background: var(--color-dark);
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  line-height: 0;
}

.logo img {
  display: block;
  height: 38px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--color-dark);
  font-weight: 500;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.nav-cta {
  background: var(--color-primary);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--color-primary-dark);
  text-decoration: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--color-dark);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 100%);
  color: #fff;
  padding: 80px 0;
}

.hero .container {
  display: flex;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 480px;
}

.hero-media {
  flex: 1 1 380px;
  max-height: 420px;
  border-radius: var(--radius);
  background: repeating-linear-gradient(
    45deg,
    #1b1e28,
    #1b1e28 10px,
    #21242f 10px,
    #21242f 20px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 0.95rem;
  text-align: center;
  padding: 20px;
  overflow: hidden;
}

.hero-media:has(img) {
  background: none;
  padding: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  border-radius: var(--radius);
  display: block;
}

.eyebrow {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin: 0 0 16px;
}

.hero p {
  color: #c7cbd4;
  font-size: 1.05rem;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

/* ---------- Sayfa İçi (Alt Sayfa) Hero ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.2rem;
  margin: 10px 0 12px;
}

.page-hero p {
  color: #c7cbd4;
  max-width: 640px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.85rem;
  color: #9aa0ac;
  margin-top: 10px;
}

.breadcrumb a {
  color: #9aa0ac;
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border-color: #454b5a;
  color: #fff;
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  text-decoration: none;
}

.btn-outline-dark {
  background: transparent;
  border-color: #454b5a;
  color: var(--color-dark);
}

.btn-outline-dark:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  text-decoration: none;
}

/* ---------- Bölümler ---------- */
section {
  padding: 70px 0;
}

.section-alt {
  background: var(--color-light);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.section-head h2 {
  font-size: 1.9rem;
  margin: 8px 0 12px;
}

.section-head p {
  color: var(--color-gray);
}

/* ---------- Kart / Izgara Yapıları ---------- */
.grid {
  display: grid;
  gap: 26px;
}

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

/* ---------- Referans / Logo Duvarı ---------- */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.logo-item {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: var(--radius);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  min-height: 175px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.logo-item img {
  width: 100%;
  max-width: 110px;
  max-height: 80px;
  object-fit: contain;
}

.logo-item .logo-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gray);
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 1000px) {
  .logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 720px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .logo-item {
    min-height: 155px;
    padding: 18px 12px;
  }

  .logo-item img {
    max-width: 90px;
    max-height: 64px;
  }
}

@media (max-width: 480px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 90, 31, 0.12);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
}

.card-media {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center 70%;
  border-radius: var(--radius);
  display: block;
  margin-bottom: 16px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.card p {
  color: var(--color-gray);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- Ürün / Hizmet Detay Bloğu ---------- */
.feature-block {
  display: flex;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-block.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1 1 460px;
}

.feature-media {
  flex: 1 1 420px;
  min-height: 240px;
  max-height: 420px;
  border-radius: var(--radius);
  background: var(--color-light);
  border: 1px dashed #cfd3da;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  text-align: center;
  padding: 20px;
}

.feature-media:has(img) {
  background: none;
  border: none;
  padding: 0;
  overflow: hidden;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.feature-text ul {
  padding-left: 20px;
  color: var(--color-gray);
}

.feature-text li {
  margin-bottom: 8px;
}

/* ---------- Fiyat / Paket Tablosu ---------- */
.pricing-note {
  background: #fff8f4;
  border: 1px solid #ffd9c2;
  border-radius: var(--radius);
  padding: 20px 24px;
  color: #7a4a30;
  font-size: 0.95rem;
  text-align: center;
}

/* ---------- SSS (Akordeon) ---------- */
.faq-item {
  border-bottom: 1px solid #eaeaea;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--color-primary);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--color-gray);
  transition: max-height 0.25s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 18px;
}

/* ---------- İletişim ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info .info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-info .info-item .icon {
  flex-shrink: 0;
}

.contact-form {
  background: var(--color-light);
  border-radius: var(--radius);
  padding: 30px;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d9dce2;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--color-gray);
  margin-top: 10px;
}

.form-success {
  display: none;
  background: #e8f7ee;
  border: 1px solid #b6e6c8;
  color: #1c6b3d;
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 18px;
}

.form-error {
  display: none;
  background: #fdecec;
  border: 1px solid #f3b8b8;
  color: #a12b2b;
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 18px;
}

/* ---------- Galeri (Şekilli Grid) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  z-index: 2;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 16px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 75%);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-caption {
    opacity: 1;
    transform: translateY(0);
  }
}

.map-embed {
  margin-top: 30px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #ececec;
  min-height: 320px;
  background: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  text-align: center;
  padding: 20px;
}

.map-embed:has(iframe) {
  padding: 0;
  display: block;
}

.map-embed iframe {
  width: 100%;
  height: 480px;
  border: 0;
  display: block;
}

@media (max-width: 720px) {
  .map-embed iframe {
    height: 320px;
  }
}

/* ---------- CTA Şeridi ---------- */
.cta-strip {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 50px 0;
}

.cta-strip h2 {
  margin: 0 0 10px;
  font-size: 1.7rem;
}

.cta-strip .btn-outline {
  border-color: #fff;
}

.cta-strip .btn-outline:hover {
  background: #fff;
  color: var(--color-primary);
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--color-dark);
  color: #b6bac3;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 34px;
}

.footer-grid h4 {
  color: #fff;
  margin: 0 0 16px;
  font-size: 1rem;
}

.footer-logo {
  display: block;
  width: 200px;
  height: auto;
  margin-bottom: 10px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 10px;
}

.footer-grid a {
  color: #b6bac3;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #262a35;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
}

/* ---------- Duyarlı Tasarım (Responsive) ---------- */
@media (max-width: 900px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 20px;
    gap: 16px;
    border-bottom: 1px solid #eaeaea;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    text-align: center;
  }

  .menu-toggle {
    display: flex;
  }

  .logo {
    padding: 6px 12px;
  }

  .logo img {
    height: 28px;
  }

  .footer-logo {
    width: 170px;
  }

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

  .hero-media {
    height: 260px;
  }

  .feature-block,
  .feature-block.reverse {
    flex-direction: column;
  }

  .feature-media {
    height: 260px;
    max-height: none;
  }
}

@media (max-width: 560px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .top-bar .container {
    justify-content: center;
    text-align: center;
  }
}

.result-note {
  font-size: 0.85rem;
  color: var(--color-gray);
  margin-top: 16px;
}

.steps-grid {
  counter-reset: step;
}

.step-card {
  position: relative;
  padding-top: 10px;
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}

/* ---------- Hizmetler Dropdown Menü ---------- */
.nav-item-dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: var(--radius);
  min-width: 260px;
  padding: 14px 0 10px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 200;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 9px 20px;
  color: var(--color-dark);
  font-weight: 500;
  font-size: 0.92rem;
}

.dropdown-menu a.active,
.dropdown-menu a:hover {
  background: var(--color-light);
  color: var(--color-primary);
  text-decoration: none;
}

/* ---------- Dil Değiştirici ---------- */
.lang-switch {
  border: 1px solid #d9dce2;
  border-radius: 20px;
  padding: 6px 14px !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
}

.lang-switch:hover {
  border-color: var(--color-primary);
  background: rgba(255, 90, 31, 0.08);
}

/* ---------- Basit Bağlantı Listesi ---------- */
.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-list li {
  margin-bottom: 10px;
}

.link-list a {
  font-weight: 500;
}

@media (max-width: 720px) {
  .nav-item-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 4px 0 4px 14px;
    display: none;
  }

  .nav-item-dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-toggle::after {
    display: none;
  }
}

/* ---------- WhatsApp / Telefon Yüzen Butonlar ---------- */
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  height: 48px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  transform-origin: right center;
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: #fff;
}

.floating-btn .icon-circle {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-btn .icon-circle svg {
  width: 21px;
  height: 21px;
  fill: #fff;
}

.floating-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: max-width 0.28s ease, opacity 0.2s ease;
}

.floating-btn:hover .floating-btn-text {
  max-width: 160px;
  opacity: 1;
  padding-right: 16px;
}

.floating-btn-text strong {
  font-size: 0.86rem;
  font-weight: 700;
}

.floating-btn-text small {
  font-size: 0.71rem;
  font-weight: 500;
  opacity: 0.9;
}

.floating-whatsapp {
  background: #25d366;
}

.floating-phone {
  background: var(--color-primary);
}

@keyframes floatingPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.floating-whatsapp {
  animation: floatingPulse 2.6s infinite;
}

.floating-whatsapp:hover {
  animation: none;
}

@media (max-width: 560px) {
  .floating-contact {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }
}

/* ---------- Blog ---------- */
.blog-card .blog-date {
  display: block;
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

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

.blog-card h3 a {
  color: var(--color-dark);
}

.blog-card h3 a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.article-meta {
  color: var(--color-gray);
  font-size: 0.9rem;
  margin-top: 10px;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
}

.article-body h2 {
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.article-body p {
  margin-bottom: 18px;
  color: var(--color-dark);
  line-height: 1.75;
}

.article-body ul,
.article-body ol {
  margin: 0 0 20px;
  padding-left: 22px;
  color: var(--color-dark);
  line-height: 1.7;
}

.article-body li {
  margin-bottom: 8px;
}

.article-body a {
  font-weight: 600;
}

.article-back {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.9rem;
  color: var(--color-gray);
}
