/* ByDigitv - Inner Pages Ultra Premium Styles */
/* Kurulum, Hakkımızda, SSS, İletişim, Bayilik - Tutarlı tasarım */

:root {
  --bg1: #0a0a0a;
  --bg2: #141414;
  --text: #f5f5f5;
  --muted: #bdbdbd;
  --line: #ffffff1a;
  --accent: #ff3347;
  --accent2: #ff6b7a;
  --card: #1f1f1f;
  --card2: #181818;
  --gold: #ffd700;
  --purple: #8a2be2;
  --green: #00ff7f;
  --blue: #2196f3;
  --orange: #ff8f00;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  color: var(--text);
  overflow-x: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  font: 14px/1.6 "Segoe UI", Roboto, system-ui, sans-serif;
}

/* ========== HEADER ========== */
.inner-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--line);
  transition: transform 0.3s ease;
}

.inner-nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inner-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 18px;
  color: #fff !important;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.inner-logo:hover {
  color: #fff;
  transform: scale(1.02);
}

.inner-logo img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
  50% { box-shadow: 0 0 35px rgba(255, 215, 0, 0.9); }
}

.inner-nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.inner-nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.inner-nav-links a:hover,
.inner-nav-links a.active {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

.inner-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transition: width 0.3s ease;
}

.inner-nav-links a:hover::after,
.inner-nav-links a.active::after {
  width: 100%;
}

.inner-whatsapp-btn {
  padding: 12px 24px;
  border-radius: 25px;
  border: 0;
  background: linear-gradient(45deg, #25d366, #128c7e);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.inner-whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* ========== PAGE HERO ========== */
.page-hero {
  position: relative;
  padding: 140px 24px 70px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 51, 71, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 40%, #ff6b7a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* ========== MAIN CONTENT ========== */
.inner-main {
  padding: 0 24px 100px;
  max-width: 920px;
  margin: 0 auto;
}

.content-card {
  background: linear-gradient(145deg, var(--card) 0%, #252535 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 40px;
  margin-bottom: 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--purple), var(--gold));
  opacity: 0.6;
}

.content-card:hover {
  border-color: rgba(255, 215, 0, 0.35);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.08);
  transform: translateY(-4px);
}

.content-card h2 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.01em;
}

.content-card h2 .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 51, 71, 0.25), rgba(138, 43, 226, 0.25));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.content-card p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 16px;
}

.content-card p:last-of-type {
  margin-bottom: 0;
}

.content-card ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.content-card ul li {
  color: var(--muted);
  line-height: 1.85;
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.content-card ul li:last-child {
  border-bottom: 0;
}

.content-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
  font-size: 16px;
}

.content-card strong {
  color: var(--text);
  font-weight: 700;
}

/* CTA Box */
.cta-box-premium {
  margin-top: 48px;
  padding: 36px 40px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 51, 71, 0.06) 100%);
  border: 2px solid rgba(255, 215, 0, 0.35);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cta-box-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.08), transparent);
  animation: ctaShine 4s ease-in-out infinite;
}

@keyframes ctaShine {
  0% { left: -100%; }
  60%, 100% { left: 100%; }
}

.cta-box-premium p {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 20px;
  position: relative;
}

.cta-box-premium a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.15));
  border: 1px solid rgba(255, 215, 0, 0.5);
  border-radius: 14px;
  margin: 0 8px 8px 0;
}

.cta-box-premium a:hover {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #0a0a0a;
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.35);
  transform: translateY(-2px);
}

/* Contact cards (İletişim sayfası) */
.contact-cards-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 28px 0 0;
}

.contact-card-premium {
  display: block;
  padding: 28px 24px;
  background: linear-gradient(145deg, var(--card), #252535);
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--text);
  text-decoration: none;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card-premium:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
}

.contact-card-premium:hover::before {
  opacity: 1;
}

.contact-card-premium i {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.contact-card-premium i.fa-whatsapp { color: #25d366; }
.contact-card-premium i.fa-envelope { color: var(--gold); }
.contact-card-premium i.fa-phone { color: var(--accent); }

.contact-card-premium span {
  font-weight: 700;
  font-size: 16px;
}

/* ========== FOOTER ========== */
.inner-footer {
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg1) 100%);
  border-top: 1px solid var(--line);
  padding: 60px 24px 32px;
}

.inner-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}

.inner-footer-section h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 22px;
  color: #fff;
  letter-spacing: -0.01em;
}

.inner-footer-section ul {
  list-style: none;
}

.inner-footer-section a {
  color: var(--muted);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 15px;
}

.inner-footer-section a:hover {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  padding-left: 4px;
}

.inner-footer-section p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.inner-footer-bottom {
  text-align: center;
  padding-top: 36px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

/* Mobile menu toggle */
.inner-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.inner-mobile-toggle span {
  width: 26px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.inner-mobile-toggle:hover {
  background: rgba(255, 215, 0, 0.1);
}

.inner-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.inner-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.inner-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
  .inner-mobile-toggle {
    display: flex;
  }

  .inner-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  }

  .inner-nav-links.active {
    display: flex;
  }

  .inner-nav {
    position: relative;
  }

  .page-hero {
    padding: 120px 20px 50px;
    min-height: 220px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .inner-main {
    padding: 0 16px 60px;
  }

  .content-card {
    padding: 28px 24px;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .content-card h2 {
    font-size: 22px;
    flex-wrap: wrap;
  }

  .content-card h2 .icon-wrap {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .cta-box-premium {
    padding: 28px 24px;
    margin-top: 36px;
  }

  .cta-box-premium p {
    font-size: 16px;
  }

  .cta-box-premium a {
    display: block;
    margin: 0 0 10px;
    text-align: center;
    justify-content: center;
  }

  .inner-footer-content {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .inner-footer-section h3 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .page-hero h1 {
    font-size: 24px;
  }

  .content-card {
    padding: 24px 20px;
  }

  .contact-cards-premium {
    grid-template-columns: 1fr;
  }
}
