/* ==========================================================================
   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: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 15px;
}

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

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

/* 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: 575px) {
  .slider_section .btn-box {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .btn-hero-action {
    width: 100%;
    padding: 11px 18px;
    font-size: 14px;
  }
}

/* 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;
  }
}
