/*!
 *  BUHARAGROUP TELEKOMÜNİKASYON İNŞAAT REKLAM ve DABIŞMANLIK HİZMETLERİ SAN. TİC. LTD. ŞTİ. 
 *  infp@buharagroup.com.tr
 *  0 850 305 1988
/*  Ataşehir/İSTANBUL
 * -------------------------- */


@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Orbitron:wght@400;500;600;700&display=swap');

:root {
  --primary-bg: #0c0c14;
  --secondary-bg: #50493A;
  --neon-cyan: #C2FF34;
  --neon-pink: #ff00a0;
  --neon-purple: #b300ff;
  --text-primary: #ffffff;
  --text-secondary: #b3b3cc;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#tech-footer {
  position: relative;
  background: var(--primary-bg);   /* arka plan rengi */
  color: var(--text-primary);
  padding: 40px 20px;
  overflow: hidden;
}

#tech-footer #circuit-bg {
  background-image: url('/upload/footerbg.png'); /* arka plan görseli */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  z-index: 0;
}

#tech-footer .footer-container {
  position: relative;
  z-index: 1;
}

#tech-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink), var(--neon-purple));
  z-index: 1;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.footer-column {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  
}
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.quick-links .quick-link {
  flex: 0 0 50%;
  box-sizing: border-box;
  text-align: left;
}

.footer-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-block;
  position: relative;
  transition: var(--transition);
  padding: 2px 0;
}

.footer-links a::before {
  content: '>';
  opacity: 0;
  margin-right: 0;
  color: var(--neon-cyan);
  transform: translateX(-5px);
  display: inline-block;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text-primary);
  transform: translateX(5px);
}

.footer-links a:hover::before {
  opacity: 1;
  margin-right: 5px;
  transform: translateX(0);
}
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icon {
  position: relative;
  overflow: hidden;
  border-radius: 50%; /* ikonlar yuvarlaksa kenarları düzgün olsun */
}

.social-icon img,
.social-icon svg {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 2; /* ikon üstte kalsın */
  transition: transform 0.3s ease;
}

.social-icon:hover img,
.social-icon:hover svg {
  transform: scale(1.1); /* hover'da hafif büyüme */
}

.social-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--social-color, rgba(194,255,52,0.4)),
    transparent
  );
  z-index: 1; /* ikonun altında değil üstünde görünür */
  transition: left 0.5s ease;
}

.social-icon:hover::after {
  left: 100%; /* hover'da ışık soldan sağa kayar */
}


.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.quick-link {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.quick-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--neon-cyan), var(--neon-purple));
  transition: var(--transition);
}

.quick-link:hover {
  color: var(--text-primary);
  transform: translateX(3px);
}

.quick-link:hover::before {
  width: 100%;
  opacity: 0.2;
}

.newsletter-form {
  margin-top: 15px;
  position: relative;
}

.newsletter-input {
  width: 100%;
  padding: 12px 15px;
  padding-right: 50px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition);
}

.newsletter-input:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: var(--transition);
}

.newsletter-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--neon-cyan);
  transition: var(--transition);
}

.newsletter-btn:hover svg {
  transform: translateX(3px);
}

.form-status {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--neon-cyan);
  opacity: 0;
  transform: translateY(-10px);
  transition: var(--transition);
}

.form-status.show {
  opacity: 1;
  transform: translateY(0);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.footer-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  position: relative;
  z-index: 2; /* yazılar arkada kaybolmasın */

}

.copyright {
  font-size: 0.85rem;
  background: linear-gradient(90deg, #6B8E23, #00FF7F, #40E0D0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  position: relative;
  z-index: 2; /* yazılar arkada kaybolmasın */

}

.tech-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #6B8E23, #00FF7F, #40E0D0);
  overflow: hidden;
  position: relative;
  z-index: 2; /* yazılar arkada kaybolmasın */

}

.tech-line::before {
  content: '';
  position: absolute;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  animation: techLine 3s linear infinite;
}

@keyframes techLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.wp-fixed-button {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
  display: block;
}
.wp-fixed-button img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  cursor: pointer;
}
.wp-fixed-button:hover img {
  transform: scale(1.05);
}

#circuit-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.05;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background-color: var(--neon-cyan);
  border-radius: 50%;
  filter: blur(1px);
}

.mode-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  z-index: 10;
}

.mode-toggle::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--neon-cyan);
  transition: var(--transition);
}

.light-mode {
  --primary-bg: #f0f2f5;
  --secondary-bg: #ffffff;
  --text-primary: #333333;
  --text-secondary: #666666;
}

.light-mode .mode-toggle::before {
  transform: translateX(20px);
  background-color: var(--neon-pink);
}

.light-mode #tech-footer {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.light-mode .social-icon {
  background-color: rgba(0, 0, 0, 0.05);
}

.light-mode .quick-link {
  background-color: rgba(0, 0, 0, 0.05);
}

.light-mode .newsletter-input {
  background-color: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

.light-mode .footer-bottom {
  border-top-color: rgba(0, 0, 0, 0.05);
}

.light-mode .tech-line {
  background: rgba(0, 0, 0, 0.05);
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

body,td,th {
  font-family: "Space Grotesk", sans-serif;
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  position: relative;
  width: 80%;   /* %80 genişlik */
  height: 90%;  /* %90 yükseklik */
  margin: 2% auto;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.modal-content iframe {
  width: 100%;
  height: 100%;
}

.close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 10000;
}
