/* ==========================================================================
   DEĞİŞİM GÜVENLİK SİSTEMLERİ - MODERN ENHANCEMENTS & PROFESSIONAL STYLING
   ========================================================================== */

:root {
  --primary-color: #0d47a1;
  --primary-dark: #072b61;
  --primary-light: #1e88e5;
  --accent-color: #f39c12;
  --accent-hover: #d68100;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --card-hover-shadow: 0 20px 30px -10px rgba(13, 71, 161, 0.15), 0 10px 15px -5px rgba(0, 0, 0, 0.08);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Font & Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.65;
}

/* Top Notification / Info Bar */
.top-bar-notice {
  background: linear-gradient(90deg, #072b61 0%, #0d47a1 100%);
  color: #ffffff;
  padding: 8px 0;
  font-size: 13.5px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-notice a {
  color: #ffffff;
  transition: var(--transition-smooth);
}

.top-bar-notice a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.top-bar-badge {
  background: var(--accent-color);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  margin-right: 8px;
  text-transform: uppercase;
}

/* Header & Navbar Enhancement */
.header_section {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.navbar-brand:hover {
  transform: translateY(-1px);
}

.brand-logo-img {
  height: 56px;
  width: auto;
  max-width: 290px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  transition: var(--transition-smooth);
}

.navbar-brand:hover .brand-logo-img {
  filter: drop-shadow(0 4px 10px rgba(0, 102, 255, 0.25));
}

@media (max-width: 991px) {
  .brand-logo-img {
    height: 48px;
    max-width: 240px;
  }
}

@media (max-width: 575px) {
  .brand-logo-img {
    height: 42px;
    max-width: 210px;
  }
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  font-weight: 600;
  font-size: 14.5px;
  color: #334155;
  padding: 8px 16px !important;
  margin: 0 4px;
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.custom_nav-container .navbar-nav .nav-item .nav-link:hover,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #0d47a1 !important;
  background-color: rgba(13, 71, 161, 0.07);
}

.header-quote-btn {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13.5px;
  padding: 9px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.35);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(243, 156, 18, 0.5);
  background: linear-gradient(135deg, #e67e22, #d35400);
  color: #ffffff !important;
}

/* ==========================================================================
   HERO / SLIDER SECTION - PREMIUM HIGH-TECH ENHANCEMENT
   ========================================================================== */
.slider_section {
  position: relative;
  background: linear-gradient(135deg, #071930 0%, #0c2b54 50%, #092040 100%);
  color: #ffffff;
  padding: 60px 0 75px;
  overflow: hidden;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 15px 35px rgba(7, 25, 48, 0.25);
}

.slider_section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 198, 255, 0.15) 0%, rgba(0, 102, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.slider_section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.12) 0%, rgba(243, 156, 18, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.slider_section .container {
  position: relative;
  z-index: 2;
}

/* Slider Badge Pill */
.slider-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #38bdf8;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slider-badge-pill .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-green 1.5s infinite;
}

/* Slide Detail Typography */
.slider_section .detail-box h1 {
  font-size: 2.7rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.22;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.slider_section .detail-box h1 .highlight-cyan {
  background: linear-gradient(90deg, #00d2ff, #3a7bd5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slider_section .detail-box h1 .highlight-gold {
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slider_section .detail-box p {
  font-size: 15.5px;
  color: #cbd5e1;
  margin-bottom: 22px;
  line-height: 1.7;
}

/* Slider Feature Bullets */
.slider-feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.slider-feature-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #f1f5f9;
}

.slider-feature-bullets li i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* Buttons inside Slider */
.slider_section .btn-box {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
  position: relative;
  z-index: 5;
}

.btn-hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 1.4;
  white-space: nowrap;
}

.btn-hero-action i {
  font-size: 16px;
}

/* Call Button */
.btn-hero-call {
  background: linear-gradient(135deg, #0052cc 0%, #0070f3 100%);
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(0, 112, 243, 0.4);
}

.btn-hero-call:hover {
  background: linear-gradient(135deg, #003d99 0%, #0052cc 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 112, 243, 0.6);
  color: #ffffff !important;
  text-decoration: none;
}

/* WhatsApp Button */
.btn-hero-wa {
  background: linear-gradient(135deg, #1f9d55 0%, #25d366 100%);
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.btn-hero-wa:hover {
  background: linear-gradient(135deg, #168044 0%, #1eb956 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
  color: #ffffff !important;
  text-decoration: none;
}

@media (max-width: 991px) {
  .slider_section .btn-box {
    gap: 10px;
  }
  .btn-hero-action {
    padding: 10px 18px;
    font-size: 13.5px;
  }
}

@media (max-width: 575px) {
  .slider_section .btn-box {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }
  .btn-hero-action {
    width: 100%;
    padding: 11px 18px;
    font-size: 14px;
    justify-content: center;
  }
}

/* Hero Image Showcase */
.hero-img-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero-img-showcase .ambient-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 198, 255, 0.25) 0%, rgba(13, 71, 161, 0) 70%);
  border-radius: 50%;
  animation: pulse-slow 4s infinite alternate;
  z-index: 1;
}

.hero-img-showcase img {
  position: relative;
  z-index: 2;
  max-height: 380px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.45));
  transition: var(--transition-smooth);
}

.hero-img-showcase:hover img {
  transform: scale(1.03) translateY(-4px);
}

/* Floating Glassmorphism Badges */
.floating-stat-badge {
  position: absolute;
  z-index: 3;
  background: rgba(15, 34, 64, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float-badge 3s ease-in-out infinite alternate;
}

.floating-stat-badge.badge-top-left {
  top: 10px;
  left: 0;
}

.floating-stat-badge.badge-bottom-right {
  bottom: 10px;
  right: 0;
  animation-delay: 1.5s;
}

.floating-stat-badge i {
  font-size: 20px;
  color: #f59e0b;
}

.floating-stat-badge .badge-text strong {
  display: block;
  font-size: 13.5px;
  color: #ffffff;
  line-height: 1.2;
}

.floating-stat-badge .badge-text span {
  font-size: 11px;
  color: #94a3b8;
}

@keyframes float-badge {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

@keyframes pulse-slow {
  0% { transform: scale(0.95); opacity: 0.6; }
  100% { transform: scale(1.1); opacity: 1; }
}

/* Carousel Indicators & Controls */
.slider_section .carousel-indicators {
  bottom: -45px;
  margin-bottom: 0;
}

.slider_section .carousel-indicators li {
  width: 36px;
  height: 6px;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  transition: var(--transition-smooth);
}

.slider_section .carousel-indicators li.active {
  background: linear-gradient(90deg, #00d2ff, #0066ff);
  width: 54px;
}

@media (max-width: 991px) {
  .slider_section {
    padding: 40px 0 60px;
    border-radius: 0 0 20px 20px;
  }
  .slider_section .detail-box h1 {
    font-size: 2rem;
  }
  .hero-img-showcase {
    margin-top: 30px;
  }
  .hero-img-showcase img {
    max-height: 280px;
  }
  .floating-stat-badge {
    padding: 8px 12px;
  }
}

/* Features / Badges Row */
.features-section {
  background: var(--bg-light);
  padding: 40px 0;
  border-bottom: 1px solid #e2e8f0;
}

.feature-card {
  background: #ffffff;
  padding: 24px 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: #93c5fd;
  box-shadow: var(--card-shadow);
}

.feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(13, 71, 161, 0.08);
  color: #0d47a1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-box {
  background: #0d47a1;
  color: #ffffff;
}

.feature-info h5 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #0f172a;
}

.feature-info p {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Heading Container Standardization */
.heading_container h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #072b61;
  position: relative;
  margin-bottom: 12px;
}

.heading_container h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.heading_container p {
  color: #64748b;
  font-size: 16px;
  max-width: 650px;
}

/* Product / Camera Cards */
.furniture_section .box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 30px);
}

.furniture_section .box:hover {
  transform: translateY(-8px);
  border-color: #bfdbfe;
  box-shadow: var(--card-hover-shadow);
}

.furniture_section .box .img-box {
  background: #f8fafc;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  position: relative;
}

.furniture_section .box .img-box img {
  max-height: 170px;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.furniture_section .box:hover .img-box img {
  transform: scale(1.06);
}

.product-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #0d47a1;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.furniture_section .box .detail-box {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.furniture_section .box .detail-box h5 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.product-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
  font-size: 12.5px;
  color: #64748b;
}

.product-features-list li {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-features-list li i {
  color: #10b981;
  font-size: 11px;
}

.furniture_section .box .price_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
  margin-top: auto;
}

.furniture_section .box .price_box .price_heading {
  font-size: 18px;
  font-weight: 800;
  color: #0d47a1;
  margin: 0;
}

.product-btn-quote {
  background: #f39c12;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.product-btn-quote:hover {
  background: #d68100;
  transform: translateY(-1px);
}

/* Blog / Alarm Section Cards */
.blog_section .box {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
  margin-bottom: 30px;
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
}

.blog_section .box:hover {
  transform: translateY(-8px);
  border-color: #bfdbfe;
  box-shadow: var(--card-hover-shadow);
}

.blog_section .box .img-box {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog_section .box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.blog_section .box:hover .img-box img {
  transform: scale(1.08);
}

.blog_section .box .detail-box {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog_section .box .detail-box h5 {
  font-size: 18px;
  font-weight: 700;
  color: #072b61;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog_section .box .detail-box p {
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* About Section Enhancements */
.about_section {
  background-color: #f8fafc;
}

.about_section .img-box img {
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  width: 100%;
  object-fit: cover;
}

.about_section .detail-box p {
  color: #334155;
  font-size: 15.5px;
  line-height: 1.8;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.about-feature-item {
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 14px;
  color: #072b61;
}

.about-feature-item i {
  color: #f39c12;
  font-size: 18px;
}

/* Client / Technical Support Section */
.client_section .box {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 35px;
  box-shadow: var(--card-shadow);
}

.client_section .detail-box .name h6 {
  font-size: 19px;
  font-weight: 800;
  color: #072b61;
}

.support-phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0d47a1;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 22px;
  border-radius: 30px;
  margin-top: 15px;
  transition: var(--transition-smooth);
}

.support-phone-badge:hover {
  background: #072b61;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(13, 71, 161, 0.35);
}

/* Contact Form Enhancements */
.contact_section .form_container {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--card-shadow);
}

.contact_section .form_container input,
.contact_section .form_container textarea,
.contact_section .form_container select {
  width: 100%;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 14.5px;
  color: #1e293b;
  margin-bottom: 16px;
  transition: var(--transition-smooth);
  background-color: #f8fafc;
}

.contact_section .form_container input:focus,
.contact_section .form_container textarea:focus,
.contact_section .form_container select:focus {
  outline: none;
  border-color: #0d47a1;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.15);
}

.contact_section .form_container textarea {
  min-height: 120px;
  resize: vertical;
}

.contact_section .btn_box button {
  background: linear-gradient(135deg, #0d47a1, #1e88e5);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 35px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(13, 71, 161, 0.3);
  transition: var(--transition-smooth);
  width: 100%;
}

.contact_section .btn_box button:hover {
  background: linear-gradient(135deg, #072b61, #0d47a1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 71, 161, 0.4);
}

.map-responsive-container {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--card-shadow);
  height: 100%;
  min-height: 420px;
}

.map-responsive-container iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* Info & Footer Section */
.info_section {
  background: #072b61;
  color: #e2e8f0;
  padding: 60px 0 40px;
}

.info_section .contact_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
  margin-bottom: 40px;
}

.info_section .contact_nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cbd5e1;
  font-size: 14.5px;
  transition: var(--transition-smooth);
}

.info_section .contact_nav a i {
  font-size: 18px;
  color: var(--accent-color);
}

.info_section .contact_nav a:hover {
  color: #ffffff;
}

.info_links_menu a {
  display: block;
  color: #cbd5e1;
  font-size: 14.5px;
  margin-bottom: 10px;
  transition: var(--transition-smooth);
}

.info_links_menu a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer_section {
  background: #04193b;
  color: #94a3b8;
  padding: 20px 0;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer_section a {
  color: #ffffff;
  font-weight: 600;
}

.footer_section a:hover {
  color: var(--accent-color);
}

/* ==========================================================================
   INTERACTIVE WHATSAPP CHAT ASSISTANT WIDGET
   ========================================================================== */
.wa-widget-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 99999;
  font-family: 'Poppins', sans-serif;
}

/* Floating Action Trigger Button */
.wa-trigger-btn {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #1ebe5d 0%, #25d366 100%);
  color: #ffffff !important;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.wa-trigger-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
}

.wa-badge-unread {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  background-color: #ef4444;
  color: #ffffff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  animation: pulse-red 2s infinite;
}

/* WhatsApp Chat Window Box */
.wa-chat-box {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 360px;
  max-width: calc(100vw - 30px);
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: none;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  transform-origin: bottom right;
  animation: wa-scale-in 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  z-index: 100000;
}

.wa-chat-box.active {
  display: flex;
}

@keyframes wa-scale-in {
  0% { opacity: 0; transform: scale(0.8) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Chat Header */
.wa-chat-header {
  background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
  color: #ffffff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-header-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #128c7e;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.wa-online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background-color: #22c55e;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.wa-header-info h6 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
  color: #ffffff;
}

.wa-header-info p {
  font-size: 11.5px;
  color: #a7f3d0;
  margin-bottom: 0;
}

.wa-close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 50%;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.wa-close-btn:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
}

/* Chat Body */
.wa-chat-body {
  background: #e5ddd5 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" opacity="0.06"><path d="M20 20 L40 40 M40 20 L20 40" stroke="%23000" stroke-width="2"/></svg>');
  padding: 18px 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 360px;
  overflow-y: auto;
}

.wa-chat-bubble {
  background: #ffffff;
  border-radius: 0 16px 16px 16px;
  padding: 14px 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  font-size: 13.5px;
  color: #1e293b;
  line-height: 1.5;
  position: relative;
}

.wa-bubble-time {
  display: block;
  text-align: right;
  font-size: 10px;
  color: #94a3b8;
  margin-top: 4px;
}

/* Quick Reply Chips */
.wa-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.wa-chip {
  background: #ffffff;
  color: #075e54;
  border: 1.5px solid #128c7e;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.wa-chip:hover {
  background: #128c7e;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Chat Footer / Input */
.wa-chat-footer {
  background: #f0f2f5;
  padding: 12px 14px;
  border-top: 1px solid #e2e8f0;
}

.wa-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wa-input-field {
  flex-grow: 1;
  border: 1px solid #cbd5e1;
  border-radius: 24px;
  padding: 10px 16px;
  font-size: 13.5px;
  outline: none;
  background: #ffffff;
  color: #1e293b;
  transition: var(--transition-smooth);
}

.wa-input-field:focus {
  border-color: #128c7e;
  box-shadow: 0 0 0 2px rgba(18, 140, 126, 0.2);
}

.wa-send-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #128c7e;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.wa-send-btn:hover {
  background: #075e54;
  transform: scale(1.06);
}

.wa-footer-subtext {
  font-size: 11px;
  color: #64748b;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0;
}

/* Floating Call Button */
.floating-call {
  position: fixed;
  bottom: 95px;
  right: 25px;
  width: 50px;
  height: 50px;
  background-color: #0d47a1;
  color: #ffffff !important;
  border-radius: 50%;
  text-align: center;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(13, 71, 161, 0.4);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.floating-call:hover {
  transform: scale(1.1);
  background-color: #072b61;
}

@keyframes pulse-red {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .long_section {
    margin-left: 0;
    margin-right: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
  .slider_section .detail-box h1 {
    font-size: 2rem;
  }
  .top-bar-notice {
    text-align: center;
  }
  .top-bar-notice .contact-links {
    margin-top: 5px;
  }
}

/* ==========================================================================
   PROJELER & PROJE İŞ GALERİSİ (ÇERÇEVELİ & PROFESYONEL DİZAYN)
   ========================================================================== */

/* Proje Slider & Showcase on Homepage */
.project-showcase-slider {
  background: linear-gradient(145deg, #0b192c 0%, #1e293b 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  position: relative;
  margin-bottom: 25px;
}

.project-slide-item {
  padding: 35px 30px;
}

.project-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  padding: 5px 14px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  box-shadow: 0 3px 10px rgba(245, 158, 11, 0.3);
}

.project-slide-title {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 12px;
}

.project-slide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #cbd5e1;
}

.project-slide-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.project-slide-desc {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Metric Pills Grid */
.project-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.metric-pill-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.metric-pill-item i {
  font-size: 18px;
  color: #38bdf8;
  flex-shrink: 0;
}

.metric-pill-item strong {
  display: block;
  font-size: 13px;
  color: #ffffff;
  line-height: 1.2;
}

.metric-pill-item small {
  font-size: 11px;
  color: #94a3b8;
  display: block;
}

/* Visual Box with Before/After */
.project-slide-visual {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.15);
  height: 340px;
  background: #0f172a;
}

.project-slide-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-floating-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(13, 71, 161, 0.9);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.visual-before-after-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(16, 185, 129, 0.95);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4);
  z-index: 2;
}

/* Slider Controls */
.project-slider-nav {
  position: absolute;
  bottom: 20px;
  right: 25px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.btn-slider-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-slider-arrow:hover {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
}

/* Timeline Process Steps */
.project-timeline-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.timeline-step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
}

.timeline-step-card:hover {
  border-color: #0d47a1;
  transform: translateY(-2px);
}

.timeline-step-num {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #0d47a1 0%, #1e88e5 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-step-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.timeline-step-desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.45;
}

/* Filter Navigation */
.project-filter-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.project-filter-btn {
  background: #ffffff;
  color: #334155;
  border: 1.5px solid #cbd5e1;
  padding: 9px 20px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  transition: var(--transition-smooth);
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.04);
}

.project-filter-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #94a3b8;
}

.project-filter-btn.active {
  background: linear-gradient(135deg, #0d47a1 0%, #1e88e5 100%);
  color: #ffffff;
  border-color: #0d47a1;
  box-shadow: 0 4px 12px rgba(13, 71, 161, 0.25);
}

/* Çerçeveli ve Profesyonel Proje Kartı */
.project-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 1.5px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(13, 71, 161, 0.12);
  border-color: #93c5fd;
}

.project-card-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #0f172a;
  border-bottom: 1px solid #e2e8f0;
}

.project-card-img-wrap a {
  display: block;
  width: 100%;
  height: 100%;
}

.project-card-img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 220px !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.5s ease;
}

.project-card:hover .project-card-img {
  transform: scale(1.06);
}

.project-card-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(13, 71, 161, 0.92);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.project-card-cam-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(6px);
  color: #fbbf24;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  z-index: 3;
}

.project-card-before-after-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(16, 185, 129, 0.95);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.project-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-card-loc {
  font-size: 12.5px;
  color: #64748b;
  margin-bottom: 8px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.project-card-loc i {
  color: #ef4444;
}

.project-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  margin-bottom: 10px;
}

.project-card-title a {
  color: #1e293b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.project-card-title a:hover {
  color: #0d47a1;
}

.project-card-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}

.project-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: #0d47a1;
  text-decoration: none;
  background: #f0f7ff;
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.project-card-btn:hover {
  background: #0d47a1;
  color: #ffffff;
  text-decoration: none;
}

/* ==========================================================================
   PROJE DETAY SAYFASI (PROJECT DETAIL PAGE)
   ========================================================================== */

.project-detail-header {
  background: linear-gradient(135deg, #072b61 0%, #0d47a1 100%);
  color: #ffffff;
  padding: 38px 0;
  position: relative;
}

.project-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #cbd5e1;
  margin-bottom: 12px;
}

.project-breadcrumb a {
  color: #93c5fd;
  text-decoration: none;
}

.project-detail-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 14px;
}

.project-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-meta-pill {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-meta-pill i {
  color: #fbbf24;
}

/* Before / After Comparison Showcase */
.before-after-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1.5px solid #e2e8f0;
  margin-bottom: 25px;
}

.before-after-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 280px;
  background: #0f172a;
}

.before-after-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.before-after-card:hover img {
  transform: scale(1.04);
}

.before-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #dc2626;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
  letter-spacing: 0.5px;
  z-index: 2;
}

.after-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #16a34a;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.4);
  letter-spacing: 0.5px;
  z-index: 2;
}

.before-after-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  color: #ffffff;
  padding: 16px 12px 10px 12px;
  font-size: 12.5px;
  font-weight: 500;
  z-index: 2;
}

/* Equipment / Work Scope List */
.scope-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.scope-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 14px;
  background: #f8fafc;
  border-radius: 8px;
  margin-bottom: 7px;
  border: 1px solid #e2e8f0;
  font-size: 13.5px;
  color: #1e293b;
  font-weight: 500;
}

.scope-checklist-item i {
  color: #10b981;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Photo Gallery Grid & Lightbox */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.gallery-grid-item {
  position: relative;
  height: 140px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  background: #0f172a;
}

.gallery-grid-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.4s ease;
}

.gallery-grid-item:hover img {
  transform: scale(1.08);
}

.gallery-grid-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 71, 161, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-grid-item:hover .gallery-grid-overlay {
  opacity: 1;
}

.gallery-grid-overlay i {
  color: #ffffff;
  font-size: 22px;
}

/* Sidebar Call to Action Box */
.project-sidebar-cta {
  background: linear-gradient(135deg, #072b61 0%, #0d47a1 100%);
  border-radius: 16px;
  padding: 22px;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(13, 71, 161, 0.18);
}

.project-sidebar-cta h5 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
}

.project-sidebar-cta p {
  font-size: 13px;
  color: #e2e8f0;
  margin-bottom: 16px;
  line-height: 1.5;
}

.btn-sidebar-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13.5px;
  transition: all 0.2s ease;
  margin-bottom: 8px;
}

.btn-sidebar-wa:hover {
  background: #20ba5a;
  color: #ffffff;
  text-decoration: none;
}

.btn-sidebar-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13.5px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.2s ease;
}

.btn-sidebar-call:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  text-decoration: none;
}

/* ==========================================================================
   PROJE & MONTAJ FOTOĞRAF GALERİSİ (YAN YANA 6 KARE DİZAYN)
   ========================================================================== */

/* ==========================================================================
   PROJE & DETAYLI UYGULAMA GALERİSİ (KOYU TEMA / DARK THEME)
   ========================================================================== */

.dark-gallery-section {
  background: linear-gradient(180deg, #071930 0%, #051329 50%, #030d1c 100%);
  color: #ffffff;
  padding: 60px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 25px;
}

@media (max-width: 991px) {
  .dark-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .dark-gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.dark-gallery-card {
  background: #0d1e38;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.dark-gallery-card:hover {
  transform: translateY(-5px);
  border-color: #00d2ff;
  box-shadow: 0 16px 35px rgba(0, 210, 255, 0.25);
}

.dark-gallery-card-img-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #071220;
}

.dark-gallery-card-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.5s ease;
}

.dark-gallery-card:hover .dark-gallery-card-img-wrap img {
  transform: scale(1.08);
}

.dark-gallery-zoom-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(7, 25, 48, 0.85);
  backdrop-filter: blur(6px);
  color: #00d2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.25s ease;
  border: 1px solid rgba(0, 210, 255, 0.4);
}

.dark-gallery-card:hover .dark-gallery-zoom-badge {
  opacity: 1;
}

.dark-gallery-card-caption {
  padding: 14px 16px;
  background: #0b1a30;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-gallery-card-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
  line-height: 1.3;
}

.dark-gallery-card-sub {
  font-size: 12px;
  color: #38bdf8;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   SAHA UYGULAMALARI & REFERANSLAR 3'LÜ YANYANA GALERİ (3X2 GRID)
   ========================================================================== */

.field-three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 25px;
}

@media (max-width: 991px) {
  .field-three-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .field-three-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.field-three-card {
  position: relative;
  height: 235px;
  border-radius: 16px;
  overflow: hidden;
  background: #0d1e38;
  border: 1.5px solid rgba(0, 210, 255, 0.25);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.field-three-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: #00d2ff;
  box-shadow: 0 18px 35px rgba(0, 210, 255, 0.35);
}

.field-three-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.field-three-card:hover img {
  transform: scale(1.09);
}

.field-three-card .field-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 25, 48, 0.95) 0%, rgba(7, 25, 48, 0.4) 45%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  z-index: 2;
  transition: background 0.3s ease;
}

.field-three-card:hover .field-thumb-overlay {
  background: linear-gradient(to top, rgba(7, 25, 48, 0.95) 0%, rgba(0, 210, 255, 0.2) 50%, transparent 80%);
}


.field-thumb-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.field-thumb-badge {
  background: rgba(0, 82, 204, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.2px;
}

.field-thumb-zoom-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.85);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 210, 255, 0.5);
}

.field-thumb-card:hover .field-thumb-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

.field-thumb-bottom {
  margin-top: auto;
}

.field-thumb-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.field-thumb-meta {
  color: #38bdf8;
  font-size: 11.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}


/* 4 Güvence Kartı (High Contrast Dark Box) */
.assurance-dark-card {
  background: #0b1a30 !important;
  border: 1.5px solid rgba(0, 210, 255, 0.25) !important;
  border-radius: 16px !important;
  padding: 22px 18px !important;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.assurance-dark-card:hover {
  transform: translateY(-4px);
  border-color: #00d2ff !important;
  box-shadow: 0 14px 30px rgba(0, 210, 255, 0.25) !important;
}

.assurance-dark-card i {
  font-size: 28px;
  margin-bottom: 12px;
  display: inline-block;
}

.assurance-dark-card h6 {
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  margin-bottom: 8px !important;
  letter-spacing: -0.2px;
}

.assurance-dark-card p, .assurance-dark-card small {
  color: #94a3b8 !important;
  font-size: 12.5px !important;
  line-height: 1.55 !important;
  display: block;
  opacity: 1 !important;
}

/* ==========================================================================
   FİRMA LOGOLARI 6'LI YANYANA IZGARA (BRAND LOGOS 6-COL GRID)
   ========================================================================== */

.brand-logo-grid-six {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 25px;
}

@media (max-width: 1200px) {
  .brand-logo-grid-six {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }
}

@media (max-width: 991px) {
  .brand-logo-grid-six {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}

@media (max-width: 767px) {
  .brand-logo-grid-six {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .brand-logo-grid-six {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.brand-logo-card-six {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 14px !important;
  height: 110px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 14px 16px !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.brand-logo-card-six:hover {
  transform: translateY(-5px) !important;
  border-color: #0070f3 !important;
  box-shadow: 0 12px 25px rgba(0, 112, 243, 0.2) !important;
}

.brand-logo-card-six img {
  width: auto !important;
  height: auto !important;
  max-width: 82% !important;
  max-height: 60px !important;
  object-fit: contain !important;
  filter: contrast(102%);
  transition: transform 0.35s ease !important;
  margin: auto !important;
  display: block !important;
}

.brand-logo-card-six:hover img {
  transform: scale(1.08) !important;
}


/* ==========================================================================
   REFERANSLARIMIZ & ÇÖZÜM ORTAKLARI (REFERENCES GRID)
   ========================================================================== */


.reference-client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

@media (max-width: 991px) {
  .reference-client-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .reference-client-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.reference-client-card {
  background: #0d1e38;
  border: 1.5px solid rgba(0, 210, 255, 0.2);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.reference-client-card:hover {
  transform: translateY(-6px);
  border-color: #00d2ff;
  box-shadow: 0 16px 35px rgba(0, 210, 255, 0.3);
}

.reference-client-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.reference-client-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  background: #071930;
}

.reference-client-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reference-client-info h5 {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.3;
}

.reference-client-badge {
  display: inline-block;
  background: rgba(0, 82, 204, 0.85);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.2px;
}

.reference-client-body {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reference-client-service {
  font-size: 13.5px;
  color: #cbd5e1;
  margin-bottom: 10px;
  line-height: 1.45;
}

.reference-client-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #38bdf8;
  font-weight: 600;
}



/* ==========================================================================
   SLIDER İÇİ SAĞ GALERİ PANELİ (SLIDER 2X2 GALLERY PANEL)
   ========================================================================== */

.slider-gallery-panel {
  background: rgba(15, 23, 42, 0.7);
  border: 1.5px solid rgba(0, 210, 255, 0.35);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  position: relative;
}

.slider-gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.slider-gallery-title {
  font-size: 15.5px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-gallery-title i {
  color: #00d2ff;
}

.slider-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.slider-gallery-item {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  background: #071930;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-gallery-item:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: #00d2ff;
  box-shadow: 0 8px 20px rgba(0, 210, 255, 0.35);
}

.slider-gallery-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.5s ease;
}

.slider-gallery-item:hover img {
  transform: scale(1.08);
}

.slider-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(7, 25, 48, 0.95) 0%, rgba(7, 25, 48, 0.6) 60%, transparent 100%);
  color: #ffffff;
  padding: 16px 8px 6px 8px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.2px;
  z-index: 2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slider-gallery-item .item-hover-zoom {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.85);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 3;
}

.slider-gallery-item:hover .item-hover-zoom {
  opacity: 1;
}

/* ==========================================================================
   MODERN FOTOĞRAF GALERİSİ & GUTENBERG GRID SİSTEMİ
   ========================================================================== */

.gutenberg-gallery-section {
  background: linear-gradient(180deg, #071930 0%, #051329 50%, #030d1c 100%);
  color: #ffffff;
  padding: 65px 0 75px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-toolbar {
  background: rgba(13, 30, 56, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 12px 18px;
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gallery-filter-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.gallery-filter-btn {
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
}

.gallery-filter-btn:hover {
  background: rgba(0, 210, 255, 0.15);
  color: #00d2ff;
  border-color: rgba(0, 210, 255, 0.4);
}

.gallery-filter-btn.active {
  background: linear-gradient(135deg, #0052cc 0%, #0070f3 100%);
  color: #ffffff;
  border-color: #0070f3;
  box-shadow: 0 4px 12px rgba(0, 112, 243, 0.35);
}

.gallery-settings-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gallery-col-switch {
  display: flex;
  align-items: center;
  background: rgba(7, 25, 48, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 3px;
  gap: 3px;
}

.gallery-col-btn {
  background: transparent;
  color: #94a3b8;
  border: none;
  border-radius: 7px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-col-btn:hover {
  color: #ffffff;
}

.gallery-col-btn.active {
  background: #0070f3;
  color: #ffffff;
}

.gallery-crop-pill {
  font-size: 12px;
  color: #38bdf8;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(56, 189, 248, 0.1);
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

/* 6 Sütunlu Gutenberg Grid & Seçilebilir Sütunlar */
.photo-gallery-grid {
  display: grid;
  gap: 14px;
  transition: all 0.3s ease;
}

.photo-gallery-grid.grid-cols-6 {
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.photo-gallery-grid.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.photo-gallery-grid.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.photo-gallery-grid.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 1200px) {
  .photo-gallery-grid.grid-cols-6 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .photo-gallery-grid.grid-cols-6,
  .photo-gallery-grid.grid-cols-4,
  .photo-gallery-grid.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 767px) {
  .photo-gallery-grid.grid-cols-6,
  .photo-gallery-grid.grid-cols-4,
  .photo-gallery-grid.grid-cols-3,
  .photo-gallery-grid.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* Kırpılmış & Hizalanmış Fotoğraf Kartı (Uniform Aspect Ratio) */
.gallery-photo-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 16px;
  overflow: hidden;
  background: #0d1e38;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-photo-card:hover {
  transform: translateY(-5px) scale(1.015);
  border-color: #00d2ff;
  box-shadow: 0 18px 35px rgba(0, 210, 255, 0.28);
}

.gallery-photo-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-photo-card:hover img {
  transform: scale(1.08);
}

/* Kart Üst Rozetleri */
.gallery-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(7, 25, 48, 0.85);
  backdrop-filter: blur(8px);
  color: #38bdf8;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  z-index: 2;
  letter-spacing: 0.2px;
}

.gallery-zoom-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.9);
  color: #071930;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 210, 255, 0.5);
  z-index: 3;
}

.gallery-photo-card:hover .gallery-zoom-btn {
  opacity: 1;
  transform: scale(1);
}

/* Kart Alt Başlık Şeridi */
.gallery-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(7, 25, 48, 0.96) 0%, rgba(7, 25, 48, 0.7) 60%, transparent 100%);
  padding: 24px 14px 12px 14px;
  z-index: 2;
  transition: background 0.3s ease;
}

.gallery-card-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-card-sub {
  color: #94a3b8;
  font-size: 11.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Lightbox Gelişmiş Navigasyon */
.lightbox-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(7, 25, 48, 0.8);
  border: 1.5px solid rgba(0, 210, 255, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 20;
  outline: none;
}

.lightbox-nav-arrow:hover {
  background: #0070f3;
  border-color: #00d2ff;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 112, 243, 0.6);
}

.lightbox-prev-btn {
  left: 15px;
}

.lightbox-next-btn {
  right: 15px;
}

.lightbox-counter-badge {
  position: absolute;
  top: 15px;
  left: 20px;
  background: rgba(7, 25, 48, 0.85);
  backdrop-filter: blur(8px);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  z-index: 10;
}

/* ==========================================================================
   MARKALAR, BAYİLİKLER & YETKİLİ SERVİS BÖLÜMÜ (BRANDS & DEALERSHIPS)
   ========================================================================== */

.brands-hero-banner {
  background: linear-gradient(135deg, #071930 0%, #0c2340 50%, #0052cc 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0 50px 0;
  border-bottom: 2px solid rgba(0, 210, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.brands-hero-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.08) 0%, transparent 65%);
  pointer-events: none;
  animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.brands-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 210, 255, 0.15);
  border: 1px solid rgba(0, 210, 255, 0.4);
  color: #38bdf8;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}

.brands-hero-title {
  color: #ffffff;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 14px;
}

@media (max-width: 767px) {
  .brands-hero-title {
    font-size: 26px;
  }
}

.brands-hero-lead {
  color: #e2e8f0;
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto;
}

/* Kategori ve Arama Filtre Çubuğu */
.brands-control-panel {
  background: #0d1e38;
  border: 1px solid rgba(0, 210, 255, 0.2);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.brands-search-wrapper {
  position: relative;
}

.brands-search-input {
  width: 100%;
  height: 48px;
  background: #071220;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0 45px 0 42px;
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.brands-search-input:focus {
  outline: none;
  border-color: #00d2ff;
  background: #091728;
  box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.25);
}

.brands-search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #38bdf8;
  font-size: 16px;
  pointer-events: none;
}

.brands-search-clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  display: none;
  font-size: 14px;
}

.brands-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.brand-pill-btn {
  background: #071220;
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.brand-pill-btn:hover {
  background: #132a4e;
  color: #ffffff;
  border-color: rgba(0, 210, 255, 0.4);
}

.brand-pill-btn.active {
  background: linear-gradient(135deg, #0052cc 0%, #0070f3 100%);
  color: #ffffff;
  border-color: #00d2ff;
  box-shadow: 0 4px 14px rgba(0, 112, 243, 0.45);
}

.brand-pill-btn .pill-count {
  background: rgba(255, 255, 255, 0.2);
  padding: 1px 7px;
  border-radius: 12px;
  font-size: 11px;
}

.brand-pill-btn.active .pill-count {
  background: #ffffff;
  color: #0052cc;
  font-weight: 800;
}

/* Marka Kartları Grid */
.brands-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 30px;
}

@media (max-width: 1200px) {
  .brands-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 991px) {
  .brands-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .brands-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* Modern Glassmorphic Marka Kartı */
.brand-premium-card {
  background: #0d1e38;
  border: 1.5px solid rgba(0, 210, 255, 0.18);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.brand-premium-card:hover {
  transform: translateY(-6px);
  border-color: #00d2ff;
  box-shadow: 0 16px 35px rgba(0, 210, 255, 0.25);
}

.brand-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.brand-category-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
}

.brand-category-tag.kamera { background: rgba(0, 112, 243, 0.2); color: #38bdf8; border: 1px solid rgba(0, 112, 243, 0.4); }
.brand-category-tag.yangin { background: rgba(229, 57, 53, 0.2); color: #f87171; border: 1px solid rgba(229, 57, 53, 0.4); }
.brand-category-tag.alarm { background: rgba(245, 158, 11, 0.2); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.4); }
.brand-category-tag.fiber { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.4); }
.brand-category-tag.switch_sfp { background: rgba(6, 182, 212, 0.2); color: #22d3ee; border: 1px solid rgba(6, 182, 212, 0.4); }
.brand-category-tag.server_pc { background: rgba(168, 85, 247, 0.2); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.4); }
.brand-category-tag.gecis_sistemleri { background: rgba(16, 185, 129, 0.2); color: #6ee7b7; border: 1px solid rgba(16, 185, 129, 0.4); }
.brand-category-tag.guvenlik_duvari { background: rgba(239, 68, 68, 0.2); color: #fca5a5; border: 1px solid rgba(239, 68, 68, 0.4); }

.brand-warranty-tag {
  font-size: 11px;
  font-weight: 700;
  color: #34d399;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Logo Kutusu */
.brand-logo-showcase {
  background: #ffffff;
  border-radius: 12px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  margin-bottom: 16px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.brand-premium-card:hover .brand-logo-showcase {
  transform: scale(1.02);
}

.brand-logo-showcase img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-name-title {
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.3;
}

.brand-badge-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #38bdf8;
  margin-bottom: 10px;
}

.brand-description-text {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
}

.brand-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-feature-list li {
  color: #e2e8f0;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.brand-feature-list li i {
  color: #00d2ff;
  font-size: 11px;
}

.brand-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-brand-quote {
  flex: 1;
  background: linear-gradient(135deg, #0052cc 0%, #0070f3 100%);
  color: #ffffff;
  border: none;
  border-radius: 25px;
  padding: 9px 14px;
  font-size: 12.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.25s ease;
  text-decoration: none !important;
}

.btn-brand-quote:hover {
  background: linear-gradient(135deg, #0070f3 0%, #00d2ff 100%);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 210, 255, 0.4);
  transform: translateY(-2px);
}

.btn-brand-wa {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.25s ease;
  text-decoration: none !important;
  flex-shrink: 0;
}

.btn-brand-wa:hover {
  background: #20ba5a;
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
}

/* 8 Temel Sistem & Altyapı Çözüm Matrisi */
.solutions-matrix-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 25px;
}

@media (max-width: 991px) {
  .solutions-matrix-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .solutions-matrix-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.solution-tech-box {
  background: #0d1e38;
  border: 1.5px solid rgba(0, 210, 255, 0.2);
  border-radius: 16px;
  padding: 22px 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.solution-tech-box:hover {
  transform: translateY(-5px);
  border-color: #00d2ff;
  box-shadow: 0 12px 28px rgba(0, 210, 255, 0.2);
}

.solution-tech-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.solution-tech-icon.yangin { background: rgba(229, 57, 53, 0.15); color: #f87171; border: 1px solid rgba(229, 57, 53, 0.3); }
.solution-tech-icon.kamera { background: rgba(0, 112, 243, 0.15); color: #38bdf8; border: 1px solid rgba(0, 112, 243, 0.3); }
.solution-tech-icon.alarm { background: rgba(245, 158, 11, 0.15); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.solution-tech-icon.fiber { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.solution-tech-icon.switch_sfp { background: rgba(6, 182, 212, 0.15); color: #22d3ee; border: 1px solid rgba(6, 182, 212, 0.3); }
.solution-tech-icon.server_pc { background: rgba(168, 85, 247, 0.15); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.3); }
.solution-tech-icon.gecis { background: rgba(52, 211, 153, 0.15); color: #6ee7b7; border: 1px solid rgba(52, 211, 153, 0.3); }
.solution-tech-icon.firewall { background: rgba(239, 68, 68, 0.15); color: #fca5a5; border: 1px solid rgba(239, 68, 68, 0.3); }

.solution-tech-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}

.solution-tech-desc {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.solution-tech-brands {
  font-size: 11.5px;
  color: #38bdf8;
  font-weight: 600;
}


