﻿/* ============================================================
   ROBOLEGO TEKNOLOJÄ° â€” STYLE SYSTEM
   ============================================================ */

/* --- Reset & Base --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

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

:root {
  --dark: rgb(30, 30, 30);
  --dark-lighter: rgb(45, 45, 45);
  --dark-border: rgba(255, 255, 255, 0.08);
  --red: #e42024;
  --red-dark: #c41a1e;
  --white: #ffffff;
  --gray: #7A7A7A;
  --light-bg: #f5f5f5;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-height: 80px;
  --transition: 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--gray);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.2;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; }

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

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


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 48px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar.transparent {
  background-color: transparent;
}

.navbar.scrolled {
  background-color: var(--dark);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar:not(.transparent) {
  background-color: var(--dark);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo img {
  height: 38px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--red);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}


/* ============================================================
   SPLASH / ENTRY PAGE
   ============================================================ */
.splash-wrapper {
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
  background-color: var(--dark);
}

.splash-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-align: center;
  padding: 48px;
}

.splash-side > * {
  position: relative;
  z-index: 2;
}



.splash-wrapper:hover .splash-side {
  flex: 0.7;
}

.splash-wrapper:hover .splash-side:hover {
  flex: 1.3;
}

.splash-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent 10%, rgba(255, 255, 255, 0.12) 50%, transparent 90%);
  z-index: 2;
  flex-shrink: 0;
}

.splash-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  transition: transform 0.5s ease;
}

.splash-side:hover .splash-icon {
  transform: scale(1.1);
}

.splash-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}

.splash-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 300px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.splash-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  background: transparent;
}

.splash-btn:hover {
  border-color: var(--red);
  background-color: var(--red);
  color: var(--white);
}

.splash-logo {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.splash-logo img {
  height: 34px;
}

/* Splash fade-in */
.splash-wrapper {
  animation: splashIn 0.8s ease forwards;
}

@keyframes splashIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--dark);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(228, 32, 36, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* Thin accent line */
.hero::after {
  content: '';
  position: absolute;
  right: 15%;
  top: 20%;
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, rgba(228, 32, 36, 0.15), transparent);
  pointer-events: none;
  z-index: 2;
}

/* Hero Background Image Carousel */
.hero-bg-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  transform: scale(1.05);
  animation: heroZoom 12s ease infinite alternate;
}

.hero-bg-slide.active {
  opacity: 1;
}

@keyframes heroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.06); }
}

/* Dark overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 20, 20, 0.88) 0%,
    rgba(20, 20, 20, 0.75) 40%,
    rgba(20, 20, 20, 0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-slider {
  position: relative;
  min-height: 280px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateY(20px);
  pointer-events: none;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 18px;
  max-width: 650px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-indicators {
  display: flex;
  gap: 8px;
  margin-top: 48px;
}

.hero-indicator {
  width: 36px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.12);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-indicator.active {
  width: 56px;
  background-color: var(--red);
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 14px 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

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

.btn-primary:hover {
  background-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(228, 32, 36, 0.25);
}

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

.btn-outline:hover {
  background-color: var(--dark);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

/* ============================================================
   PRODUCT HERO SECTION (Ultra Premium Custom Design)
   ============================================================ */
.product-hero {
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
  padding: 40px 0 40px;
}

/* Background glowing orbs */
.product-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(228, 32, 36, 0.35) 0%, transparent 60%);
  filter: blur(100px);
  z-index: 1;
}

.product-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(228, 32, 36, 0.2) 0%, transparent 60%);
  filter: blur(80px);
  z-index: 1;
}

.product-hero--indigo {
  background: #080912;
}

.product-hero--indigo::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 60%);
  filter: blur(100px);
  z-index: 1;
}

.product-hero--indigo::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
  filter: blur(80px);
  z-index: 1;
}

.product-hero--indigo .product-hero-features .material-symbols-outlined {
  color: #6366f1;
}

.product-hero--indigo .product-hero-features li:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.3);
}

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

.product-hero-top {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  grid-template-rows: min-content min-content min-content;
  gap: 24px 60px;
  align-items: center;
  align-content: center;
  margin-bottom: 30px;
}

.product-hero-title {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.product-hero-desc {
  grid-column: 1;
  grid-row: 2;
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  max-width: 95%;
  margin: 0;
}

.product-hero-image-wrapper {
  grid-column: 2;
  grid-row: 1 / span 3;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

.product-hero-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 480px;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.8));
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  z-index: 2;
  transform: scale(1);
  border-radius: 16px;
}

.product-hero-image-wrapper:hover .product-hero-image {
  transform: scale(1.08);
}

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

/* Glassmorphism Specs */
.product-specs-glass {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.spec-glass-item {
  display: flex;
  flex-direction: column;
}

.spec-glass-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 4px;
  font-weight: 700;
}

.spec-glass-value {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
}

/* Features Pill */
.product-hero-features {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: flex-start;
}

.product-hero-features li {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 480px;
  box-sizing: border-box;
}

.product-hero-features li:hover {
  background: rgba(228, 32, 36, 0.15);
  border-color: rgba(228, 32, 36, 0.3);
  transform: translateY(-4px);
  color: #fff;
}

.product-hero-features .material-symbols-outlined {
  color: var(--red);
  font-size: 22px;
}

@media (max-width: 991px) {
  .product-hero-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
  }
  .product-hero-title,
  .product-hero-desc,
  .product-hero-image-wrapper,
  .product-hero-features {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .product-hero-desc {
    max-width: 100%;
    margin: 0;
  }
  .product-hero-image-wrapper {
    justify-content: center;
    margin-top: 10px;
    width: 100%;
  }
  .product-specs-glass {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px;
  }
  .product-hero-features {
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .product-specs-glass {
    grid-template-columns: 1fr;
  }
}

.btn-outline-white:hover {
  border-color: var(--red);
  background-color: var(--red);
}


/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section {
  padding: 100px 0;
}

.splash-side--media {
  background-image: url('../resources/medya.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.splash-side--media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.6);
  z-index: 1;
  transition: background 0.5s ease;
}
.splash-side--media:hover::before {
  background: rgba(30, 30, 30, 0.4);
}

.splash-side--defense {
  background-image: url('../resources/savunma.webp');
  background-size: cover;
  background-position: center;
  position: relative;
}
.splash-side--defense::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.6);
  z-index: 1;
  transition: background 0.5s ease;
}
.splash-side--defense:hover::before {
  background: rgba(228, 32, 36, 0.5);
}

.section--dark {
  background-color: var(--dark);
}

.section--light {
  background-color: var(--light-bg);
}

.section--light-grid {
  background-color: var(--light-bg);
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: center top;
}

.section--dark-grid {
  background-color: var(--dark);
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center top;
  position: relative;
  overflow: hidden;
}

.section--dark-grid::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(228, 32, 36, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.section--dark-grid > * {
  position: relative;
  z-index: 2;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}

.section--dark .section-title {
  color: var(--white);
}

.section-desc {
  max-width: 560px;
  line-height: 1.8;
  color: var(--gray);
}

.section-header {
  margin-bottom: 56px;
}


/* ============================================================
   ABOUT SECTION (Home)
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.85;
}

.about-heading {
  display: block;
  margin-bottom: 22px;
  color: var(--red);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 700;
  line-height: 1.15;
}

.corporate-heading {
  position: relative;
  display: inline-block;
  margin: 0 0 28px;
  padding-bottom: 16px;
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
}

.corporate-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 3px;
  background: var(--red);
  border-radius: 999px;
}

.about-image-wrapper {
  position: relative;
  z-index: 1;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -24px;
  left: -24px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(228, 32, 36, 0.3);
  border-radius: 20px;
  z-index: -1;
  transition: all 0.5s ease;
}

.about:hover .about-image-wrapper::before {
  top: -12px;
  left: -12px;
  border-color: var(--red);
}

.about-image-inner {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  z-index: 2;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.about:hover .about-image img {
  transform: scale(1.08);
}

.about-experience-badge {
  position: absolute;
  bottom: -40px;
  right: -30px;
  background: linear-gradient(135deg, var(--dark), #000);
  color: var(--white);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  border: 8px solid var(--white);
  animation: badgeFloat 5s ease-in-out infinite;
  z-index: 3;
}

.badge-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  color: rgba(255,255,255,0.8);
}

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

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-text {
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 600;
}




/* ============================================================
   REFERENCES CAROUSEL
   ============================================================ */
.references {
  overflow: hidden;
  padding: 80px 0;
  background-color: var(--light-bg);
}

.references-title {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gray);
  margin-bottom: 44px;
  text-transform: uppercase;
}

.carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.carousel-wrapper::before,
.carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--light-bg), transparent);
}

.carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--light-bg), transparent);
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 120px;
  animation: carouselScroll 60s linear infinite;
  width: max-content;
}

.carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.carousel-item img {
  height: 64px;
  width: auto;
  filter: grayscale(100%) opacity(0.45);
  transition: all 0.3s ease;
}

.carousel-item:hover img {
  filter: grayscale(0%) opacity(1);
}

.carousel-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  opacity: 0.7;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.carousel-item:hover span {
  color: var(--dark);
  opacity: 1;
}

@keyframes carouselScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 0;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}

/* Subtle glow effect behind the footer */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-top {
  padding-bottom: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr;
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

/* Brand Column */
.brand-col .footer-logo {
  display: inline-block;
  margin-bottom: 24px;
}
.brand-col .footer-logo img {
  height: 44px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.brand-col .footer-logo:hover img {
  opacity: 1;
}
.footer-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 320px;
  font-weight: 300;
}

/* Common Heading */
.footer-heading {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}
.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 24px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 14px;
}
.footer-links a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--white);
}

/* Contact Items */
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}
.footer-contact-item.mt-3 {
  margin-top: 20px;
}
.footer-contact-item .material-symbols-outlined {
  color: var(--red);
  font-size: 22px;
  flex-shrink: 0;
  background: rgba(228, 32, 36, 0.1);
  padding: 8px;
  border-radius: 8px;
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact-item a:hover {
  color: var(--white);
}
.footer-contact-item strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom-links {
  display: flex;
  gap: 32px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-bottom-links a:hover {
  color: var(--white);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 32px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .brand-col .footer-logo {
    margin-bottom: 16px;
  }
  .footer-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 320px;
  font-weight: 300;
}
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-bottom-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
}



/* ============================================================
   PAGE HEADER (Inner Pages)
   ============================================================ */
.page-header {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #f8f9fc 0%, #eef1f8 40%, #f5f0f0 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(228, 32, 36, 0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 20, 40, 0.03) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-header .page-title,
.page-header .section-label {
  background: transparent;
  color: var(--dark);
  padding: 0;
  border-radius: 0;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  display: inline-block;
  border: none;
  text-transform: none;
  box-shadow: none;
  position: relative;
}

.page-header .page-title::after,
.page-header .section-label::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.page-header .page-desc,
.page-header .section-desc {
  font-size: 1.05rem;
  color: rgba(20, 20, 40, 0.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .page-header {
    padding: 110px 0 50px;
  }
  .page-header .page-title,
  .page-header .section-label {
    font-size: 2rem;
  }
}





/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.82rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb a:hover {
  color: var(--red);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.2);
}

.breadcrumb .current {
  color: var(--white);
}


/* ============================================================
   CARDS
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--red);
  transition: width 0.4s ease;
  z-index: 2;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card:hover::before {
  width: 100%;
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(228, 32, 36, 0.07);
  color: var(--red);
  border-radius: 12px;
  margin: 32px 32px 24px 32px;
  font-size: 28px;
}

.card-image {
  width: 100%;
  height: 240px;
  margin-bottom: 24px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.card-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  padding: 0 32px;
  color: var(--dark);
  font-weight: 700;
}

.card-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 32px 36px 32px;
  color: var(--gray);

  color: var(--gray);
}


/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.4s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

.product-image {
  height: 200px;
  background-color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image .material-symbols-outlined {
  font-size: 56px;
  color: rgba(255, 255, 255, 0.08);
}

.product-category {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  background-color: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-body {
  padding: 24px;
}

.product-title {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
}

.contact-info-block {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 48px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(228, 32, 36, 0.06);
  color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(228, 32, 36, 0.1);
  transition: all 0.3s ease;
}

.contact-info-block:hover .contact-info-icon {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(228, 32, 36, 0.2);
}

.contact-info-content {
  display: flex;
  flex-direction: column;
}

.contact-info-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.7;
}

.contact-info-value a {
  color: var(--dark);
}

.contact-info-value a:hover {
  color: var(--red);
}

.contact-form {
  background: var(--light-bg);
  padding: 44px;
}

.contact-form-title {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

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

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-label .required {
  color: var(--red);
  margin-left: 2px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  transition: border-color 0.3s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--red);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #b0b0b0;
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  justify-content: center;
}

.contact-map {
  height: 450px;
  background-color: var(--light-bg);
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 56px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(40%) contrast(1.1);
  transition: filter 0.4s ease;
}

.contact-map:hover iframe {
  filter: grayscale(0%);
}

/* Form messages */
.form-message {
  padding: 12px 18px;
  margin-bottom: 20px;
  font-size: 0.88rem;
  display: none;
}

.form-message.success {
  display: block;
  background-color: rgba(39, 174, 96, 0.08);
  color: #27ae60;
  border: 1px solid rgba(39, 174, 96, 0.18);
}

.form-message.error {
  display: block;
  background-color: rgba(228, 32, 36, 0.08);
  color: var(--red);
  border: 1px solid rgba(228, 32, 36, 0.18);
}


/* ============================================================
   TIMELINE (Kurumsal)
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 36px;
  max-width: 700px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), rgba(228, 32, 36, 0.08));
}

.timeline-item {
  position: relative;
  padding-bottom: 44px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -41px;
  top: 5px;
  width: 10px;
  height: 10px;
  background-color: var(--red);
  border-radius: 50%;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.timeline-title {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.timeline-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}


/* ============================================================
   MISSION / VISION BOXES
   ============================================================ */
.values-header {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 16px;
}

.values-header::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 3px;
  background: var(--red);
  border-radius: 999px;
}

.values-title {
  margin: 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
}

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

.mv-box {
  padding: 48px;
  background: linear-gradient(145deg, #ffffff, #f9f9f9);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.mv-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.mv-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(228, 32, 36, 0.1);
}

.mv-box:hover::before {
  transform: scaleX(1);
}

.mv-icon {
  width: 64px;
  height: 64px;
  background: rgba(228, 32, 36, 0.08);
  color: var(--red);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.mv-box:hover .mv-icon {
  background: var(--red);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.mv-box-title {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.mv-box-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
}

/* Glassmorphic Dark Overrides for Mission/Vision boxes in dark sections */
.section--dark-grid .mv-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.section--dark-grid .mv-box:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(228, 32, 36, 0.3);
  box-shadow: 0 20px 50px rgba(228, 32, 36, 0.12);
}

.section--dark-grid .mv-box-title {
  color: var(--white);
}

.section--dark-grid .mv-box-text {
  color: rgba(255, 255, 255, 0.6);
}

.section--dark-grid .mv-icon {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section--dark-grid .mv-box:hover .mv-icon {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}


/* ============================================================
   FILTER TABS (ÃœrÃ¼nler)
   ============================================================ */
.filter-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.filter-tab {
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
}

.filter-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
  color: var(--dark);
}

.filter-tab.active::after {
  transform: scaleX(1);
}


/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

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

@media (max-width: 768px) {
  .footer-contact-row {
    flex-direction: column;
    gap: 0;
  }

  .navbar {
    padding: 0 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--dark);
    flex-direction: column;
    padding: 100px 32px 48px;
    gap: 0;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 999;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    font-size: 0.95rem;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    width: 100%;
    display: block;
  }

  /* Splash */
  .splash-wrapper {
    flex-direction: column;
  }

  .splash-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent 10%, rgba(255, 255, 255, 0.12) 50%, transparent 90%);
  }

  .splash-wrapper:hover .splash-side {
    flex: 1;
  }

  .splash-wrapper .splash-side:hover {
    flex: 1.3;
  }

  .splash-wrapper:hover .splash-side:not(:hover) {
    flex: 0.7;
  }

  .splash-title {
    font-size: 1.3rem;
  }

  .splash-icon {
    font-size: 44px;
    margin-bottom: 18px;
  }

  /* General */
  .section {
    padding: 64px 0;
  }

  .page-header {
    padding: 120px 0 56px;
  }

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

  .card-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .contact-map {
    height: 280px;
  }

  .hero-slider {
    min-height: 240px;
  }

  .filter-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .splash-desc {
    display: none;
  }

  .splash-btn {
    padding: 10px 24px;
    font-size: 0.75rem;
  }

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

/* ============================================================
   FULL-SCREEN PRODUCTS (ÃœRÃœNLERÄ°MÄ°Z)
   ============================================================ */
.products-wrapper {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  background-color: var(--dark);
}

.products-wrapper::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

.product-fs-section {
  height: 100vh;
  width: 100%;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--dark);
}

.product-fs-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 1;
  transition: transform 0.8s ease;
}

.product-fs-section:hover .product-fs-bg {
  transform: scale(1.05);
}

.product-bg-red {
  background: radial-gradient(circle at 40% 50%, #e42024 0%, #7a0000 100%);
  position: absolute;
  inset: 0;
  z-index: 1;
}

.product-fs-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.product-showcase {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  width: 100%;
  padding: 0 60px;
  color: var(--white);
}

.ps-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 30px;
}

.ps-title-huge {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: capitalize;
  letter-spacing: -1px;
  text-shadow: 2px 4px 10px rgba(0,0,0,0.3);
}

.ps-title-huge span {
  display: block;
}

.ps-image-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.ps-product-img {
  max-width: 100%;
  max-height: 40vh;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.ps-desc {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 1200px;
}

.ps-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.ps-spec-item {
  display: flex;
  flex-direction: column;
}

.ps-spec-label {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.ps-spec-value {
  font-size: 0.95rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.ps-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ps-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 500;
}

.ps-features-list .check-icon {
  color: #a3e635; /* Bright green checkmark matching the image */
  font-size: 20px;
}

@media (max-width: 1100px) {
  .ps-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-showcase {
    padding: 0 30px;
  }
  .ps-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ps-image-wrapper {
    justify-content: flex-start;
  }
  .ps-specs-grid {
    grid-template-columns: 1fr;
  }
  .ps-title-huge {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }
}

/* ============================================================
   LIGHTBOX MODAL
   ============================================================ */
.about-image-wrapper {
  cursor: pointer;
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
  user-select: none;
  z-index: 2001;
}

.lightbox-close:hover {
  color: var(--red);
  transform: rotate(90deg) scale(1.1);
}

/* Language Switcher */
.lang-switcher select { background-color: transparent; border: 1px solid rgba(255, 255, 255, 0.3); color: #fff; padding: 4px 8px; border-radius: 4px; font-family: inherit; font-size: 14px; cursor: pointer; outline: none; }
.lang-switcher select option { color: #000; }
.lang-switcher { margin-left: 10px; display: flex; align-items: center; }
/* Language Buttons */
.lang-btn { background: none; border: none; cursor: pointer; padding: 4px; display: inline-flex; align-items: center; justify-content: center; transition: opacity 0.3s; }
.lang-btn:hover { opacity: 1 !important; }
.lang-btn img { width: 24px; height: 16px; object-fit: cover; border-radius: 2px; }


.contact-text { margin-bottom: 48px; }
.contact-info-label { margin-bottom: 12px; }

/* ============================================================
   SCROLL DOWN INDICATOR
   ============================================================ */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.scroll-indicator:hover {
  opacity: 1;
}

/* Mouse outline */
.scroll-indicator-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

/* Scrolling wheel dot */
.scroll-indicator-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateY(0); }
  50%  { opacity: 0.4; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Chevron arrows below */
.scroll-indicator-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.scroll-arrow {
  display: block;
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
  animation: scrollArrow 1.8s ease-in-out infinite;
}
.scroll-arrow:nth-child(2) {
  margin-top: -6px;
  animation-delay: 0.15s;
}

@keyframes scrollArrow {
  0%   { opacity: 0.3; transform: rotate(45deg) translateY(0); }
  50%  { opacity: 1;   transform: rotate(45deg) translateY(4px); }
  100% { opacity: 0.3; transform: rotate(45deg) translateY(0); }
}

@media (max-width: 768px) {
  .scroll-indicator { bottom: 20px; }
  .scroll-indicator-mouse { width: 22px; height: 36px; }
}




/* Scroll Snapping for Products Page */
.scroll-snap-page {
  scroll-snap-type: y mandatory;
  overflow-y: auto;
  height: 100vh;
  scroll-behavior: smooth;
}

.scroll-snap-page .page-header,
.scroll-snap-page .product-hero,
.scroll-snap-page #references-placeholder,
.scroll-snap-page #footer-placeholder {
  scroll-snap-align: start;
}

.scroll-snap-page .product-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0; /* Add padding to account for header if any */
}

/* Scroll indicator */
.scroll-down-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  animation: bounce 2s infinite;
  z-index: 10;
  opacity: 0.8;
}
.scroll-down-indicator span {
  font-size: 32px;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20b858;
}
.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

/* WhatsApp Text Updates */
.whatsapp-float {
  width: auto;
  padding: 0 20px;
  border-radius: 50px;
  gap: 10px;
}
.whatsapp-text {
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}

/* Language Switcher Display Logic */
@media (min-width: 992px) {
  .lang-switcher-mobile {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .lang-switcher-desktop {
    display: none !important;
  }
}

/* Mobile WhatsApp Button */
@media (max-width: 991px) {
  .whatsapp-text {
    display: none !important;
  }
  .whatsapp-float {
    width: 60px !important;
    height: 60px !important;
    padding: 0 !important;
  }
}
