/* ==============================
   GENEL AYARLAR
============================== */
* {
  margin: 0;
  padding: 0;
  color: white;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0b0b0b;
  color: #000000;
  overflow-x: hidden;
}

/* Link ve buton geçişleri */
a, button {
  transition: all 0.3s ease;
  text-decoration: none;
}

/* ==============================
   HEADER / NAVBAR
============================== */
.main-header {
  width: 100%;
  padding: 15px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

.logo span {
  color: #00d4ff;
}

.navbar {
  display: flex;
  gap: 25px;
}

.navbar a {
  color: #ddd;
  font-weight: 500;
  position: relative;
}

.navbar a::after {
  content: '';
  width: 0%;
  height: 2px;
  background: #00d4ff;
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: width 0.3s ease;
}

.navbar a:hover::after,
.navbar a.active::after {
  width: 100%;
}

/* ==============================
   HERO BÖLÜMÜ
============================== */
.hero-section {
  height: 100vh;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.9)),
              url('https://images.unsplash.com/photo-1526170375885-4d8ecf77b99f?auto=format&fit=crop&w=1920&q=80')
              center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero-content {
  z-index: 1;
  max-width: 700px;
  animation: fadeInUp 1.2s ease;
}

.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 15px;
  color: #00d4ff;
  text-shadow: 0 0 15px rgba(0,212,255,0.6);
}

.hero-content p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 25px;
}

.btn {
  background: #00d4ff;
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
}

.btn:hover {
  background: #00a2cc;
  color: #fff;
}

.btn-outline {
  border: 2px solid #00d4ff;
  color: #00d4ff;
  padding: 10px 25px;
  border-radius: 30px;
  display: inline-block;
}

.btn-outline:hover {
  background: #00d4ff;
  color: #000;
}

/* ==============================
   HAKKIMIZDA ÖZET
============================== */
.about-preview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  
  background: #101010;
  gap: 40px;
}

.about-preview .content {
  flex: 1;
  min-width: 320px;
}

.about-preview h2 {
  color: #00d4ff;
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-preview p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 25px;
}

.about-preview .image img {
  width: 500px;
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,212,255,0.3);
  transition: transform 0.4s ease;
}

.about-preview .image img:hover {
  transform: scale(1.03);
}

/* ==============================
   HİZMETLER ÖZET
============================== */
.services-preview {
  padding: 100px 8%;
  text-align: center;
  background: linear-gradient(to bottom, #0b0b0b, #111);
}

.services-preview h2 {
  color: #00d4ff;
  font-size: 2rem;
  margin-bottom: 50px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-cards .card {
  background: #151515;
  padding: 30px 25px;
  border-radius: 15px;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0,212,255,0.3);
}

.service-cards .card h3 {
  color: #00d4ff;
  margin-bottom: 15px;
}

/* ==============================
   PROJELER / CTA
============================== */
.projects-preview,
.cta-section {
  text-align: center;
  padding: 90px 8%;
  background: #0f0f0f;
}

.projects-preview h2,
.cta-section h2 {
  color: #00d4ff;
  margin-bottom: 20px;
}

.projects-preview p {
  color: #ccc;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* ==============================
   FOOTER
============================== */
footer {
  background: #000;
  color: #bbb;
  padding: 50px 8% 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 25px;
}

.footer-left h3 {
  color: #00d4ff;
  margin-bottom: 10px;
}

.footer-center p {
  margin: 5px 0;
  color: #ccc;
}

.social-icons a {
  color: #00d4ff;
  margin-right: 15px;
  font-size: 1.3rem;
}

.social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 15px;
  font-size: 0.9rem;
  color: #777;
}

/* ==============================
   ANİMASYONLAR
============================== */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ==============================
   RESPONSIVE TASARIM
============================== */
@media (max-width: 900px) {
  .about-preview {
    flex-direction: column;
    text-align: center;
  }

  .about-preview .image img {
    width: 90%;
  }

  .service-cards {
    flex-direction: column;
    align-items: center;
  }

  .main-header {
    flex-direction: column;
    gap: 10px;
    padding: 15px 25px;
  }
}

/* =======================================================
   HİZMETLER SAYFASI – GELİŞMİŞ TASARIM
======================================================= */
.services-page {
  padding: 120px 8%;
  background: linear-gradient(to bottom, #0b0b0b, #111);
  text-align: center;
}

.services-page h1 {
  font-size: 2.5rem;
  color: #00d4ff;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.service-box {
  background: #151515;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 0 15px rgba(0,212,255,0.1);
  transition: all 0.4s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(0,212,255,0.3);
}

.service-box i {
  font-size: 2.5rem;
  color: #00d4ff;
  margin-bottom: 15px;
}

.service-box h3 {
  color: #00d4ff;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.service-box p {
  color: #ccc;
  line-height: 1.6;
  font-size: 0.95rem;
}
/* =======================================================
   PROJELER SAYFASI – YALOVA ZUM MEDYA
======================================================= */
.projects-page {
  padding: 120px 8%;
  background: linear-gradient(to bottom, #0b0b0b, #0e0e0e);
  text-align: center;
}

.projects-page h1 {
  font-size: 2.6rem;
  color: #00d4ff;
  margin-bottom: 20px;
}

.projects-page p {
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* PROJE KARTLARI */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  justify-content: center;
}

.project-card {
  background: #151515;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
  transition: all 0.4s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.35);
}

.project-card iframe,
.project-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border: none;
}

.project-card h3 {
  color: #00d4ff;
  font-size: 1.3rem;
  margin: 20px 0 10px;
}

.project-card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0 20px 25px;
}

/* PROJE SAYFASI FOOTER ÖZEL STİLİ */
footer {
  background: radial-gradient(circle at top, #001a2b, #000);
  color: #bbb;
  padding: 60px 8% 25px;
}

footer h3, footer h4 {
  color: #00d4ff;
  margin-bottom: 15px;
}

footer p {
  color: #ccc;
}

.footer-links a {
  color: #bbb;
  display: block;
  margin: 6px 0;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00d4ff;
}

.footer-social a {
  font-size: 1.4rem;
  margin-right: 12px;
  color: #00d4ff;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .projects-page {
    padding: 80px 5%;
  }
  .project-grid {
    grid-template-columns: 1fr;
  }
  .project-card iframe,
  .project-card img {
    height: 200px;
  }
}

/* ===============================
   PROJE MODAL GÖRÜNÜMÜ
=============================== */
.media-modal,
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.modal-overlay {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.media-modal.active,
.modal-overlay.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  opacity: 1;
}

.modal-content {
  position: relative;
  background: #111;
  padding: 15px;
  border-radius: 10px;
  max-width: 80%;
  max-height: 80%;
  box-shadow: 0 0 25px rgba(0,212,255,0.3);
  animation: zoomIn 0.4s ease;
}

.modal-body img,
.modal-body iframe {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #00d4ff;
  color: #000;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 33px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,212,255,0.4);
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: #00a2cc;
  transform: rotate(90deg);
}

/* Açılış animasyonu */
@keyframes zoomIn {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
/* ===============================
   İLETİŞİM SAYFASI
=============================== */
.contact-page {
  padding: 130px 8%;
  background: linear-gradient(to bottom, #0b0b0b, #111);
  min-height: 100vh;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  min-width: 320px;
  color: #ccc;
}

.contact-info h1 {
  color: #00d4ff;
  margin-bottom: 20px;
}

.contact-info p {
  line-height: 1.7;
  margin-bottom: 25px;
}

.info-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.info-box i {
  font-size: 1.5rem;
  color: #00d4ff;
}

.info-box h4 {
  color: #00d4ff;
  margin-bottom: 5px;
}

.info-box p a {
  color: #ccc;
  text-decoration: none;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  color: #00d4ff;
  font-size: 1.3rem;
  margin-right: 15px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #fff;
}

/* Form Tarafı */
.contact-form {
  flex: 1;
  min-width: 320px;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 0 20px rgba(0,212,255,0.15);
  backdrop-filter: blur(8px);
}

.contact-form h2 {
  color: #00d4ff;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #151515;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 12px 15px;
  border-radius: 8px;
  outline: none;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00d4ff;
  box-shadow: 0 0 8px rgba(0,212,255,0.3);
}

.contact-form .btn {
  width: 100%;
  background: #00d4ff;
  border: none;
  color: #000;
  font-weight: 600;
  padding: 12px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.contact-form .btn:hover {
  background: #00a2cc;
  color: #fff;
}

/* Harita */
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  margin-top: 50px;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-form {
    padding: 25px;
  }

  .map-section iframe {
    height: 300px;
  }
}

/* ==========================================================
   YENİ ANA SAYFA – GELİŞMİŞ SÜRÜM (ZUM MEDYA)
========================================================== */

/* Hero Video ve Parallax */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

#hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.55) contrast(1.1) saturate(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.9));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  animation: fadeUp 1.2s ease-out;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #00d4ff;
  text-shadow: 0 0 25px rgba(0,212,255,0.6);
}

.hero-content h1 span {
  color: #fff;
}

.hero-content p {
  max-width: 700px;
  margin: 20px auto;
  color: #ddd;
  font-size: 1.1rem;
}

.hero-content .btn,
.hero-content .btn-outline {
  margin: 10px;
}

/* Parallax Scroll Efekti */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 150px;
  width: 100%;
  background: linear-gradient(to top, #0b0b0b, transparent);
  z-index: 3;
}

/* ==========================================================
   HİZMETLER – GÜNCEL TASARIM (Yeni İçeriklerle)
========================================================== */

.services-preview {
  position: relative;
  background: linear-gradient(to bottom right, #0b0b0b, #101820);
  padding: 120px 8%;
  text-align: center;
  overflow: hidden;
}

.services-preview h2 {
  font-size: 2.4rem;
  color: #00d4ff;
  margin-bottom: 20px;
}

.services-preview .section-desc {
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
}

.service-cards .card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 15px;
  width: 290px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(0,212,255,0.08);
  transition: all
}



