



/* Kartvizit ve Hakkında Alanı */

.about-card-section {
  padding: 60px 0 40px 0;
}
.about-card-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.about-card-image {
  flex: 0 0 320px;
  max-width: 340px;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-card-image img {
  width: 100%;
  max-width: 320px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: var(--bg-soft);
}
.about-card-info {
  flex: 1 1 320px;
  min-width: 220px;
  max-width: 520px;
}
.about-card-info h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}
.about-card-info p {
  color: var(--muted);
  font-size: 1.08rem;
}
@media (max-width: 900px) {
  .about-card-flex {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .about-card-image, .about-card-info {
    max-width: 100%;
    min-width: 0;
  }
  .about-card-image img {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .map-box {
    width: 100% !important;
    min-width: 0 !important;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto 18px auto;
    display: block !important;
  }
  .map-box iframe {
    width: 100% !important;
    min-width: 0 !important;
    height: 260px !important;
    display: block;
    border: 0;
  }
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr !important;
    min-width: 0 !important;
    gap: 16px;
  }
  .gallery-item {
    min-height: 180px;
  }
  .gallery-item img {
    height: auto;
    min-height: 120px;
    max-height: 320px;
    width: 100%;
    object-fit: cover;
  }
}
:root {
  --bg: #07111f;
  --bg-soft: #0c1a2d;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --white: #ffffff;
  --text: #d7e3f4;
  --muted: #9db0ca;
  --line: rgba(255, 255, 255, 0.12);
  --primary: #4db6ff;
  --primary-2: #00d2ff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.site-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(77, 182, 255, 0.16), transparent 30%),
    radial-gradient(circle at right center, rgba(0, 210, 255, 0.12), transparent 25%),
    linear-gradient(180deg, #06101d 0%, #091528 45%, #07111f 100%);
  z-index: -1;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  margin-bottom: 16px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(77, 182, 255, 0.28);
  background: rgba(77, 182, 255, 0.08);
  color: #9edbff;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(5, 12, 22, 0.52);
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}

.header.scrolled {
  background: rgba(6, 14, 25, 0.88);
  border-bottom-color: var(--line);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 135px;
  height: 68px;
  min-width: 90px;
  min-height: 45px;
  max-width: 160px;
  max-height: 80px;
  object-fit: contain;
}

.logo-text {
  font-weight: 800;
  letter-spacing: 0.05em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  color: var(--text);
  font-weight: 500;
  transition: 0.25s ease;
}

.nav a:hover {
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-radius: 12px;
  width: 46px;
  height: 46px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  overflow: hidden;
}

.hero-slider {
  position: relative;
  min-height: calc(100vh - 82px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 10, 18, 0.9) 0%, rgba(4, 10, 18, 0.66) 40%, rgba(4, 10, 18, 0.52) 100%),
    linear-gradient(180deg, rgba(4, 10, 18, 0.2), rgba(4, 10, 18, 0.5));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding-top: 40px;
  padding-bottom: 120px;
}

.hero-content h1,
.hero-content h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

.hero-text {
  max-width: 720px;
  font-size: 1.08rem;
  color: var(--text);
  margin-bottom: 32px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
  max-width: 760px;
}

.stat-card {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.stat-card strong {
  display: block;
  font-size: 1.7rem;
  margin-bottom: 6px;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-controls {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-arrow {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: 0.25s ease;
  font-size: 1.4rem;
}

.hero-arrow:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.hero-dots {
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: 0.25s ease;
}

.hero-dot.active {
  width: 34px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.trust-bar {
  padding: 30px 0 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-grid div {
  padding: 18px 22px;
  text-align: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 600;
}

.services-grid,
.testimonial-grid,
.brand-grid,
.gallery-grid,
.locations-grid {
  display: grid;
  gap: 22px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.testimonial-card,
.brand-card,
.contact-form,
.contact-info,
.cta-box,
.seo-box,
.map-box,
.location-card,
.faq-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.service-card {
  border-radius: 24px;
  padding: 28px;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(77, 182, 255, 0.32);
}

.icon-box {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(77, 182, 255, 0.18), rgba(0, 210, 255, 0.16));
  border: 1px solid rgba(77, 182, 255, 0.18);
}

.service-card h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
}

.dark-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-content h2,
.contact-info h2,
.seo-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.about-content p,
.contact-info p,
.seo-box p {
  color: var(--muted);
  margin-bottom: 18px;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.feature-item span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #04111b;
  font-weight: 700;
}

.feature-item p {
  margin-bottom: 0;
}

.image-stack {
  position: relative;
  min-height: 580px;
}

.stack-main,
.stack-small {
  position: absolute;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stack-main {
  width: 78%;
  height: 520px;
  right: 0;
  bottom: 0;
}

.stack-small {
  width: 42%;
  height: 260px;
  left: 0;
  top: 20px;
}

.brand-grid {
  grid-template-columns: repeat(6, 1fr);
}

.brand-card {
  min-height: 110px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
  min-width: 900px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  position: relative;
  min-height: 280px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.03) grayscale(0);
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
  padding: 28px;
  border-radius: 24px;
}

.testimonial-card p {
  color: var(--text);
  margin-bottom: 18px;
}

.testimonial-card h4 {
  margin-bottom: 4px;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.seo-box {
  border-radius: 28px;
  padding: 34px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 22px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-weight: 700;
  text-align: left;
}

.faq-question span:first-child {
  flex: 1;
}

.faq-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 22px;
}

.faq-answer p {
  color: var(--muted);
  margin: 0;
}

.map-box {
  border-radius: 28px;
  overflow: hidden;
}

.cta-section {
  padding-bottom: 30px;
}

.cta-box {
  padding: 38px;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cta-box h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

.cta-box p {
  color: var(--muted);
}

.contact-info,
.contact-form {
  border-radius: 26px;
  padding: 30px;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
}

.contact-item span {
  color: var(--muted);
}

.form-row {
  margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  padding: 16px 18px;
  border-radius: 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8ea3c1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(77, 182, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(77, 182, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.locations-grid {
  grid-template-columns: repeat(5, 1fr);
}

.location-card {
  padding: 18px 16px;
  border-radius: 18px;
  text-align: center;
  font-weight: 700;
  color: var(--text);
  transition: 0.25s ease;
}

.location-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 182, 255, 0.28);
  color: var(--white);
}

.footer {
  width: 100%;
  background: rgba(5, 12, 22, 0.92);
  border-top: 1px solid var(--line);
  padding: 0;
}

.footer-wrap {
  min-height: 100px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer p {
  color: var(--muted);
}

.footer a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer a p {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #05101c;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 30px rgba(0, 210, 255, 0.24);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.btn-ghost {
  min-height: 46px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: var(--line);
}

.btn-sm {
  min-height: 44px;
}

.btn-full {
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.img-zoom-modal {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.86);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.img-zoom-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.img-zoom-modal-content {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 14px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
  animation: zoomIn 0.25s ease;
}

.img-zoom-close {
  position: absolute;
  top: 24px;
  right: 34px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  text-shadow: 0 2px 8px #000;
}

@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.floating-contact-btn,
.scroll-top-btn {
  position: fixed;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 999;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.floating-contact-btn {
  bottom: 22px;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: #fff;
  font-size: 1.55rem;
}

.scroll-top-btn {
  bottom: 92px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(14px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.25s ease;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn:focus-visible,
.menu-toggle:focus-visible,
.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.nav a:focus-visible,
.hero-arrow:focus-visible,
.hero-dot:focus-visible,
.faq-question:focus-visible,
.scroll-top-btn:focus-visible,
.floating-contact-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .about-grid,
  .contact-grid,
  .services-grid,
  .testimonial-grid,
  .gallery-grid,
  .brand-grid,
  .locations-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 820px) {
  .nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 20px;
    background: rgba(7, 17, 31, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav.show {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 12px 10px;
    border-radius: 12px;
  }

  .nav a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .hero,
  .section {
    padding: 80px 0;
  }

  .about-grid,
  .contact-grid,
  .services-grid,
  .testimonial-grid,
  .gallery-grid,
  .brand-grid,
  .trust-grid,
  .hero-stats,
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .hero-slide {
    min-height: unset;
    padding-top: 32px;
    padding-bottom: 24px;
  }

  .hero-content {
    padding-top: 0;
    padding-bottom: 32px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(2.2rem, 10vw, 3.8rem);
  }

  .image-stack {
    min-height: 500px;
  }

  .stack-main {
    width: 100%;
    position: relative;
    height: 360px;
  }

  .stack-small {
    display: none;
  }

  .gallery-item {
    min-height: 240px;
  }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 22px 0;
  }

  .img-zoom-close {
    top: 18px;
    right: 20px;
    font-size: 34px;
  }

  .floating-contact-btn,
  .scroll-top-btn {
    right: 16px;
    width: 54px;
    height: 54px;
  }

  .floating-contact-btn {
    bottom: 16px;
  }

  .scroll-top-btn {
    bottom: 82px;
  }

  .hero-controls {
    bottom: 18px;
    gap: 10px;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 600px) {
  .nav-wrap {
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-height: unset;
    padding: 2px 0 2px 0;
  }

  .logo {
    justify-content: center;
    width: 100%;
    padding: 0;
    margin-bottom: 0;
  }

  .logo-img {
    width: 145px;
    max-width: 160px;
    max-height: 78px;
    min-width: 110px;
    min-height: 55px;
    margin: 0 auto 2px auto;
    display: block;
  }

  .nav {
    width: 100%;
    justify-content: center;
    margin-bottom: 4px;
  }

  .nav-actions {
    width: 100%;
    justify-content: center;
    gap: 8px;
    margin-bottom: 2px;
  }

  .hero-content {
    margin-bottom: 32px;
  }

  .hero-stats {
    margin-top: 40px;
  }

  .hero-controls {
    margin-bottom: 24px;
  }

  .footer-wrap {
    display: block;
    min-height: 56px;
    text-align: center;
  }
}