/* Custom Styles & Effects for kepbordro.com matching zetuteknoloji.com */

@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=JetBrains+Mono:wght@400;600;700&display=swap');

:root {
  --primary: #006DFF;
  --primary-hover: #0056cc;
  --cyan-accent: #06B6D4;
  --cyan-glow: rgba(6, 182, 212, 0.4);
  --dark-bg: #020617;
  --dark-card: #0A111D;
  --dark-border: rgba(255, 255, 255, 0.08);
}

body {
  font-family: 'Figtree', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #020617;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* Glowing text and logo animations */
.glow-text-cyan {
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.6);
}

.glow-text-blue {
  text-shadow: 0 0 25px rgba(0, 109, 255, 0.6);
}

.glow-box-blue {
  box-shadow: 0 0 30px rgba(0, 109, 255, 0.25);
}

.glow-box-cyan {
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.3);
}

/* Energy line animation for logo */
.logo-energy {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 60%);
  animation: pulse-energy 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse-energy {
  0%, 100% {
    transform: scale(0.9);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.9;
  }
}

/* Glassmorphism utility */
.glass-card {
  background: rgba(10, 17, 29, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.light .glass-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

/* Infinite Marquee for brand logos */
.marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 2rem;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: 2rem;
  animation: scroll-marquee 35s linear infinite;
}

.marquee-content-reverse {
  animation: scroll-marquee-reverse 40s linear infinite;
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes scroll-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes scroll-marquee-reverse {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Gradient borders */
.gradient-border-card {
  position: relative;
  background: #0A111D;
  border-radius: 1.5rem;
}

.gradient-border-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 1.55rem;
  padding: 1px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.4), rgba(0, 109, 255, 0.2), transparent 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Badge pulse animation */
@keyframes ping-subtle {
  75%, 100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.animate-ping-subtle {
  animation: ping-subtle 2.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* 1:1 Aspect Ratio Logo Cards */
.logo-card-1to1 {
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-card-1to1:hover {
  transform: translateY(-4px);
}

/* FAQ Item Smooth Styling */
.faq-item {
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-header:focus-visible {
  outline: 2px solid #06B6D4;
  outline-offset: -2px;
}

/* Floating animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.animate-float {
  animation: float 5s ease-in-out infinite;
}

/* Modal animations */
.modal-backdrop-anim {
  animation: fadeIn 0.25s ease-out forwards;
}

.modal-content-anim {
  animation: scaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Image Glows & 3D SaaS Perspective */
.image-glow-cyan {
  box-shadow: 0 20px 60px -15px rgba(6, 182, 212, 0.35), 0 0 30px rgba(6, 182, 212, 0.2);
}

.image-glow-blue {
  box-shadow: 0 20px 60px -15px rgba(0, 109, 255, 0.35), 0 0 30px rgba(0, 109, 255, 0.2);
}

.perspective-mockup {
  perspective: 1000px;
}

.isometric-card {
  transform: rotateX(6deg) rotateY(-4deg) rotateZ(1deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}

.isometric-card:hover {
  transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.02);
}

/* Shimmer animation for headers and cards */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shimmer-text {
  background: linear-gradient(90deg, #06B6D4 0%, #ffffff 50%, #006DFF 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s infinite linear;
}

/* Print styling for professional proposal output */
@media print {
  header, #floating-wa-btn, .fixed {
    position: static !important;
  }
  body.printing-proposal * {
    visibility: hidden !important;
  }
  body.printing-proposal #printable-proposal-wrapper,
  body.printing-proposal #printable-proposal-wrapper * {
    visibility: visible !important;
  }
  body.printing-proposal #printable-proposal-wrapper {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 12mm !important;
    background: white !important;
    color: #0f172a !important;
    display: block !important;
  }
  .no-print {
    display: none !important;
  }
  @page {
    size: A4 portrait;
    margin: 10mm;
  }
}


