/* =================================================================
   VICTUS BİLİŞİM - RESPONSIVE CSS
   ================================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f8f7f5;
  color: #1f2937;
  line-height: 1.6;
  overflow-x: hidden;
}

/* =================================================================
   HERO SECTION
   ================================================================= */

.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1rem;
  color: #fff;
  overflow: hidden;
  background-color: #06202a;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero.jpg');
  background-size: cover;
  background-position: center center;
  filter: saturate(0.95) contrast(0.9) brightness(0.5);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,6,23,0.65) 20%, rgba(2,6,23,0.25) 60%, rgba(2,6,23,0.75) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 1 1 56%;
  color: #fff;
}

.hero h1 {
  font-size: 2.25rem;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.hero p {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-search {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1rem;
}

.hero-search input[type="search"] {
  flex: 1;
  min-width: 220px;
  padding: 0.9rem 1rem;
  border-radius: 999px 0 0 999px;
  border: none;
  outline: none;
  font-size: 1rem;
}

.hero-search button {
  padding: 0.9rem 1.2rem;
  border-radius: 0 999px 999px 0;
  border: none;
  background: linear-gradient(90deg,#10b981,#06b6d4);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.hero-illustration {
  flex: 0 0 36%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-square {
  width: 272px;
  height: 272px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(2,6,23,0.12);
  overflow: hidden;
}

.hero-logo-square img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  display: block;
}

@media (max-width: 900px) {
  .hero-logo-square {
    width: 180px;
    height: 180px;
  }
}

/* Reviews (Google snippets) */
.reviews {
  display:flex;
  flex-direction:column;
  gap:0.75rem;
  max-height: 14rem;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.review { display:flex; gap:0.75rem; align-items:flex-start; background:#ffffff; padding:0.6rem; border-radius:8px; box-shadow:0 2px 8px rgba(2,6,23,0.04); }
.review-avatar { width:44px; height:44px; border-radius:8px; overflow:hidden; flex-shrink:0; display:flex; align-items:center; justify-content:center; background:linear-gradient(90deg,#ef4444,#f97316); color:white; font-weight:700; }
.review-body p { margin:0; color:#475569; font-size:0.95rem; line-height:1.3; }
.review-body strong { display:block; color:#0f172a; font-size:0.95rem; margin-bottom:0.25rem; }

.reviews a.reviews-link { display:block; margin-top:0.5rem; text-decoration:none; color:#2563eb; font-weight:600; }

/* Customer count visual */
.customer-count { margin-top:0.5rem; display:flex; flex-direction:column; align-items:flex-start; gap:0.1rem; }
.customer-number { font-size:1.6rem; font-weight:900; color:#0ea5e9; letter-spacing:0.5px; }
.customer-label { font-size:0.95rem; color:#6b7280; font-weight:700; text-transform:lowercase; }
.stat-card .customer-count { background: linear-gradient(90deg, rgba(14,165,233,0.06), rgba(6,182,212,0.03)); padding:0.6rem 0.75rem; border-radius:8px; margin-top:0.6rem; }

@media (min-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .hero p { font-size: 1.125rem; }
}

@media (max-width: 900px) {
  .hero-inner { flex-direction: column; align-items: flex-start; }
  .hero-illustration { width: 100%; order: 2; }
}

.hero h1 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #2563eb, #0891b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

.hero p {
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 2rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
}

@media (min-width: 768px) {
  .hero p {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .btn {
    font-size: 1.25rem;
  }
}

.btn-primary {
  background: linear-gradient(to bottom right, #0ea5e9, #2563eb, #14b8a6);
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  transform: scale(1.05) translateY(-4px);
}

.btn-secondary {
  background-color: #27272a;
  background-color: rgba(39, 39, 42, 0.7);
  color: white;
  border: 1px solid #52525b;
  font-weight: 600;
}

.btn-secondary:hover {
  background-color: #3f3f46;
  color: #60a5fa;
}

/* =================================================================
   BRANDS SECTION
   ================================================================= */

.brands-section {
  position: relative;
  z-index: 10;
  width: 100%;
  background-color: #f3f4f6;
  padding: 0.75rem 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.brands-container {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.brands-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .brands-label {
    font-size: 0.875rem;
  }
}

.brands-slider {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  overflow-x: hidden;
  padding: 0.5rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  user-select: none;
  animation: none;
}

.brands-slider::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .brands-slider {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .brands-slider {
    animation-duration: 60s;
  }
}

.brand-item {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0.25rem;
  gap: 0.25rem;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.brand-item:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .brand-item {
    font-size: 1.125rem;
  }
}

.brand-icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

@media (min-width: 768px) {
  .brand-icon {
    width: 2rem;
    height: 2rem;
  }
}

.brand-monster { color: #059669; }
.brand-apple { color: #1f2937; }
.brand-msi { color: #dc2626; }
.brand-lenovo { color: #d97706; }
.brand-asus { color: #7c3aed; }
.brand-acer { color: #2563eb; }
.brand-dell { color: #0891b2; }

/* Image-based brand logos (assets/icons/*.png) */
.brand-logo {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  margin-right: 0.5rem;
}

@media (min-width: 768px) {
  .brand-logo {
    width: 2rem;
    height: 2rem;
  }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-40%); }
}

/* =================================================================
   STATISTICS SECTION
   ================================================================= */

.stats-section {
  width: 100%;
  padding: 2.5rem 1rem;
  background-color: #f8f7f5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stats-container {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .stats-container {
    flex-direction: row;
    gap: 0;
  }
}

.stat-card {
  flex: 1;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin: 0 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.25rem;
  min-width: 11.25rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .stat-number {
    font-size: 3rem;
  }
}

.stat-label {
  font-size: 1rem;
  color: #d4d4d8;
  font-weight: 600;
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 1.125rem;
  }
}

.stat-experience .stat-number { color: #60a5fa; }
.stat-customers .stat-number { color: #22c55e; }
.stat-quality .stat-number { color: #facc15; }

/* =================================================================
   CONTACT SECTION
   ================================================================= */

.contact-section {
  width: 100%;
  padding: 4rem 1rem;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #e5e7eb;
}

.contact-container {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
}

.contact-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .contact-title {
    font-size: 2.25rem;
  }
}

.contact-subtitle {
  color: #6b7280;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.125rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background-color: #f9fafb;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  cursor: pointer;
}

.info-card:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.info-card:nth-child(2):hover {
  border-color: #059669;
}

.info-card:nth-child(3):hover {
  border-color: #7c3aed;
}

.info-card:nth-child(4):hover {
  border-color: #0891b2;
}

.info-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.info-address .info-title { color: #2563eb; }
.info-phone .info-title { color: #059669; }
.info-website .info-title { color: #7c3aed; }
.info-location .info-title { color: #0891b2; }

.info-text {
  color: #374151;
  line-height: 1.6;
}

.info-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 1.125rem;
}

.info-link:hover {
  color: #1d4ed8;
}

.info-website .info-link {
  color: #2563eb;
}

.info-website .info-link:hover {
  color: #1d4ed8;
}

.info-subtext {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.location-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #0891b2;
  color: white;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-weight: 600;
  margin-top: 0.75rem;
}

.location-link:hover {
  background-color: #06b6d4;
}

.map-container {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: none;
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */

.text-center {
  text-align: center;
}

.transition {
  transition: all 0.3s ease;
}

/* =================================================================
   RESPONSIVE FIXES
   ================================================================= */

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  .brands-slider {
    overflow-x: auto;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* =================================================================
   BRAND GRID (Marka Hizmet Alanı)
   ================================================================= */
.brand-grid-section {
  width: 100%;
  background: #ffffff;
  padding: 2rem 1rem;
  border-top: 1px solid #eef2ff;
  border-bottom: 1px solid #eef2ff;
}
.brand-grid-container {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}
.section-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.25rem;
}
.section-subtitle {
  color: #6b7280;
  margin-bottom: 1rem;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  align-items: stretch;
  margin-top: 0.5rem;
}
.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border-radius: 0.75rem;
  text-decoration: none;
  color: #0f172a;
  box-shadow: 0 6px 18px rgba(2,6,23,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid #e6eef9;
}
.brand-card img, .brand-card-svg {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
}
.brand-card span {
  font-weight: 700;
  font-size: 0.95rem;
}
.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(2,6,23,0.12);
}

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer {
  background: linear-gradient(180deg,#061826 0%, #06202a 100%);
  color: #e6f7fb;
  padding: 2.5rem 1rem 1rem;
}
.footer-container {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-brand {
  flex: 1 1 40%;
}
.footer-logo { width: 96px; height: auto; margin-bottom: 0.5rem; }
.footer-brand p { color: #cfeef7; line-height: 1.6; }
.footer-details { display:flex; gap:1rem; flex:1 1 55%; flex-wrap:wrap; }
.footer-column { min-width: 160px; }
.footer-column h4 { color: #9ee7fb; margin-bottom: 0.35rem; }
.footer-column p, .footer-column a { color: #d4f3fb; text-decoration: none; }
.footer-column a:hover { color: #ffffff; }
.footer-bottom { text-align:center; color: rgba(255,255,255,0.6); margin-top:1rem; font-size:0.9rem; }

@media (max-width: 720px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { flex-direction: column; }
  .footer-details { flex-direction: column; }
}
