/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #ffffff;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(8, 16, 24, 0.95), rgba(13, 28, 44, 0.98));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(56, 182, 255, 0.15);
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.navbar .container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.navbar .logo img {
  padding-left: -380px;
  height: 90px;
  width: 150px;
  transition: transform 0.3s ease;
}

.navbar .logo img:hover {
  transform: scale(1.05);
}

/* MENÜ SAĞ ÜSTTE */
.navbar .menu ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar .menu a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 10px 0;
  display: block;
  position: relative;
}

/* Alt çizgi animasyonu */
.navbar .menu a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #38b6ff, #ff7a2d);
  transition: width 0.4s ease;
}

.navbar .menu a:hover {
  color: #38b6ff;
  transform: translateY(-2px);
}

.navbar .menu a:hover::after {
  width: 100%;
}

.navbar .menu a.active {
  color: #38b6ff;
}

.navbar .menu a.active::after {
  width: 100%;
}

/* ARACINI TASARLA BUTONU (menü içinde) */
.navbar .menu a.cta-nav {
  background: linear-gradient(135deg, #ff7a2d, #ffa66b);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(255, 122, 45, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover parıltı efekti */
.navbar .menu a.cta-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.4), 
    transparent
  );
  transition: left 0.5s ease;
}

.navbar .menu a.cta-nav:hover::before {
  left: 100%;
}

.navbar .menu a.cta-nav:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 122, 45, 0.6);
  background: linear-gradient(135deg, #ffa66b, #ff7a2d);
  color: #fff !important;
}

/* Pulse animasyonu */
.navbar .menu a.cta-nav::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  border: 2px solid #ff7a2d;
  opacity: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.6;
  }
}

.navbar .menu a.cta-nav:hover::after {
  animation: none;
}

/* Mobil */
@media screen and (max-width: 1024px) {
  .navbar .menu ul {
    gap: 24px;
  }
  
  .navbar .menu a {
    font-size: 13px;
  }
  
  .navbar .menu a.cta-nav {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media screen and (max-width: 768px) {
  .navbar .container {
    padding: 0 20px;
    height: 70px;
  }

  .navbar .logo img {
    height: 40px;
  }

  .navbar .menu ul {
    gap: 16px;
  }

  .navbar .menu a {
    font-size: 12px;
  }

  .navbar .menu a.cta-nav {
    padding: 8px 16px;
    font-size: 12px;
  }
}

@media screen and (max-width: 640px) {
  .navbar .menu {
    display: none;
  }
}

/* HERO SECTION */

.hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../img/y1.png') center center no-repeat;
  background-size: cover;
  margin-top: 80px;
}


.hero-overlay {
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero-overlay h1 {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 10px;
  animation: fadeInDown 1.2s ease forwards;
}

.hero-overlay p {
  font-size: 1.3rem;
  color: #ffffff;
  animation: fadeInUp 1.5s ease forwards;
}

/* HERO ANIMATIONS */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ABOUT SECTION */
.aboutBody {
  position: relative;
  background-color: #000;
  color: #fff;
  padding: 100px 0;
}

.aboutContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  gap: 80px;
}

.aboutImage {
  flex: 1;
  opacity: 0;
  transform: translateX(-80px);
  animation: slideInLeft 1.4s ease forwards;
}

.aboutImage img {
  width: 500px;
  height: 300px;
  border-radius: 18px;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.aboutImage img:hover {
  transform: scale(1.08);
}

.aboutText {
  flex: 1;
  max-width: 600px;
  opacity: 0;
  transform: translateX(80px);
  animation: slideInRight 1.4s ease forwards;
}

.aboutText h2 {
  font-size: 2.7rem;
  color: #ff3b3f;
  margin-bottom: 25px;
}

.aboutText p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 18px;
}

/* ABOUT ANIMATIONS */
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== CONTACT BLOCK ===== */
.contact-block{
  background:linear-gradient(160deg,#0e1a27 0%, #0b141e 55%, #0e1a27 100%);
  padding:70px 0 80px;
  position:relative;
  overflow:hidden;
}
.contact-block::before{
  content:"";
  position:absolute;inset:0;
  background:
    radial-gradient(circle at 82% 18%,rgba(56,182,255,.18),transparent 60%),
    radial-gradient(circle at 16% 84%,rgba(255,122,45,.18),transparent 62%);
  pointer-events:none;
  mix-blend-mode:screen;
  opacity:.55;
}
.contact-container{
  width:min(1200px,92%);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:40px;
}
.contact-head h2{
  font-size:42px;
  font-weight:800;
  letter-spacing:.6px;
  margin:0 0 12px;
  background:linear-gradient(90deg,#0a74da,#38b6ff,#ff7a2d);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.contact-head p{
  max-width:640px;
  color:#90a7b8;
  font-size:15px;
  line-height:1.5;
}
.contact-grid{
  display:grid;
  gap:26px;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
}
.c-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:22px 20px 24px;
  display:flex;
  flex-direction:column;
  gap:10px;
  position:relative;
  transition:.35s cubic-bezier(.25,.9,.3,1);
  backdrop-filter:blur(6px);
}
.c-card:hover{
  transform:translateY(-6px);
  border-color:#38b6ff;
  box-shadow:0 14px 34px -8px rgba(0,0,0,.55);
}
.c-card .icon{
  width:52px;height:52px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,#0a74da,#38b6ff);
  border-radius:14px;
  color:#fff;
  font-size:22px;
  box-shadow:0 8px 22px -6px rgba(10,116,218,.55);
}
.c-card h3{
  font-size:16px;
  font-weight:700;
  letter-spacing:.4px;
  margin:0;
  color:#eaf0f6;
}
.c-card p{
  font-size:14px;
  line-height:1.5;
  color:#b9c6d3;
  margin:0;
}
.c-card a{
  color:#38b6ff;
  text-decoration:none;
  font-weight:600;
  transition:.25s;
}
.c-card a:hover{color:#ff7a2d}

.contact-cta{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-top:10px;
}
.cta-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:linear-gradient(90deg,#0a74da,#38b6ff);
  color:#fff;
  font-weight:700;
  padding:14px 24px;
  border-radius:16px;
  text-decoration:none;
  font-size:15px;
  letter-spacing:.4px;
  box-shadow:0 10px 30px -6px rgba(10,116,218,.55);
  transition:.35s cubic-bezier(.25,.9,.3,1);
}
.cta-btn:hover{
  transform:translateY(-4px) scale(1.02);
  background:linear-gradient(90deg,#38b6ff,#0a74da);
}
.cta-btn.ghost{
  background:rgba(255,255,255,.06);
  color:#b9c6d3;
  box-shadow:none;
  border:1px solid rgba(255,255,255,.14);
}
.cta-btn.ghost:hover{
  background:rgba(56,182,255,.12);
  color:#fff;
  transform:translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .aboutContainer {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .aboutImage img {
    width: 90%;
  }

  .aboutText {
    max-width: 90%;
  }

  .hero-overlay h1 {
    font-size: 2.4rem;
  }

  .hero-overlay p {
    font-size: 1.1rem;
  }
}

@media (max-width:640px){
  .contact-head h2{font-size:34px}
  .c-card{padding:20px 18px}
  .contact-block{padding:60px 0 70px}
}

/* FOOTER */
footer {
  background-color: #111;
  padding: 40px 0;
  text-align: center;
}

footer p {
  color: #aaa;
  font-size: 0.9rem;
}
