/* Türkçe yorum: Reset + tipografi */
/* Renk paleti (RGBA): yeni siyah/kırmızı tonlar */
:root {
  --color-bg: rgba(37, 37, 37, 1); /* #252525 */
  --color-surface: rgba(65, 65, 65, 1); /* #414141 */
  --color-text: rgba(255, 255, 255, 0.92);
  --color-muted: rgba(255, 255, 255, 0.64);
  --color-primary: rgba(255, 0, 0, 1); /* #FF0000 */
  --color-primary-700: rgba(175, 4, 4, 1); /* #AF0404 */
  --color-border: rgba(255, 255, 255, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-text); text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Başlık tipografisi */
h1, h2, h3 { line-height: 1.2; margin: 0 0 12px; }
p { margin: 0 0 16px; color: var(--color-muted); }

/* Header */
.header {
  position: sticky; top: 0; z-index: 50; backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.6);
  border-bottom: 1px solid var(--color-border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.header__brand { font-weight: 700; letter-spacing: 0.4px; display: flex; align-items: center; }
.header__logo { height: 40px; width: auto; }

/* Hamburger Menü Butonu */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 60;
}

.hamburger__line {
  width: 100%;
  height: 3px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger X Animasyonu */
.hamburger.active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Desktop Menü */
.desktop-nav { display: none; }
.header__list { display: flex; gap: 20px; }
.header__link { padding: 10px 12px; border-radius: 8px; }
.header__link:hover { background: rgba(255,255,255,0.06); }

/* Mobil Menü */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 55;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
}

.mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-menu__item {
  margin: 1.5rem 0;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-menu.active .mobile-menu__item {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.active .mobile-menu__item:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu__item:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu__item:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-menu__item:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active .mobile-menu__item:nth-child(5) { transition-delay: 0.5s; }

.mobile-menu__link {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.mobile-menu__link:hover {
  background: var(--color-primary);
  color: var(--color-bg);
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .hamburger { display: none; }
  .desktop-nav { display: block; }
  .mobile-menu { display: none; }
}


/* Gizlilik Sayfası */
.privacy-page {
  padding: 2rem 0 4rem;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.privacy-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.privacy-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 1rem 0;
}

.privacy-subtitle {
  color: var(--color-muted);
  font-size: 1rem;
  margin: 0;
}

.privacy-body {
  margin-bottom: 3rem;
}

.privacy-section {
  margin-bottom: 2.5rem;
}

.privacy-section h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-primary);
}

.privacy-section p {
  color: var(--color-muted);
  margin: 0 0 1rem 0;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.privacy-list li {
  color: var(--color-muted);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.privacy-list li::before {
  content: "•";
  color: var(--color-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.privacy-contact {
  background: var(--color-surface);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-primary);
}

.privacy-contact p {
  margin: 0.5rem 0;
  color: var(--color-text);
}

.privacy-footer {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
}

.privacy-footer p {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin: 0 0 1.5rem 0;
  font-style: italic;
}



/* Responsive Gizlilik Sayfası */
@media (max-width: 768px) {
  .privacy-page {
    padding: 1rem 0 2rem;
  }
  
  .privacy-content {
    padding: 0 1rem;
  }
  
  .privacy-title {
    font-size: 2rem;
  }
  
  .privacy-section h2 {
    font-size: 1.2rem;
  }
  
  .privacy-header {
    margin-bottom: 2rem;
  }
}

/* Sonsuz Döngü Şerit */
.infinite-strip {
  overflow: hidden;
  background: var(--color-primary);
  padding: 20px 0;
  position: relative;
}

.infinite-strip__container {
  position: relative;
  width: 100%;
  height: 60px;
  overflow: hidden;
  cursor: grab;
}

.infinite-strip__container.dragging {
  cursor: grabbing;
}

.infinite-strip__track {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  white-space: nowrap;
  will-change: transform;
  width: max-content;
}

.infinite-strip__item {
  flex-shrink: 0;
  padding: 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  font-weight: 900;
  font-family: 'Orbitron', 'Arial Black', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
  display: flex;
  align-items: center;
  height: 100%;
  user-select: none;
}

/* Sağdan sola sonsuz akış - daha yavaş */
@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive tasarım */
@media (max-width: 768px) {
  .infinite-strip__item {
    font-size: 18px;
    padding: 0 20px;
    letter-spacing: 2px;
  }
}

/* Hizmetler Sayfası Stilleri */
.service-item {
  margin-bottom: 4rem;
  padding: 2rem;
  background: var(--color-surface);
  border-radius: 16px;
  border: 1px solid var(--color-border);
}

.service-header {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: center;
}

.service-image {
  width: 200px;
  height: 150px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.service-intro {
  flex: 1;
}

.service-title {
  font-size: 2rem;
  color: var(--color-primary);
  margin: 0 0 1rem 0;
}

.service-subtitle {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.6;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-main {
  display: grid;
  gap: 2rem;
}

.service-gallery {
  background: var(--color-surface);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  margin-top: 1rem;
}

.service-gallery h3 {
  color: var(--color-text);
  font-size: 1.2rem;
  margin: 0 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-primary);
  text-align: center;
}

.gallery-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) var(--color-surface);
}

.gallery-scroll::-webkit-scrollbar {
  height: 6px;
  width: 6px;
}

.gallery-scroll::-webkit-scrollbar-track {
  background: var(--color-surface);
  border-radius: 3px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 3px;
}

.gallery-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-700);
}

.gallery-item {
  flex-shrink: 0;
  width: 160px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
}

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

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



.service-features h3,
.service-programs h3,
.service-equipment h3 {
  color: var(--color-text);
  font-size: 1.3rem;
  margin: 0 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-primary);
}

.service-features ul,
.service-equipment ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li,
.service-equipment li {
  color: var(--color-muted);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li::before,
.service-equipment li::before {
  content: "✓";
  color: var(--color-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.program-card {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  position: relative;
}

.program-card h4 {
  color: var(--color-primary);
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.program-card p {
  color: var(--color-muted);
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.duration {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Responsive Hizmetler */
@media (max-width: 1024px) {
  .service-content {
    gap: 1.5rem;
  }
  
  .gallery-item {
    width: 140px;
  }
  
  .gallery-item img {
    height: 100px;
  }
}

@media (max-width: 768px) {
  .service-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .service-image {
    width: 100%;
    max-width: 300px;
    height: 200px;
  }
  
  .service-title {
    font-size: 1.5rem;
  }
  
  .program-grid {
    grid-template-columns: 1fr;
  }
  
  .service-item {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .service-content {
    gap: 1rem;
  }
  
  .service-gallery {
    padding: 1rem;
  }
  
  .gallery-item {
    width: 120px;
  }
  
  .gallery-item img {
    height: 90px;
  }
}

/* İletişim Sayfası Stilleri */
.contact-info {
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-card {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin: 0 0 1rem 0;
}

.contact-card p {
  color: var(--color-muted);
  margin: 0;
  line-height: 1.6;
}

.contact-card a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: var(--color-primary);
}

/* Sosyal Medya */
.social-media {
  text-align: center;
}

.social-media h3 {
  color: var(--color-text);
  font-size: 1.3rem;
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-primary);
}

.social-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--color-surface);
  color: var(--color-text);
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  font-weight: 500;
}

.social-btn:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
}

.social-instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.social-facebook:hover {
  background: #1877f2;
  color: white;
}

.social-youtube:hover {
  background: #ff0000;
  color: white;
}

.social-twitter:hover {
  background: #1da1f2;
  color: white;
}

/* İletişim Formu */
.contact-form-section {
  background: var(--color-surface);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  margin-bottom: 3rem;
}

.contact-form-section h2 {
  color: var(--color-text);
  font-size: 1.8rem;
  margin: 0 0 2rem 0;
  text-align: center;
}

/* Harita */
.map-section {
  margin-bottom: 2rem;
}

.map-section h2 {
  color: var(--color-text);
  font-size: 1.8rem;
  margin: 0 0 1.5rem 0;
  text-align: center;
}

.map {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive İletişim */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
  
  .contact-icon {
    font-size: 2.5rem;
  }
  
  .social-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .social-btn {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
  
  .contact-form-section {
    padding: 1.5rem;
  }
  
  .map {
    height: 300px;
  }
}

/* Hero Section - İletişim sayfası stilini kullan */
.contact-hero {
  text-align: center;
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.contact-hero__title {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 1);
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 1) 0%, rgba(255, 0, 0, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.contact-hero__subtitle {
  font-size: 1.3rem;
  color: rgba(175, 175, 175, 1);
  margin: 0;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}

@keyframes titleGlow {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.2); }
}

/* Responsive Hero */
@media (max-width: 768px) {
  .contact-hero__title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 2rem 0;
  }
  
  .contact-hero__title {
    font-size: 2rem;
  }
}




