/* ==========================================================================
   Mevlana Arçelik & Beko Yetkili Servis Design System & CSS
   ========================================================================== */

:root {
  --primary-red: #d9252a;
  --primary-red-hover: #b81b20;
  --primary-red-light: #fef2f2;
  --primary-red-glow: rgba(217, 37, 42, 0.35);
  --beko-blue: #0066b3;
  --beko-blue-hover: #004f8c;
  --beko-blue-light: #e6f0fa;
  --navy-dark: #0b1328;
  --navy-medium: #111d3d;
  --navy-card: #0d172e;
  --text-dark: #0f172a;
  --text-body: #475569;
  --text-muted: #64748b;
  --border-light: #e2e8f0;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --white: #ffffff;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 18px 45px rgba(0, 0, 0, 0.12);
  --shadow-red: 0 8px 25px rgba(217, 37, 42, 0.28);

  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 9999px;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utility Classes */
.text-red { color: var(--primary-red) !important; }
.text-blue { color: var(--beko-blue) !important; }
.text-green { color: #10b981 !important; }
.text-amber { color: #f59e0b !important; }
.hidden { display: none !important; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  user-select: none;
}

.btn-red {
  background-color: var(--primary-red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn-red:hover {
  background-color: var(--primary-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(217, 37, 42, 0.45);
}

.btn-blue {
  background-color: var(--beko-blue);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 102, 179, 0.3);
}

.btn-blue:hover {
  background-color: var(--beko-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 102, 179, 0.45);
}

.btn-outline {
  background-color: var(--white);
  color: var(--text-dark);
  border: 1.5px solid #d1d5db;
}

.btn-outline:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
  background-color: var(--primary-red-light);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.95rem 2.2rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   1. ANNOUNCEMENT BAR & TOP BAR
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #990000 0%, var(--primary-red) 50%, #990000 100%);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  padding: 0.35rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  letter-spacing: 0.2px;
}

.top-bar {
  background-color: var(--navy-dark);
  color: #cbd5e1;
  font-size: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-info, .top-right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #cbd5e1;
  transition: var(--transition);
  font-size: 0.75rem;
}

.info-item i {
  color: var(--primary-red);
  font-size: 0.8rem;
}

a.info-item:hover {
  color: var(--white);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  font-size: 0.75rem;
}

.social-icons a:hover {
  color: var(--white);
  background-color: var(--primary-red);
  transform: translateY(-2px);
}

/* ==========================================================================
   2. MAIN HEADER & NAV (2-TIER CORPORATE LAYOUT)
   ========================================================================== */
.main-header {
  background-color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  max-width: 1720px;
  width: 98%;
  margin: 0 auto;
  gap: 1.25rem;
}

.brand-area.centered-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  min-width: 0;
  padding: 0;
}

.logo-banner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  max-width: 950px;
}

.main-site-logo {
  width: 100%;
  max-width: 860px;
  height: auto;
  max-height: 105px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.07));
  transition: transform 0.2s ease;
}

.main-site-logo:hover {
  transform: scale(1.01);
}

.header-side-box {
  flex: 0 0 215px;
  display: flex;
  align-items: center;
}

.header-side-box.left-box {
  justify-content: flex-start;
}

.header-side-box.right-box {
  justify-content: flex-end;
}

.fast-call-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-pill);
  color: var(--navy-dark);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.fast-call-pill i {
  color: var(--primary-red);
  font-size: 1.15rem;
}

.fast-call-pill:hover {
  border-color: var(--primary-red);
  background: #fff;
  color: var(--primary-red);
  transform: translateY(-1px);
}

.btn-header-cta {
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 800;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(217, 37, 42, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Second Tier: Navigation Bar */
.header-nav-bar {
  background: #0f172a;
  border-top: 1px solid #1e293b;
}

.nav-container {
  max-width: 1440px;
  width: 96%;
  margin: 0 auto;
}

.centered-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.nav-link {
  font-size: 0.84rem;
  font-weight: 700;
  color: #e2e8f0;
  position: relative;
  padding: 12px 6px;
  transition: var(--transition);
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-red);
  border-radius: 3px 3px 0 0;
}

.mobile-nav-header,
.mobile-nav-cta {
  display: none;
}

.header-action .btn {
  padding: 0.5rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* ==========================================================================
   3. HERO CAROUSEL SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  aspect-ratio: 1717 / 916;
  max-height: 680px;
  min-height: 220px;
  overflow: hidden;
  background-color: #0b1328;
  user-select: none;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #0b1328;
  display: flex;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 19, 40, 0.96) 0%, rgba(11, 19, 40, 0.82) 48%, rgba(11, 19, 40, 0.3) 100%);
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content {
  max-width: 620px;
  color: var(--white);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.6s ease 0.3s, opacity 0.6s ease 0.3s;
}

.hero-slide.active .hero-content {
  transform: translateY(0);
  opacity: 1;
}

.hero-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.25rem;
}

.badge-arcelik-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.95rem;
  color: #000000;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.red-diamond {
  color: var(--primary-red);
  font-size: 0.85rem;
}

.badge-divider {
  color: #cbd5e1;
  font-weight: 300;
  font-size: 1rem;
}

.badge-beko-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  color: var(--beko-blue);
  letter-spacing: -0.5px;
}

.badge-auth-text {
  background: var(--primary-red);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  margin-left: 4px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 37, 42, 0.2);
  color: #ff6b6e;
  border: 1px solid rgba(217, 37, 42, 0.4);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-desc {
  font-size: 1.05rem;
  color: #e2e8f0;
  margin-bottom: 1.25rem;
  line-height: 1.6;
  max-width: 540px;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
}

.hero-trust-item i {
  color: #fca5a5;
  font-size: 0.85rem;
}

/* Slider Controls */
/* Slider Controls */
.slider-counter-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  background: rgba(11, 19, 40, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.counter-current {
  color: #ff4d4f;
  font-size: 0.95rem;
}

.counter-sep {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.counter-total {
  color: #cbd5e1;
  font-size: 0.82rem;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(11, 19, 40, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  z-index: 15;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.slider-arrow:hover {
  background: var(--primary-red);
  border-color: #ff6b6e;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(217, 37, 42, 0.5);
}

.slider-arrow.prev { left: 1.5rem; }
.slider-arrow.next { right: 1.5rem; }

.slider-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 15;
  background: rgba(11, 19, 40, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.dot.active {
  background: linear-gradient(90deg, var(--primary-red), #ff6b6e);
  width: 24px;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(217, 37, 42, 0.7);
}

.hero-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 20;
  overflow: hidden;
}

.hero-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #d9252a 0%, #ff6b6e 60%, #ffd166 100%);
  box-shadow: 0 0 10px rgba(217, 37, 42, 0.8);
}

/* ==========================================================================
   4. HIGHLIGHTS FEATURE BAR
   ========================================================================== */
.highlights-section {
  position: relative;
  z-index: 20;
  margin-top: 35px;
  padding-bottom: 1.5rem;
}

.highlights-wrapper {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 1.6rem 1rem;
  border: 1.5px solid #e2e8f0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.2rem;
  border-right: 1px solid #f1f5f9;
}

.highlight-item:last-child {
  border-right: none;
}

.icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-red);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background-color: var(--primary-red-light);
  transition: var(--transition);
}

.highlight-item:hover .icon-box {
  background-color: var(--primary-red);
  color: #fff;
  transform: scale(1.08);
}

.highlight-text h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.highlight-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ==========================================================================
   5. ACTION CARDS SECTION
   ========================================================================== */
.grid-section {
  padding: 1.5rem 0 3rem 0;
}

.small-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.action-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-red);
  opacity: 0;
  transition: var(--transition);
}

.action-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.action-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  background: var(--primary-red-light);
  color: var(--primary-red);
  border: 1px solid rgba(217, 37, 42, 0.15);
  transition: var(--transition);
}

.action-card:hover .card-icon {
  background: var(--primary-red);
  color: var(--white);
  transform: scale(1.05);
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* ==========================================================================
   6. SERVICES & DEVICE CATEGORIES SECTION
   ========================================================================== */
.services-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-red);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

.device-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.device-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.device-card:hover {
  background: var(--white);
  border-color: var(--primary-red);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.device-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem auto;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary-red);
  transition: var(--transition);
}

.device-card:hover .device-icon-wrap {
  background: var(--primary-red);
  color: #fff;
  border-color: var(--primary-red);
}

.device-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.device-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   7. QUICK & SHINE DEDICATED SECTION
   ========================================================================== */
.quick-shine-section {
  padding: 4.5rem 0;
  background-color: #f1f5f9;
}

.qs-header-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-red);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.qs-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.qs-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.qs-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.qs-card-img {
  position: relative;
  background: #f8fafc;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f1f5f9;
  padding: 1.5rem;
  overflow: hidden;
}

.qs-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

.qs-item-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #000;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  z-index: 2;
}

.qs-icon-box {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: var(--primary-red-light);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 1px solid rgba(217, 37, 42, 0.15);
}

.qs-icon-box.blue-box { background: var(--beko-blue-light); color: var(--beko-blue); border-color: rgba(0, 102, 179, 0.2); }
.qs-icon-box.green-box { background: #ecfdf5; color: #10b981; border-color: rgba(16, 185, 129, 0.2); }
.qs-icon-box.orange-box { background: #fffbeb; color: #f59e0b; border-color: rgba(245, 158, 11, 0.2); }

.qs-card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.qs-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--beko-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.qs-card-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.qs-card-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.qs-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.8rem;
  border-top: 1px solid #f1f5f9;
}

.qs-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy-dark);
}

/* ==========================================================================
   8. PROCESS / HOW IT WORKS SECTION
   ========================================================================== */
.process-section {
  padding: 4.5rem 0;
  background-color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 1.5rem 1rem;
}

.process-number {
  position: absolute;
  top: 0;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: #f1f5f9;
  z-index: 1;
  line-height: 1;
}

.process-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem auto;
  border-radius: 20px;
  background: var(--navy-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(11, 19, 40, 0.25);
}

.process-step:nth-child(2) .process-icon { background: var(--primary-red); }
.process-step:nth-child(3) .process-icon { background: var(--beko-blue); }

.process-step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   9. WARRANTY SECTION
   ========================================================================== */
.warranty-section {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
}

.warranty-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.plan-card.featured {
  border-color: var(--primary-red);
  box-shadow: 0 15px 35px rgba(217, 37, 42, 0.15);
  transform: scale(1.04);
  z-index: 3;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.plan-card.featured:hover {
  transform: scale(1.04) translateY(-5px);
}

.plan-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #f1f5f9;
  color: var(--text-dark);
  font-weight: 800;
  font-size: 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.badge-red {
  background: var(--primary-red);
  color: #fff;
}

.plan-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.plan-price small, .plan-price span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.plan-card ul {
  margin-bottom: 2rem;
}

.plan-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 0.8rem;
}

/* ==========================================================================
   10. TESTIMONIALS & FAQ
   ========================================================================== */
.testimonials-section {
  padding: 4.5rem 0;
  background-color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.testimonial-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
  transform: translateY(-4px);
}

.stars {
  color: #f59e0b;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.testimonial-comment {
  font-style: italic;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Review Card & Star Picker Enhancements */
.review-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08) !important;
  border-color: #cbd5e1 !important;
}

.star-rating-picker .star-item {
  transition: transform 0.15s ease, color 0.15s ease;
  user-select: none;
}
.star-rating-picker .star-item:hover {
  transform: scale(1.22);
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.client-meta h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.client-meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question i {
  color: var(--primary-red);
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  max-height: 300px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* ==========================================================================
   11. BOTTOM CONTACT STRIP & FOOTER
   ========================================================================== */
.bottom-contact-bar {
  background-color: var(--navy-dark);
  padding: 3.5rem 0 2rem 0;
  color: #e2e8f0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
}

.contact-box:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-red);
  transform: translateY(-4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
}

.bg-red { background: var(--primary-red); }
.bg-green { background: #10b981; }
.bg-red-pin { background: #ef4444; }
.bg-blue { background: var(--beko-blue); }

.contact-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.contact-info p {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.4;
}

.phone-number, .email-address {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #94a3b8;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a:hover {
  color: #fff;
}

/* ==========================================================================
   12. MODALS & SPECIALIZED FORMS
   ========================================================================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 19, 40, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999999 !important;
  display: none !important;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  box-sizing: border-box;
}

.modal.active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.modal-dialog {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 580px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
}

.modal.active .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-dialog.modal-lg {
  max-width: 680px;
}

.modal-header {
  padding: 1.25rem 1.6rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
}

.modal-header h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-close {
  background: #f1f5f9;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.modal-close:hover {
  background: #fee2e2;
  color: var(--primary-red);
  transform: rotate(90deg);
}

.modal-body {
  padding: 1.5rem 1.6rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Custom Modal Feature Banners */
.form-custom-banner {
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-custom-banner.service-banner {
  background: rgba(217, 37, 42, 0.06);
  border: 1px solid rgba(217, 37, 42, 0.2);
  color: #991b1b;
}

.form-custom-banner.order-banner {
  background: rgba(0, 102, 179, 0.06);
  border: 1px solid rgba(0, 102, 179, 0.2);
  color: #075985;
}

.form-custom-banner.warranty-banner {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #b45309;
}

.form-custom-banner i {
  font-size: 24px;
  flex-shrink: 0;
}

.form-custom-banner .banner-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.form-custom-banner .banner-text span {
  font-size: 0.8rem;
  color: #64748b;
}

/* Selectable Pills & Buttons */
.selectable-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 1rem;
}

.pill-option {
  position: relative;
}

.pill-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.pill-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #475569;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.pill-option input[type="radio"]:checked + label {
  background: #fef2f2;
  border-color: var(--primary-red);
  color: var(--primary-red);
  box-shadow: 0 2px 8px rgba(217, 37, 42, 0.15);
}

.selectable-pills.blue-theme .pill-option input[type="radio"]:checked + label {
  background: #eff6ff;
  border-color: var(--beko-blue);
  color: var(--beko-blue);
  box-shadow: 0 2px 8px rgba(0, 102, 179, 0.15);
}

/* Payment Methods Grid */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 1rem;
}

.payment-card-option {
  position: relative;
}

.payment-card-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.payment-card-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #475569;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  gap: 4px;
}

.payment-card-option label i {
  font-size: 1.2rem;
  color: #64748b;
}

.payment-card-option input[type="radio"]:checked + label {
  background: #f0fdf4;
  border-color: #10b981;
  color: #15803d;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

.payment-card-option input[type="radio"]:checked + label i {
  color: #16a34a;
}

/* Multi-Product Selection List */
.multi-product-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 240px;
  overflow-y: auto;
  padding: 4px;
  margin-bottom: 1.2rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}

.multi-product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  transition: var(--transition);
  gap: 10px;
}

.multi-product-row.selected {
  border-color: #10b981;
  background: #f0fdf4;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.12);
}

.multi-product-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  cursor: pointer;
}

.multi-product-left input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #10b981;
  cursor: pointer;
}

.multi-product-info {
  display: flex;
  flex-direction: column;
}

.multi-product-info strong {
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.multi-product-info span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-red);
}

.multi-product-qty-control {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f1f5f9;
  border-radius: 8px;
  padding: 2px 4px;
  border: 1px solid #cbd5e1;
}

.qty-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.95rem;
  cursor: pointer;
  color: #334155;
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--primary-red);
  color: #ffffff;
  border-color: var(--primary-red);
}

.qty-input {
  width: 32px;
  text-align: center;
  font-weight: 800;
  font-size: 0.9rem;
  border: none;
  background: transparent;
  color: #0f172a;
}

/* Dynamic Order Live Calculator Card */
.order-live-calculator {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-details span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
}

.calc-details strong {
  font-size: 0.95rem;
  color: #0f172a;
}

.calc-total {
  text-align: right;
}

.calc-total span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #16a34a;
  text-transform: uppercase;
}

.calc-total strong {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary-red);
}

/* Trust Pill Footer */
.trust-feature-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  margin-top: 1rem;
}

.trust-feature-pill i {
  color: #10b981;
}

/* Form Controls */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.95rem;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  background-color: #fff;
  color: var(--text-dark);
  font-size: 0.92rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(217, 37, 42, 0.15);
  background-color: #fff;
}

.form-row {
  display: flex;
  gap: 0.8rem;
}

.form-row .form-group {
  flex: 1;
}

.input-with-button {
  display: flex;
  gap: 8px;
}

.input-with-button input {
  flex: 1;
}

/* Service Success Box */
.service-success {
  text-align: center;
  padding: 1.5rem 1rem;
}

.success-icon {
  font-size: 3.2rem;
  color: #10b981;
  margin-bottom: 0.8rem;
  animation: pulse-success 1.5s infinite;
}

@keyframes pulse-success {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.service-success h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.code-badge {
  display: inline-block;
  background: var(--navy-dark);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 1.25rem;
  letter-spacing: 1.5px;
  margin: 0.5rem 0 1rem 0;
  font-family: monospace;
  box-shadow: 0 4px 12px rgba(11, 19, 40, 0.25);
}

.sub-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Timeline Tracking View */
.tracking-results {
  margin-top: 1.5rem;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.ticket-info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ticket-num {
  font-size: 0.95rem;
  color: var(--text-dark);
  display: block;
}

.ticket-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
}

.badge-active {
  background: rgba(217, 37, 42, 0.12);
  color: var(--primary-red);
  border: 1px solid rgba(217, 37, 42, 0.25);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 17px;
  width: 2px;
  background: #cbd5e1;
}

.timeline-step {
  position: relative;
  display: flex;
  gap: 1rem;
}

.step-icon {
  position: absolute;
  left: -2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  z-index: 2;
  transition: var(--transition);
}

.timeline-step.completed .step-icon {
  background: #10b981;
  color: #fff;
}

.timeline-step.active .step-icon {
  background: var(--primary-red);
  color: #fff;
  box-shadow: 0 0 0 5px rgba(217, 37, 42, 0.2);
}

.step-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.step-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   13. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .highlights-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .highlight-item:nth-child(3) { border-right: none; }
  
  .small-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .qs-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .device-categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .warranty-plans {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .plan-card.featured {
    transform: none;
  }
  .plan-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Global Mobile Sticky Bottom Bar */
.mobile-sticky-bottom-bar {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .container {
    width: 94%;
    padding-left: 10px;
    padding-right: 10px;
  }

  /* Top Bar */
  .top-bar-container {
    justify-content: center;
    text-align: center;
    padding: 6px 10px;
  }
  
  .top-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 0.8rem;
    font-size: 0.76rem;
  }
  
  .top-right {
    display: none;
  }

  /* Header & Logo - Tam Simetrik Merkezleme */
  .header-brand-row {
    padding: 8px 12px;
    min-height: 70px;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-side-box {
    display: none !important;
  }

  .brand-area.centered-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 44px 0 10px;
    text-align: center;
    overflow: hidden;
  }

  .logo-banner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .main-site-logo {
    width: 100% !important;
    max-width: 275px !important;
    height: auto !important;
    max-height: 60px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #f1f5f9;
    font-size: 1.35rem;
    color: var(--navy-dark);
    border: 1px solid #cbd5e1;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .header-nav-bar {
    display: none;
  }

  /* Mobil Menü Çekmecesi (Drawer) */
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 84%;
    max-width: 320px;
    height: 100vh;
    background: #0b1328;
    padding: 1.25rem 1.25rem 2rem 1.25rem;
    box-shadow: 12px 0 40px rgba(0, 0, 0, 0.55);
    transition: left 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .nav-menu.active {
    left: 0;
  }

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

  .mobile-nav-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-nav-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
  }

  .centered-nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    width: 100%;
  }

  .nav-link {
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 10px;
    color: #cbd5e1;
    width: 100%;
    border-radius: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-link:hover, .nav-link.active {
    background: rgba(217, 37, 42, 0.18);
    color: #ffffff;
  }

  .nav-link.active::after {
    display: none;
  }

  .mobile-nav-cta {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Hero Section - Tam Simetrik ve Dengeli */
  .hero-section {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 360px;
    min-height: 190px;
    height: auto;
    padding: 0;
    overflow: hidden;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-slide {
    background-size: contain;
    background-position: center center;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }
  .slider-arrow.prev { left: 0.5rem; }
  .slider-arrow.next { right: 0.5rem; }

  .slider-counter-badge {
    top: 0.5rem;
    right: 0.5rem;
    padding: 3px 9px;
    font-size: 0.72rem;
  }

  .slider-dots {
    bottom: 0.6rem;
    padding: 4px 8px;
    gap: 0.35rem;
  }

  .hero-brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 0.76rem;
    border-radius: 30px;
    margin: 0 auto 0.9rem auto;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  }

  .hero-title {
    font-size: 1.7rem;
    line-height: 1.25;
    margin-bottom: 0.85rem;
    text-align: center;
  }

  .hero-desc {
    font-size: 0.92rem;
    line-height: 1.55;
    max-width: 94%;
    margin: 0 auto 1.25rem auto;
    text-align: center;
  }

  .hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto 1.4rem auto;
    width: 100%;
  }

  .hero-trust-item {
    font-size: 0.74rem;
    padding: 5px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
  }

  .slide-action-btn {
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
    padding: 0.95rem 1.5rem;
    font-size: 1.02rem;
    border-radius: 12px;
  }

  .slider-arrow {
    display: none;
  }

  .slider-dots {
    bottom: 0.75rem;
  }

  /* Section Başlıkları */
  .section-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .section-badge {
    margin: 0 auto 0.6rem auto;
  }

  .section-title {
    font-size: 1.6rem;
    line-height: 1.25;
  }

  .section-desc {
    font-size: 0.92rem;
    max-width: 96%;
    margin: 0 auto;
  }

  /* Highlights / Öne Çıkan Özellikler */
  .highlights-section {
    margin-top: 15px;
    padding-bottom: 1rem;
  }

  .highlights-wrapper {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .highlight-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
  }

  .highlight-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
  }

  /* Izgaralar (Grids) */
  .small-cards-grid,
  .qs-products-grid,
  .process-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .device-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .device-category-card {
    padding: 1.25rem 0.85rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Modallar & Formlar */
  .modal-dialog {
    margin: 0.75rem;
    max-height: 94vh;
    border-radius: 18px;
  }

  .modal-body {
    padding: 1.2rem;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .selectable-pills {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .payment-methods-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .payment-card-option label {
    flex-direction: row;
    justify-content: flex-start;
    padding: 11px 14px;
    gap: 10px;
  }

  .multi-product-row {
    padding: 10px 12px;
  }

  .qty-btn {
    width: 34px;
    height: 34px;
    font-size: 1.15rem;
  }

  /* Native Mobile Sticky Bottom Bar */
  .mobile-sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(60px + env(safe-area-inset-bottom, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: rgba(11, 19, 40, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    z-index: 99999;
    box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.35);
  }

  .msb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #94a3b8;
    font-size: 0.68rem;
    font-weight: 700;
    gap: 3px;
    transition: all 0.2s ease;
    height: 100%;
  }

  .msb-item i {
    font-size: 1.25rem;
    transition: transform 0.2s ease;
  }

  .msb-item.msb-call { color: #38bdf8; }
  .msb-item.msb-wa { color: #22c55e; }
  .msb-item.msb-service { color: #f87171; }
  .msb-item.msb-order { color: #fbbf24; }

  .msb-item:active {
    transform: scale(0.94);
    background: rgba(255, 255, 255, 0.08);
  }
}

/* Küçük Ekranlar (Küçük Telefonlar <= 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.45rem;
  }
  .main-site-logo {
    height: 50px;
    max-height: 56px;
    max-width: 250px;
  }
  .brand-area.centered-brand {
    padding: 0 40px;
  }
  .device-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* ==========================================================================
   AÇILIR REKLAM (POPUP AD MODAL) STİLLERİ
   ========================================================================== */

.popup-ad-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 19, 40, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.popup-ad-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.popup-ad-card {
  position: relative;
  width: 100%;
  max-width: 860px;
  max-height: 94vh;
  overflow-y: auto;
  border-radius: 26px;
  box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.6);
  transform: scale(0.85) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
}

.popup-ad-backdrop.active .popup-ad-card {
  transform: scale(1) translateY(0);
}

.popup-ad-card.layout-left {
  max-width: 1100px;
}

.popup-ad-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  transition: all 0.25s ease;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.popup-ad-close:hover {
  background: #dc2626;
  border-color: #dc2626;
  transform: scale(1.1) rotate(90deg);
}

/* Temalar */
.popup-ad-card.theme-red_modern {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #fee2e2;
}

.popup-ad-card.theme-dark_glass {
  background: #0f172a;
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.7);
}

.popup-ad-card.theme-gold_special {
  background: linear-gradient(145deg, #1c1917 0%, #292524 100%);
  color: #fef08a;
  border: 2px solid #eab308;
  box-shadow: 0 25px 60px -12px rgba(234, 179, 8, 0.25);
}

.popup-ad-card.theme-blue_corporate {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #dbeafe;
  border-top: 6px solid #2563eb;
}

/* Kart İçi Elemanlar */
.popup-ad-image-top {
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  position: relative;
  background: #0f172a;
}

.popup-ad-image-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-ad-image-top .popup-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 60%);
  pointer-events: none;
}

.popup-ad-body {
  padding: 2rem 2.2rem;
  text-align: center;
}

.popup-ad-badge {
  display: inline-block;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 6px 16px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.9rem;
}

.theme-red_modern .popup-ad-badge {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.theme-dark_glass .popup-ad-badge {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid #ef4444;
}

.theme-gold_special .popup-ad-badge {
  background: #eab308;
  color: #000;
  border: 1px solid #ca8a04;
}

.theme-blue_corporate .popup-ad-badge {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}

.popup-ad-title {
  margin: 0 0 0.5rem 0;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.25;
}

.theme-red_modern .popup-ad-title { color: #0f172a; }
.theme-dark_glass .popup-ad-title { color: #ffffff; }
.theme-gold_special .popup-ad-title { color: #fef08a; }
.theme-blue_corporate .popup-ad-title { color: #0f172a; }

.popup-ad-subtitle {
  margin: 0 0 1rem 0;
  font-size: 1.08rem;
  font-weight: 600;
}

.theme-red_modern .popup-ad-subtitle { color: #475569; }
.theme-dark_glass .popup-ad-subtitle { color: #94a3b8; }
.theme-gold_special .popup-ad-subtitle { color: #fde047; }
.theme-blue_corporate .popup-ad-subtitle { color: #475569; }

.popup-ad-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 1.6rem;
}

.theme-red_modern .popup-ad-desc { color: #64748b; }
.theme-dark_glass .popup-ad-desc { color: #cbd5e1; }
.theme-gold_special .popup-ad-desc { color: #e7e5e4; }
.theme-blue_corporate .popup-ad-desc { color: #64748b; }

/* Geri Sayım Sayacı */
.popup-ad-countdown {
  display: inline-flex;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 16px;
  margin-bottom: 1.6rem;
  align-items: center;
}

.theme-red_modern .popup-ad-countdown,
.theme-blue_corporate .popup-ad-countdown {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.theme-dark_glass .popup-ad-countdown,
.theme-gold_special .popup-ad-countdown {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.countdown-unit {
  text-align: center;
}

.countdown-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: #dc2626;
  line-height: 1.1;
}

.theme-gold_special .countdown-val { color: #eab308; }
.theme-blue_corporate .countdown-val { color: #2563eb; }

.countdown-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
}

.countdown-colon {
  font-size: 1.25rem;
  font-weight: 800;
  color: #94a3b8;
  margin-top: -6px;
}

/* Buton Grubu */
.popup-ad-actions {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

.popup-ad-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  flex: 1;
  min-width: 200px;
}

.popup-ad-btn-primary {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff !important;
  box-shadow: 0 6px 22px rgba(220, 38, 38, 0.35);
}

.popup-ad-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(220, 38, 38, 0.45);
}

.theme-gold_special .popup-ad-btn-primary {
  background: linear-gradient(135deg, #facc15 0%, #eab308 100%);
  color: #000000 !important;
  box-shadow: 0 6px 22px rgba(234, 179, 8, 0.4);
}

.theme-blue_corporate .popup-ad-btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 6px 22px rgba(37, 99, 235, 0.35);
}

.popup-ad-btn-secondary {
  background: #f1f5f9;
  color: #334155 !important;
  border: 1px solid #cbd5e1;
}

.popup-ad-btn-secondary:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

.theme-dark_glass .popup-ad-btn-secondary,
.theme-gold_special .popup-ad-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Split Düzeni - Tam Simetrik İki Sütun */
.popup-split-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  min-height: 560px;
  align-items: stretch;
}

.popup-split-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
  background-color: #0b1120;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Full Banner (Tam Afiş) Modu */
.popup-ad-card.layout-full_banner {
  max-width: 920px;
  background: #0b1120;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.75);
}

.popup-full-banner {
  position: relative;
  background: #0b1120;
  width: 100%;
  min-height: 500px;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 26px;
}

.popup-full-banner .popup-slider-container {
  width: 100%;
  height: 100%;
  min-height: 500px;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b1120;
}

.popup-full-banner .popup-slider-track {
  width: 100%;
  height: 100%;
  min-height: 500px;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-full-banner .popup-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b1120;
}

.popup-full-banner img,
.popup-full-banner .popup-slide-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  object-position: center center;
  border-radius: 26px;
  background: #0b1120;
  display: block;
  margin: 0 auto;
}

.popup-full-banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0) 100%);
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
  z-index: 10;
}

/* Görsel Oturma Modları (Image Fit Modes) */
.popup-ad-card.fit-mode-cover .popup-ad-image-top img,
.popup-ad-card.fit-mode-cover .popup-slide-img,
.popup-ad-card.fit-mode-cover .popup-full-banner img,
.popup-img-cover,
.fit-cover img {
  object-fit: cover !important;
  object-position: center center !important;
  width: 100% !important;
  height: 100% !important;
}

.popup-ad-card.fit-mode-contain .popup-ad-image-top img,
.popup-ad-card.fit-mode-contain .popup-slide-img,
.popup-ad-card.fit-mode-contain .popup-full-banner img,
.popup-img-contain,
.fit-contain img {
  object-fit: contain !important;
  object-position: center center !important;
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  margin: auto !important;
  background: #0b1120 !important;
}

.popup-ad-card.fit-mode-auto .popup-ad-image-top img,
.popup-ad-card.fit-mode-auto .popup-slide-img,
.popup-ad-card.fit-mode-auto .popup-full-banner img,
.popup-img-auto,
.fit-auto img {
  object-fit: scale-down !important;
  object-position: center center !important;
  max-width: 100% !important;
  max-height: 100% !important;
  width: 100% !important;
  height: 100% !important;
  margin: auto !important;
  display: block !important;
}

/* Eşzamanlı Metin & Buton Slaytları */
.popup-text-slider {
  position: relative;
  width: 100%;
  min-height: 180px;
}

.popup-text-slide {
  display: none;
  width: 100%;
  animation: popupTextFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.popup-text-slide.active {
  display: block;
}

.popup-banner-text-slide {
  display: none;
  width: 100%;
  animation: popupTextFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.popup-banner-text-slide.active {
  display: block;
}

@keyframes popupTextFadeIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   POPUP SLIDER & SLAYT DÜZENİ - TAM SİMETRİK VE ORTALI
   ========================================================================== */
.popup-slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  user-select: none;
  background: #0b1120;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  background: #0b1120;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.popup-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.popup-slide img,
.popup-slide-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  margin: auto;
}

.popup-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 15;
  transition: all 0.2s ease;
  line-height: 1;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}

.popup-slider-btn:hover {
  background: #dc2626;
  border-color: #dc2626;
  transform: translateY(-50%) scale(1.1);
}

.popup-slider-prev {
  left: 14px;
}

.popup-slider-next {
  right: 14px;
}

.popup-slider-dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 15;
}

.popup-slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-slider-dot.active {
  width: 26px;
  height: 9px;
  border-radius: 12px;
  background: #dc2626;
  box-shadow: 0 0 12px rgba(220, 38, 38, 0.8);
}

/* Mobil Uyumluluk - Resimlerin %100 Tam ve Kesilmeden Görünmesi */
@media (max-width: 768px) {
  /* Mobilde Resimlerin %100 Tam Görünmesi */
  .popup-ad-card.fit-mode-cover .popup-ad-image-top img,
  .popup-ad-card.fit-mode-cover .popup-slide-img,
  .popup-ad-card .popup-ad-image-top img,
  .popup-ad-card .popup-slide img,
  .popup-ad-card .popup-slide-img,
  .popup-ad-card .popup-full-banner img,
  .popup-img-cover,
  .popup-img-contain,
  .popup-img-auto {
    object-fit: contain !important;
    object-position: center center !important;
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    margin: auto !important;
  }

  .popup-ad-image-top,
  .popup-split-image {
    min-height: 250px !important;
    max-height: 48vh !important;
    height: auto !important;
    background: #0b1120 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .popup-full-banner {
    min-height: 260px !important;
    max-height: 60vh !important;
    height: auto !important;
    background: #0b1120 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .popup-full-banner img {
    max-height: 55vh !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .popup-slider-container {
    min-height: 250px !important;
    max-height: 48vh !important;
    height: auto !important;
    background: #0b1120 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .popup-slide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #0b1120 !important;
  }

  .main-site-logo {
    width: 100% !important;
    max-width: 290px !important;
    height: auto !important;
    max-height: 65px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 640px) {
  .popup-ad-backdrop {
    padding: 0.75rem;
    align-items: center;
    justify-content: center;
  }
  .popup-ad-card {
    border-radius: 20px;
    max-height: 90vh;
    width: 100%;
    max-width: 100%;
  }
  .popup-split-grid {
    grid-template-columns: 1fr;
  }
  .popup-split-image {
    min-height: 240px;
    max-height: 45vh;
    height: auto;
    width: 100%;
    border-radius: 20px 20px 0 0;
  }
  .popup-ad-image-top {
    min-height: 220px;
    max-height: 45vh;
    height: auto;
    width: 100%;
    border-radius: 20px 20px 0 0;
  }
  .popup-full-banner {
    min-height: 260px;
    max-height: 60vh;
    height: auto;
    border-radius: 20px;
  }
  .popup-full-banner img {
    max-height: 52vh;
    border-radius: 20px;
  }
  .popup-ad-body {
    padding: 1.35rem 1.15rem;
    text-align: center;
  }
  .popup-ad-title {
    font-size: 1.35rem;
  }
  .popup-ad-subtitle {
    font-size: 0.95rem;
  }
  .popup-ad-desc {
    font-size: 0.88rem;
    line-height: 1.5;
  }
  .popup-ad-actions {
    flex-direction: column;
    gap: 0.6rem;
  }
  .popup-ad-btn {
    width: 100%;
    min-width: 100%;
    padding: 0.95rem 1.25rem;
    font-size: 0.98rem;
    border-radius: 12px;
  }
  .popup-slider-btn {
    width: 34px;
    height: 34px;
    font-size: 1.35rem;
  }
}


