/* Norva Medya - Kurumsal renk paleti: lacivert, sarı, beyaz */
:root {
  --navy: #0f1419;
  --navy-mid: #1a2332;
  --navy-light: #243447;
  --gold: #e8b923;
  --gold-light: #f5d054;
  --white: #f5f5f5;
  --gray: #8b98a5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', 'Segoe UI', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Arka plan gradient ve hafif desen */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(232, 185, 35, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(232, 185, 35, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Navigasyon */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 20, 25, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 185, 35, 0.12);
  transition: transform 0.4s ease, background 0.3s ease, border-color 0.3s ease;
}

.nav.scrolled {
  background: rgba(15, 20, 25, 0.95);
}

/* Marka yazısı – büyük, dikkat çekici */
.nav-brand {
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  font-weight: 800;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  letter-spacing: -0.02em;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.nav-brand:hover {
  opacity: 0.95;
  transform: scale(1.02);
}

.nav-brand-norva {
  color: var(--gold);
}

.nav-brand-medya {
  color: var(--white);
  background: var(--gold);
  color: var(--navy);
  padding: 0.2em 0.45em;
  margin-left: 0.15em;
  border-radius: 4px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobil menü butonu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero bölümü */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}

.hero-with-bg {
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 20, 25, 0.7) 0%, rgba(15, 20, 25, 0.92) 100%);
}

.hero-with-bg .hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.hero-content h1 .gold {
  color: var(--gold);
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.2s forwards;
}

.hero-cta {
  opacity: 0;
  animation: fadeUp 1s ease 0.4s forwards;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 185, 35, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  margin-left: 1rem;
}

.btn-outline:hover {
  background: rgba(232, 185, 35, 0.1);
  transform: translateY(-2px);
}

/* Bölüm başlıkları */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(24px);
}

.section-title.animate-in {
  animation: fadeUp 0.8s ease forwards;
}

.section-subtitle {
  color: var(--gray);
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(24px);
}

.section-subtitle.animate-in {
  animation: fadeUp 0.8s ease 0.1s forwards;
}

/* Hizmet kartları – çapraz düzen + minik yatay görseller */
.services-diagonal {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: var(--navy-mid);
  border: 1px solid rgba(232, 185, 35, 0.15);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

/* Çapraz konumlar */
.service-card-1 { grid-column: 1; grid-row: 1; transform: translateY(30px) rotate(-1.5deg); }
.service-card-2 { grid-column: 3; grid-row: 1; transform: translateY(30px) rotate(1deg); }
.service-card-3 { grid-column: 2; grid-row: 2; transform: translateY(30px) rotate(-0.8deg); }
.service-card-4 { grid-column: 1; grid-row: 3; transform: translateY(30px) rotate(1.2deg); }

.service-visual-1 { grid-column: 2; grid-row: 1; }
.service-visual-2 { grid-column: 1; grid-row: 2; }
.service-visual-3 { grid-column: 3; grid-row: 2; }
.service-visual-4 { grid-column: 2; grid-row: 3; }

.service-cta-card {
  grid-column: 3;
  grid-row: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
  background: var(--navy-mid);
  border: 1px solid rgba(232, 185, 35, 0.25);
  border-radius: 12px;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.4s ease;
  min-height: 180px;
  opacity: 0;
  transform: translateY(30px) rotate(1deg);
}

.service-cta-card.animate-in {
  animation: fadeUp 0.7s ease forwards;
  transform: translateY(0) rotate(1deg);
}

.service-cta-card:hover {
  transform: translateY(-6px) rotate(1deg);
  border-color: rgba(232, 185, 35, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  color: var(--gold);
}

.service-cta-label {
  font-weight: 700;
  font-size: 1.2rem;
}

.service-cta-text {
  color: var(--gray);
  font-size: 0.95rem;
}

.service-cta-arrow {
  color: var(--gold);
  font-size: 1.5rem;
}

.service-card.animate-in {
  animation: fadeUp 0.7s ease forwards;
}

.service-card-1.animate-in { animation: fadeUp 0.7s ease forwards; }
.service-card-1.animate-in { transform: translateY(0) rotate(-1.5deg); }
.service-card-2.animate-in { transform: translateY(0) rotate(1deg); }
.service-card-3.animate-in { transform: translateY(0) rotate(-0.8deg); }
.service-card-4.animate-in { transform: translateY(0) rotate(1.2deg); }

.service-card:hover {
  transform: translateY(-6px) rotate(0deg);
  border-color: rgba(232, 185, 35, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-card-1:hover { transform: translateY(-6px) rotate(-1.5deg); }
.service-card-2:hover { transform: translateY(-6px) rotate(1deg); }
.service-card-3:hover { transform: translateY(-6px) rotate(-0.8deg); }
.service-card-4:hover { transform: translateY(-6px) rotate(1.2deg); }

/* Minik yatay görseller (boşluklarda) */
.service-visual {
  border-radius: 10px;
  overflow: hidden;
  min-height: 120px;
  align-self: stretch;
  opacity: 0;
  transform: translateY(20px);
  border: 1px solid rgba(232, 185, 35, 0.12);
  position: relative;
}

.service-visual.animate-in {
  animation: fadeUp 0.6s ease 0.2s forwards;
}

.service-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  display: block;
}

.service-card .icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(232, 185, 35, 0.2), rgba(232, 185, 35, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Ortaklıklar / Logo grid */
.partners-section {
  background: var(--navy-mid);
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.partner-logo {
  height: 60px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(0.4) brightness(1.1);
  opacity: 0.85;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.partner-logo:hover {
  filter: grayscale(0) brightness(1.2);
  opacity: 1;
  transform: scale(1.05);
}

/* Footer */
.footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(232, 185, 35, 0.1);
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  transition: opacity 0.25s ease;
}

.footer-brand:hover {
  opacity: 0.9;
}

.footer-brand-norva {
  color: var(--gold);
}

.footer-brand-medya {
  color: var(--navy);
  background: var(--gold);
  padding: 0.18em 0.4em;
  margin-left: 0.12em;
  border-radius: 4px;
  font-weight: 800;
}

.footer p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Animasyonlar */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Scroll ile görünen öğeler */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
}

.animate-on-scroll.visible {
  animation: fadeUp 0.7s ease forwards;
}

/* Hakkımızda / İçerik sayfaları */
.page-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--gray);
  max-width: 600px;
}

.page-hero-with-bg {
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 20, 25, 0.75) 0%, rgba(15, 20, 25, 0.92) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero-inner h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.page-hero-inner p {
  color: var(--gray);
  max-width: 600px;
}

.content-block {
  max-width: 720px;
  margin: 0 auto 2rem;
}

.content-block h2 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.content-block p {
  color: var(--gray);
  margin-bottom: 1rem;
}

/* Hizmet detay sayfası - büyük kartlar */
.service-detail-card {
  background: var(--navy-mid);
  border: 1px solid rgba(232, 185, 35, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  opacity: 0;
  transform: translateY(24px);
  transition: transform 0.4s ease, border-color 0.3s ease;
}

.service-detail-card.animate-in {
  animation: fadeUp 0.7s ease forwards;
}

.service-detail-card:hover {
  border-color: rgba(232, 185, 35, 0.35);
}

.service-detail-card .icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(232, 185, 35, 0.25), rgba(232, 185, 35, 0.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.service-detail-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.service-detail-card p {
  color: var(--gray);
}

/* İletişim sayfası */
.contact-section {
  padding-top: 2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-left {
  position: relative;
  z-index: 1;
}

.contact-form-wrap {
  background: var(--navy-mid);
  border: 1px solid rgba(232, 185, 35, 0.2);
  border-radius: 16px;
  padding: 2rem;
}

.contact-form-title {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
  color: var(--white);
}

.contact-form-desc {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(232, 185, 35, 0.25);
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray);
  opacity: 0.8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-block {
  width: 100%;
  margin-top: 0.5rem;
}

.contact-form-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
}

.contact-form-note a {
  color: var(--gold);
}

.contact-form-note code {
  background: rgba(0,0,0,0.3);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.85em;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-card {
  background: var(--navy-mid);
  border: 1px solid rgba(232, 185, 35, 0.15);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 185, 35, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.contact-card-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-card-logo-box {
  width: 100%;
  padding: 2rem 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.contact-card-logo-box img {
  object-fit: contain;
}

.contact-card-logo-phone {
  color: var(--gold);
}

.contact-card-body {
  padding: 1rem 1.5rem 1.5rem;
}

.contact-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.contact-card-body p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.contact-card-link {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 500;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-mid);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(232, 185, 35, 0.1);
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    gap: 1.5rem;
  }

  .partner-logo {
    height: 48px;
    max-width: 110px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .services-diagonal {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .service-card-1,
  .service-card-2,
  .service-card-3,
  .service-card-4,
  .service-visual-1,
  .service-visual-2,
  .service-visual-3,
  .service-visual-4,
  .service-cta-card {
    grid-column: 1;
    grid-row: auto;
  }

  .service-card-1 { grid-row: 1; transform: translateY(30px); }
  .service-visual-1 { grid-row: 2; min-height: 80px; }
  .service-card-2 { grid-row: 3; transform: translateY(30px); }
  .service-visual-2 { grid-row: 4; min-height: 80px; }
  .service-card-3 { grid-row: 5; transform: translateY(30px); }
  .service-visual-3 { grid-row: 6; min-height: 80px; }
  .service-card-4 { grid-row: 7; transform: translateY(30px); }
  .service-visual-4 { grid-row: 8; min-height: 80px; }
  .service-cta-card { grid-row: 9; transform: translateY(30px); min-height: 140px; }

  .service-card-1.animate-in,
  .service-card-2.animate-in,
  .service-card-3.animate-in,
  .service-card-4.animate-in { transform: translateY(0); }

  .service-cta-card.animate-in { transform: translateY(0); }

  .service-card-1:hover,
  .service-card-2:hover,
  .service-card-3:hover,
  .service-card-4:hover { transform: translateY(-6px); }

  .service-cta-card:hover { transform: translateY(-6px); }
}
