/* ==========================================================================
   Suba Reklam - Premium Design System & Full Responsive CSS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Official Brand Palette from Logo */
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-subtle: #f1f5f9;
  
  --text-dark: #0a192f;       /* Deep Brand Navy Text */
  --text-muted: #475569;      /* Slate 600 */
  --text-light: #94a3b8;      /* Slate 400 */
  
  --border-color: #cbd5e1;    /* Clear Border */
  --border-focus: #0066ff;

  /* Suba Reklam Royal Electric Blue & Navy Accents */
  --primary: #0066ff;         /* Brand Blue */
  --primary-hover: #0052cc;   /* Deep Blue */
  --primary-light: #eff6ff;
  --primary-border: #bfdbfe;

  --navy-dark: #0a192f;       /* Official Logo Deep Navy */
  --navy-card: #0f2b5c;       /* Dark Navy Card */

  --accent-green: #10b981;    /* Emerald 500 */
  --accent-blue: #0f2b5c;

  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 14px -2px rgba(10, 35, 82, 0.08);
  --shadow-lg: 0 12px 32px -4px rgba(10, 35, 82, 0.12);

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

[data-theme="dark"] {
  --bg-main: #060e1d;
  --bg-card: #0d1b34;
  --bg-subtle: #142646;

  --text-dark: #f8fafc;
  --text-muted: #cbd5e1;
  --text-light: #94a3b8;

  --border-color: #1a3158;
  --border-focus: #0066ff;

  --primary-light: rgba(0, 102, 255, 0.18);
  --primary-border: rgba(0, 102, 255, 0.35);

  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.5);
}

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

html {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
  word-wrap: break-word;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   HEADER NAVBAR & SLEEK NAVIGATION WITH EXPANDED LOGO
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   DARK HEADER NAVBAR & SLEEK NAVIGATION
   -------------------------------------------------------------------------- */
.site-header, .header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #081426;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 2px 0;
}

.official-logo-img {
  height: 48px;
  max-width: 260px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.official-logo-img:hover {
  transform: scale(1.02);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-item a {
  font-weight: 700;
  font-size: 0.92rem;
  color: #e2e8f0;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.22s ease;
  white-space: nowrap;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
}

.nav-item a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-item.active a {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 3px 12px rgba(208, 14, 43, 0.4);
  padding: 8px 12px;
}

/* SLEEK HEADER CTA BUTTON */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f8fafc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  outline: none;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: scale(1.06);
}

.mobile-nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f8fafc;
  font-size: 1.5rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   DARK MATCHING KURUMSAL SITE FOOTER
   -------------------------------------------------------------------------- */
.site-footer, .footer {
  background: #050c18;
  color: #e2e8f0;
  border-top: 3px solid var(--primary);
  padding: 70px 0 30px 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.site-footer h4, .footer h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-footer p,
.site-footer span {
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.7;
}

.site-footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer ul a {
  color: #cbd5e1;
  font-size: 0.92rem;
  transition: all 0.2s ease;
}

.site-footer ul a:hover {
  color: #ffffff;
  padding-left: 4px;
}

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

.site-footer-bottom p {
  color: #94a3b8;
}

/* Page Header / Sub Banner */
.page-header {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-card) 100%);
  color: #fff;
  padding: 46px 0;
  border-bottom: 3px solid var(--primary);
  text-align: center;
}

.page-header-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.page-header-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #cbd5e1;
  max-width: 680px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(208, 14, 43, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(208, 14, 43, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  background: var(--bg-subtle);
  border-color: var(--primary);
  color: var(--primary);
}

.btn-whatsapp {
  background: var(--accent-green);
  color: #fff;
}

.btn-whatsapp:hover {
  background: #059669;
}

/* --------------------------------------------------------------------------
   ÜRETİM SÜREÇLERİMİZ (4 ADIMLI İMALAT SÜRECİ ŞERİDİ)
   -------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.process-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: -14px;
  left: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #ffffff;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 4px 14px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(208, 14, 43, 0.3);
  letter-spacing: 0.05em;
}

.step-icon {
  font-size: 2.2rem;
  color: var(--navy-dark);
  margin-bottom: 14px;
  margin-top: 6px;
}

[data-theme="dark"] .step-icon,
[data-theme="dark"] .step-icon i {
  color: #ffffff !important;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   SABİT SAĞ ALT HIZLI İLETİŞİM BUTONLARI (FLOATING CONTACT WIDGET)
   -------------------------------------------------------------------------- */
.floating-contact-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.12);
}

.floating-btn-wa {
  background: #25d366;
}

.floating-btn-phone {
  background: var(--navy-dark);
  border: 2px solid var(--primary);
}

.floating-tooltip {
  position: absolute;
  right: 64px;
  background: var(--navy-dark);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
  box-shadow: var(--shadow-md);
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
  visibility: visible;
  right: 60px;
}

/* --------------------------------------------------------------------------
   MINIMAL SOSYAL MEDYA BUTONLARI (FABRİKA İLETİŞİM HİZASINDA)
   -------------------------------------------------------------------------- */
.footer-social-minimal {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.minimal-social-link {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--navy-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all 0.22s ease;
  box-shadow: var(--shadow-sm);
}

.minimal-social-link:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(208, 14, 43, 0.3);
}

[data-theme="dark"] .minimal-social-link {
  background: #1e293b;
  color: #cbd5e1;
  border-color: #334155;
}

/* --------------------------------------------------------------------------
   MÜŞTERİ YORUMLARI & SLIDING CAROUSEL (TESTIMONIALS)
   -------------------------------------------------------------------------- */
.testimonials-section {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-main) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.testimonial-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-track-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 10px 4px;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 300px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

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

.testimonial-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--navy-dark);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.22s ease;
  flex-shrink: 0;
  z-index: 5;
}

.testimonial-arrow:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(208, 14, 43, 0.35);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testi-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 6px;
}

.stars-rating {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 14px;
  display: flex;
  gap: 4px;
}

.testimonial-quote {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

/* ULTRA-CLEAN CIRCULAR AVATAR FOR INITIALS */
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0;
  line-height: 1;
  border: 1px solid var(--primary-border);
  flex-shrink: 0;
  user-select: none;
}

.author-name {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 0.03em;
}

.author-company {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   GOOGLE MAPS CONTAINER
   -------------------------------------------------------------------------- */
.map-container {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
}

.map-header-bar {
  background: var(--navy-dark);
  color: #fff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.map-iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* --------------------------------------------------------------------------
   CANLI ANİMASYONLU ROZETLER
   -------------------------------------------------------------------------- */
.hero-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(208, 14, 43, 0.08);
  border: 1px solid rgba(208, 14, 43, 0.25);
  color: var(--primary-hover);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 20px;
  max-width: 100%;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(208, 14, 43, 0.7);
  animation: pulse-ring 1.8s infinite;
  flex-shrink: 0;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(208, 14, 43, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(208, 14, 43, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(208, 14, 43, 0); }
}

.floating-exp-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(10, 35, 82, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  animation: floatBounce 3.5s ease-in-out infinite;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-exp-badge .badge-icon-box {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #ffffff;
}

.floating-exp-badge .badge-text-val {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.floating-exp-badge .badge-text-sub {
  font-size: 0.72rem;
  color: #cbd5e1;
  font-weight: 600;
}

/* Catalog Sidebar Layout */
.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.category-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 115px;
}

.category-sidebar-title {
  padding: 0 24px 16px 24px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

[data-theme="dark"] .category-sidebar-title {
  color: #ffffff;
}

.category-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.category-btn {
  width: 100%;
  text-align: left;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  background: transparent;
  border: none;
  border-left: 4px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-btn:hover {
  background: var(--bg-subtle);
  color: var(--primary);
}

.category-btn.active {
  background: var(--primary-light);
  color: var(--primary-hover);
  font-weight: 800;
  border-left-color: var(--primary);
}

/* SLIM ANIMATED STATS COUNTER BAR */
.stats-counter-section {
  padding: 16px 0 24px 0;
}

.stats-counter-bar {
  background: linear-gradient(135deg, #091b3e 0%, #0a2352 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
}

.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 12px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.stat-icon {
  font-size: 1.7rem;
  color: var(--primary);
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stat-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.stat-num {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 2px;
  font-family: var(--font-body);
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.stats-counter-section .stat-icon {
  color: #ffffff;
}

.stats-counter-section .stat-num {
  color: #ffffff;
}

.stats-counter-section .stat-label {
  color: #cbd5e1;
}

/* Sliding Banner / Carousel */
.banner-carousel-section {
  padding: 24px 0 10px 0;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy-dark);
  border: 1px solid var(--border-color);
}

.carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}

.carousel-img,
.carousel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 35, 82, 0.94) 0%, rgba(10, 35, 82, 0.35) 55%, transparent 100%);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.carousel-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(208, 14, 43, 0.3);
  border: 1px solid rgba(208, 14, 43, 0.6);
  color: #ffffff;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  width: fit-content;
  margin-bottom: 12px;
}

.carousel-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.carousel-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: #cbd5e1;
  max-width: 650px;
}

.carousel-control-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 35, 82, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}

.carousel-control-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }

/* VİDEO ÖZEL EN ÜST SAĞ SES AÇMA / KAPATMA BUTONU */
.banner-sound-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 35;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(10, 35, 82, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  outline: none;
}

.banner-sound-toggle:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(208, 14, 43, 0.45);
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  right: 24px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 6px;
}

/* Hero Section */
.hero {
  padding: 40px 0 70px 0;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-main) 100%);
  border-bottom: 1px solid var(--border-color);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-h1 span {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-p {
  font-size: clamp(0.98rem, 2vw, 1.12rem);
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-feature-item i {
  color: var(--primary);
  font-size: 1.15rem;
}

.hero-card-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-img-main {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* Section Styling */
.section {
  padding: 70px 0;
}

.section-header {
  margin-bottom: 44px;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  color: var(--text-muted);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.product-img-wrapper {
  height: 230px;
  overflow: hidden;
  position: relative;
  background: #e2e8f0;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-tag {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.6;
  flex: 1;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
}

.spec-badge {
  font-size: 0.76rem;
  background: var(--primary-light);
  color: var(--primary-hover);
  border: 1px solid var(--primary-border);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
}

/* Quote Calculator */
.calc-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: start;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-main);
  color: var(--text-dark);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(208, 14, 43, 0.15);
}

.dim-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.summary-card {
  background: var(--navy-dark);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.summary-card h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 12px;
  margin-bottom: 18px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: #94a3b8;
}

.summary-row strong {
  color: #fff;
}

.summary-total {
  background: rgba(208, 14, 43, 0.2);
  border: 1px solid rgba(208, 14, 43, 0.4);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
  margin: 18px 0;
}

.summary-total-val {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card);
  transition: background 0.2s;
  gap: 12px;
}

.faq-question:hover {
  background: var(--bg-subtle);
}

.faq-answer {
  padding: 0 24px 20px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  display: none;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

/* FOOTER BRANDING & LAYOUT - BALANCED & SHIFTED LEFT */
.footer {
  margin-top: auto;
  background: #f1f5f9;
  color: #334155;
  padding: 60px 0 28px 0;
  font-size: 0.92rem;
  border-top: 4px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1.3fr;
  gap: 28px;
  margin-bottom: 40px;
}

.footer-brand-box {
  margin-bottom: 12px;
}

.footer-logo-img {
  max-width: 230px;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-desc {
  max-width: 230px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.footer h4 {
  color: var(--navy-dark);
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

[data-theme="dark"] .footer {
  background: #09152b;
  color: #cbd5e1;
}

[data-theme="dark"] .footer h4 {
  color: #ffffff;
}

[data-theme="dark"] .footer-desc {
  color: #cbd5e1;
}

[data-theme="dark"] .footer-bottom {
  color: #cbd5e1;
  border-top-color: #1e3a67;
}

[data-theme="dark"] .footer-bottom p {
  color: #cbd5e1;
}

/* ==========================================================================
   FULL RESPONSIVE BREAKPOINTS (TABLET & MOBILE OPTIMIZATIONS)
   ========================================================================== */

@media (max-width: 1200px) {
  .header-container {
    height: 95px;
  }
  .official-logo-img {
    height: 80px;
    max-width: 260px;
  }
  .nav-menu {
    gap: 16px;
  }
  .nav-item a {
    padding: 5px 10px;
    font-size: 0.94rem;
  }
}

@media (max-width: 1024px) {
  .header-container {
    height: 90px;
  }
  .official-logo-img {
    height: 72px;
    max-width: 230px;
  }
  .nav-menu {
    gap: 12px;
  }
  .nav-item a {
    padding: 5px 8px;
    font-size: 0.9rem;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 220px 1fr 1fr 1.3fr;
    gap: 20px;
  }
}

@media (max-width: 1080px) {

  .nav-item {
    width: 100%;
    text-align: center;
  }

  .nav-item a {
    font-size: 1.1rem;
    display: block;
    padding: 12px 0;
    width: 100%;
    justify-content: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-card-wrapper {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .carousel-container {
    height: 380px;
  }

  .calc-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .category-sidebar {
    position: static;
    top: 0;
  }

  .category-list {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
    gap: 8px;
    scrollbar-width: thin;
  }

  .category-btn {
    white-space: nowrap;
    border-left: none;
    border-bottom: 3px solid transparent;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    background: var(--bg-subtle);
  }

  .category-btn.active {
    border-bottom-color: var(--primary);
    background: var(--primary-light);
  }

  .category-btn i {
    display: none;
  }

  .testimonial-track .testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-desc {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .header-container {
    height: 82px;
  }
  .official-logo-img {
    height: 64px;
    max-width: 210px;
  }
  .nav-menu {
    top: 82px;
  }

  .carousel-container {
    height: 320px;
    border-radius: var(--radius-md);
  }

  .carousel-overlay {
    padding: 20px;
  }

  .carousel-control-btn {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  .carousel-prev { left: 10px; }
  .carousel-next { right: 10px; }

  .stats-counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-logo-img {
    max-width: 220px;
  }

  .floating-contact-widget {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }

  .floating-btn {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
  }

  .floating-tooltip {
    display: none;
  }
}

@media (max-width: 640px) {
  .testimonial-track .testimonial-card {
    flex: 0 0 100%;
  }
  .testimonial-arrow {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 74px;
  }
  .official-logo-img {
    height: 54px;
    max-width: 185px;
  }
  .nav-menu {
    top: 74px;
  }

  .hero-h1 {
    font-size: 2rem;
  }

  .hero-img-main {
    height: 280px;
  }

  .floating-exp-badge {
    top: 12px;
    right: 12px;
    padding: 8px 10px;
  }

  .dim-grid {
    grid-template-columns: 1fr;
  }

  .stats-counter-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-item {
    justify-content: flex-start;
  }

  .calc-wrapper, .contact-card {
    padding: 18px 14px;
  }

  .map-iframe {
    height: 260px;
  }

  .banner-sound-toggle {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
  }

  .carousel-title {
    font-size: 1.35rem;
    line-height: 1.25;
    margin-bottom: 6px;
  }

  .carousel-subtitle {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .header-cta .btn-primary {
    padding: 8px 12px;
    font-size: 0.82rem;
  }
}

/* --------------------------------------------------------------------------
   SUBA REKLAM MAKİNE PARKURU & PORTFOLIO LIGHTBOX STYLES
   -------------------------------------------------------------------------- */
.machine-card {
  background: #ffffff !important;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.machine-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.machine-img-wrapper {
  position: relative;
  height: 240px;
  background: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}

.machine-img-wrapper img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.machine-title-box {
  padding: 18px 20px;
  text-align: center;
  background: #ffffff !important;
  border-top: 1px solid var(--border-color);
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.machine-title-box h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy-dark) !important;
  margin: 0;
}

[data-theme="dark"] .machine-card {
  background: #ffffff !important;
}

[data-theme="dark"] .machine-title-box {
  background: #ffffff !important;
}

[data-theme="dark"] .machine-title-box h3 {
  color: #0a192f !important;
}

/* Lightbox */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(6, 14, 29, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 860px;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s ease;
}

.lightbox-close:hover {
  background: var(--primary);
  transform: rotate(90deg);
}

.lightbox-img-wrapper {
  max-height: 60vh;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrapper img {
  max-height: 60vh;
  width: auto;
  object-fit: contain;
}

.lightbox-info {
  padding: 24px 30px;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.portfolio-item:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

/* ==========================================================================
   ULTIMATE MOBILE & RESPONSIVE PERFECTION SYSTEM
   ========================================================================== */

/* Prevent any horizontal page overflow */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  position: relative;
  -webkit-text-size-adjust: 100%;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* Ensure all images and media adapt fluidly */
img, video, iframe, canvas, svg {
  max-width: 100%;
  height: auto;
}

/* General Typography Fluidity */
h1, h2, h3, h4, h5, h6, p, span, a, label {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Responsive Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* Global Buttons & Form Mobile Optimization */
.btn {
  max-width: 100%;
  white-space: normal;
  text-align: center;
  word-break: break-word;
}

.form-input, .form-select, textarea {
  width: 100% !important;
  max-width: 100% !important;
  font-size: 16px !important; /* Prevents auto-zoom on iOS Safari */
  box-sizing: border-box !important;
}

/* TABLET & MOBILE BREAKPOINTS (max-width: 991px) */
@media (max-width: 991px) {
  .header-container {
    height: 70px;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #081426;
    flex-direction: column;
    padding: 20px 16px;
    gap: 8px;
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    display: none;
    z-index: 9999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav-menu.active,
  .nav-menu.mobile-active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .nav-item {
    width: 100%;
    text-align: center;
  }

  .nav-item a {
    font-size: 1.05rem;
    display: block;
    padding: 12px 16px;
    width: 100%;
    border-radius: var(--radius-sm);
    text-align: center;
    background: rgba(255, 255, 255, 0.07);
    color: #f8fafc;
  }

  .nav-item.active a {
    background: var(--primary);
    color: #ffffff;
  }

  .mobile-nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #f8fafc;
    font-size: 1.4rem;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
  }

  .carousel-container {
    height: 380px;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* SMARTPHONE BREAKPOINTS (max-width: 768px) */
@media (max-width: 768px) {
  .carousel-container {
    height: 320px;
  }

  .carousel-overlay {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .carousel-badge {
    font-size: 0.68rem;
    padding: 3px 10px;
    margin-bottom: 6px;
  }

  .carousel-title {
    font-size: 1.25rem !important;
    line-height: 1.25;
    margin-bottom: 6px;
  }

  .carousel-subtitle {
    font-size: 0.8rem !important;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .carousel-control-btn {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }

  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }

  .banner-sound-toggle {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .carousel-dots {
    bottom: 12px;
    right: 14px;
  }

  /* Stats Counter Grid on Mobile: 2x2 responsive */
  .stats-counter-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 12px !important;
  }

  .stat-item {
    padding: 10px 12px;
    gap: 8px;
  }

  .stat-icon {
    font-size: 1.4rem;
  }

  .stat-num {
    font-size: 1.25rem !important;
  }

  .stat-label {
    font-size: 0.72rem !important;
    white-space: normal;
  }

  /* Grids */
  .process-grid, .portfolio-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .machine-card {
    max-width: 100%;
  }

  /* Page headers */
  .page-header {
    padding: 40px 0 30px 0;
  }

  .page-header-title {
    font-size: 1.6rem !important;
  }

  .page-header-subtitle {
    font-size: 0.9rem !important;
  }

  /* Footer */
  .site-footer {
    padding: 50px 0 24px 0;
  }

  .site-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* Modal Lightbox on Mobile */
  .lightbox-modal {
    padding: 12px;
  }

  .lightbox-content {
    max-width: 95vw !important;
    width: 95vw !important;
    padding: 16px !important;
  }

  .lightbox-close {
    top: 10px !important;
    right: 10px !important;
    width: 34px !important;
    height: 34px !important;
    font-size: 1rem !important;
  }
}

/* SMALL PHONES (max-width: 480px) */
@media (max-width: 480px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .official-logo-img {
    height: 44px !important;
    max-width: 155px !important;
  }

  .header-actions .btn-primary {
    padding: 7px 12px !important;
    font-size: 0.8rem !important;
  }

  .carousel-container {
    height: 270px;
    border-radius: var(--radius-md);
  }

  .stats-counter-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .process-step-card {
    padding: 20px 16px !important;
  }

  .floating-btn {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.25rem !important;
  }

  .floating-contact-widget {
    bottom: 16px !important;
    right: 12px !important;
    gap: 8px !important;
  }
}


