*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0A0E1A;
  --bg-secondary: #111828;
  --bg-card: #162033;
  --blue: #003C78;
  --blue-light: #0050A0;
  --blue-muted: #50788C;
  --gold: #0D47A1;
  --gold-dark: #1565C0;
  --red: #FF3131;
  --text: #fff;
  --text-muted: #fff;
  --border: #1E2D48;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
  --nav-height: 110px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: transparent;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background 0.3s, border-bottom 0.3s;
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--blue);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.nav-logo-onyx {
  background: linear-gradient(90deg, #0D47A1, #42A5F5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-logo img {
  height: 100px;
  width: auto;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 10px;
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(13, 71, 161, 0.15);
  transition: all 0.3s;
}

.nav-social a:hover {
  transform: scale(1.15);
}

.nav-social svg {
  width: 16px;
  height: 16px;
  fill: url(#goldGradient);
}

.nav-social a:hover svg {
  fill: #fff;
}

.nav-social a[aria-label="WhatsApp"]:hover { background: #25D366; }
.nav-social a[aria-label="Facebook"]:hover { background: #1877F2; }
.nav-social a[aria-label="LinkedIn"]:hover { background: #0A66C2; }
.nav-social a[aria-label="Telegram"]:hover { background: #0088CC; }
.nav-social a[aria-label="Instagram"]:hover { background: #E4405F; }
.nav-social a[aria-label="TikTok"]:hover { background: #000; }

.nav-lang button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: #fff;
  border: 1px solid var(--gold);
  border-radius: 4px;
  transition: all 0.3s;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: transparent;
  cursor: pointer;
  font-family: var(--font);
  line-height: 1;
}

.nav-lang button:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

/* Nav Search */
.nav-search-social {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  position: relative;
  top: -5px;
}

.nav-search {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  padding: 0;
  color: var(--text);
  transition: color 0.3s;
  line-height: 1;
}

.nav-search-toggle svg {
  width: 22px;
  height: 22px;
}



.nav-search-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 280px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  z-index: 1000;
}

.nav-search-dropdown.open {
  display: block;
}

.nav-search-input {
  width: 100%;
  padding: 10px 14px;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 8px 8px 0 0;
  background: var(--bg-secondary);
  color: var(--text);
  font-size: 0.85rem;
  font-family: var(--font);
  outline: none;
  box-sizing: border-box;
}

.nav-search-input::placeholder {
  color: var(--blue-muted);
  font-size: 0.8rem;
}

.nav-search::before {
  display: none;
}

.nav-search-results {
  position: static;
  width: 100%;
  max-height: 360px;
  overflow-y: auto;
  box-shadow: none;
  border: none;
  border-radius: 0 0 8px 8px;
  background: transparent;
  display: none;
}

.nav-search-results:not(:empty) {
  display: block;
}

.nav-search-result {
  display: block;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  text-decoration: none;
  color: var(--text);
}

.nav-search-result:last-child {
  border-bottom: none;
}

.nav-search-result:hover {
  background: var(--bg-secondary);
}

.nav-search-result-title {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 2px;
}

.nav-search-result-desc {
  font-size: 0.73rem;
  color: var(--text-muted);
  opacity: 0.8;
}

.nav-search-no-results {
  padding: 14px;
  text-align: center;
  color: var(--blue-muted);
  font-size: 0.83rem;
}

.nav-links {
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-items: center;
  gap: 10px 30px;
}

.nav-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links-row2 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 30px;
  border-left: 1px solid rgba(255,255,255,0.15);
}

.nav-links-row2 a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}

.nav-links-row2 a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links-row2 a:hover {
  color: var(--gold);
}

.nav-links-row2 a:hover::after {
  width: 100%;
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a::after {
  content: '▾';
  position: static;
  font-size: 0.85rem;
  line-height: 1;
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,14,26,0.97);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s;
}

.nav-dropdown:hover .nav-submenu,
.nav-submenu.open {
  opacity: 1;
  pointer-events: all;
}

.nav-submenu li {
  display: block;
}

.nav-submenu a {
  display: block;
  padding: 8px 20px;
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-submenu a::after {
  display: none;
}

.nav-submenu a:hover {
  color: var(--gold);
  background: rgba(13, 71, 161, 0.08);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(to right, #0D47A1, #42A5F5);
  color: var(--bg-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: 2px solid #0D47A1;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: linear-gradient(to right, #0D47A1, #42A5F5);
  color: var(--bg-primary);
}

/* Section styling */
.section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.section-title span {
  color: var(--gold);
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,26,0.92) 0%, rgba(10,14,26,0.6) 100%);
}

.hero-slide video,
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capabilities-list {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}

.capabilities-list .cap-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.capabilities-list .cap-item:last-child {
  border-bottom: none;
}

.capabilities-list .cap-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 50px;
  text-align: center;
}

.capabilities-list .cap-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.capabilities-list .cap-text p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 200;
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-content h1 span {
  background: linear-gradient(90deg, #0D47A1, #42A5F5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.hero-content h1 strong {
  color: #fff;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-arrows {
  display: flex;
  gap: 15px;
}

.hero-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow:hover {
  background: #fff;
  color: var(--bg-primary);
}

.hero-dots {
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-dot.active {
  background: #fff;
}

.hero-tagline {
  background: var(--bg-primary);
  padding: 30px 0;
  text-align: center;
  position: relative;
}

.hero-tagline::before,
.hero-tagline::after {
  content: '\201C';
  display: block;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: -10px;
  opacity: 0.6;
}

.hero-tagline::after {
  content: '\201D';
  margin-top: 10px;
  margin-bottom: 0;
}

.hero-tagline p {
  font-size: 1.2rem;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.9;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-bottom {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  padding: 0 40px;
}

.hero-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.hero-buttons {
  position: absolute;
  left: 40px;
  display: flex;
  gap: 10px;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
}

/* About Preview Section */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-preview-image {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.about-preview-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-slider {
  position: relative;
  width: 100%;
}

.about-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 1.2rem;
  border-radius: 4px;
  transition: background 0.3s;
}

.about-slider-btn:hover {
  background: rgba(0,0,0,0.8);
}

.about-slider-prev { left: 10px; }
.about-slider-next { right: 10px; }

.about-preview-content h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-preview-content h2 span {
  color: var(--gold);
}

.about-preview-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 40px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.3s;
}

.stat-item:hover {
  border-color: var(--gold);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(255, 222, 89, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Infinity Slider */
.infinity-slider {
  overflow: hidden;
  padding: 30px 0;
  position: relative;
}

.infinity-slider::before,
.infinity-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.infinity-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}

.infinity-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}

.slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.slider-track img {
  height: 200px;
  width: auto;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Products Page */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.product-card-image {
  height: 250px;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 25px;
}

.product-card-body h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.product-card-body p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* Product Detail Page */
.product-banner {
  position: relative;
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 40px;
}

.product-overview {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.product-subtypes {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}

.product-subtype {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
}

.product-subtype h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.product-subtype p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.subtype-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.subtype-benefits span {
  background: rgba(13, 71, 161, 0.15);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  border: 1px solid rgba(13, 71, 161, 0.3);
}

.subtype-apps h4,
.product-apps h4 {
  color: var(--text);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.subtype-apps ul,
.product-apps ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.subtype-apps li,
.product-apps li {
  background: var(--bg-primary);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  border: 1px solid var(--border);
}

.product-apps {
  margin-bottom: 50px;
}

.product-apps .app-group {
  margin-bottom: 25px;
}

.product-apps .app-group h5 {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.recycling-info {
  text-align: center;
  padding: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 60px;
}

.recycling-info h3 {
  color: var(--gold);
  margin-bottom: 8px;
}

.recycling-info p {
  color: var(--text-muted);
}

/* Product detail pages - RAI style */
.product-banner-wrap {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.product-banner-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-banner-wrap .page-header-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
}

.product-banner-wrap .page-header-overlay h1 {
  color: #fff;
  font-size: 2.8rem;
  text-align: center;
}

.product-overview {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.subtype-section {
  padding: 0;
}

/* Product intro banner */
.product-intro {
  background: #0a1628;
  padding: 100px 0;
}

.product-intro p {
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.product-intro .intro-classification {
  color: var(--gold);
  font-weight: 600;
  text-align: center;
  font-size: 1.1rem;
  margin: 40px auto 0;
}

/* Accordion */
.product-accordion-group {
  background: var(--bg-secondary);
}

.product-accordion-group .subtype-section {
  max-width: 600px;
  margin: 0 0 0 0;
  padding: 0 40px;
}

.product-accordion-group .subtype-section + .subtype-section {
  border-top: 1px solid var(--border);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 0;
  margin: 0;
}

.accordion-trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.accordion-trigger .subtype-heading {
  color: var(--gold);
  font-size: 1.3rem;
  margin: 0;
  line-height: 1.2;
}

.product-accordion-group .subtype-heading,
.product-accordion-group .recycling-value,
.section-title span,
.about-preview-content h2 span,
.page-header h1 span,
.cta-section h2 span,
.about-hero h1 span,
.contact-info h3 span,
.product-subtype h3,
.product-intro .intro-classification,
.recycling-info h3,
.gallery-overlay span,
.subtype-benefits span,
.stat-number,
.hours-time,
.footer h4,
.footer-bottom span,
.contact-detail-icon {
  background: linear-gradient(to right, #0D47A1, #42A5F5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.nav-links a:hover,
.nav-links a.active,
.nav-submenu a:hover,
.footer-links a:hover,
.contact-detail a:hover,
.btn:hover,
.btn-outline {
  background: linear-gradient(to right, #0D47A1, #42A5F5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-icon::before {
  width: 2px;
  height: 14px;
}

.accordion-icon::after {
  width: 14px;
  height: 2px;
}

[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content.open {
  max-height: 2000px;
  padding: 0 0 12px 40px;
}

.accordion-row {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-row.open {
  max-height: 2000px;
  padding: 0 0 12px 40px;
}

.accordion-row.open .accordion-content {
  max-height: none;
  overflow: visible;
  padding: 0;
}

.recycling-icon {
  font-size: 1.1em;
  color: var(--gold);
}

.subtype-row {
  position: relative;
}

@media (min-width: 769px) {
  .subtype-row {
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }

  .subtype-row > .subtype-section {
    flex: 1;
    min-width: 0;
  }

  .accordion-photo {
    width: 400px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--border);
    display: none;
  }

  .subtype-row:has(.accordion-row.open) .accordion-photo {
    display: block;
  }
}

@media (max-width: 768px) {
  .accordion-photo {
    display: none;
  }
  .accordion-row.open {
    padding: 0 0 12px 16px;
  }
}

[dir="rtl"] .nav-menu {
  flex-direction: row;
}
[dir="rtl"] .nav-links-row2 {
  order: 1;
  padding-left: 0;
  padding-right: 30px;
  border-left: none;
  border-right: 1px solid rgba(255,255,255,0.15);
}

[dir="rtl"] .accordion-trigger {
  flex-direction: row;
}

.subtype-section .subtype-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.subtype-section .benefits-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.subtype-section .recycling-value {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0;
}

.subtype-section h4.subtype-label {
  color: var(--text);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  margin-top: 16px;
}

/* RAI-style striped table */
.apps-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}

.apps-table td {
  padding: 7px 12px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  vertical-align: top;
}

.apps-table td:first-child {
  width: 30%;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.apps-table tr:nth-child(odd) td {
  background: rgba(255,255,255,0.03);
}

.apps-table tr:nth-child(even) td {
  background: transparent;
}

@media (max-width: 768px) {
  .apps-table td:first-child {
    width: 40%;
  }
}

.product-page-cta {
  margin-top: 20px;
}

/* RTL app-group */
[dir="rtl"] .apps-table td:first-child {
  text-align: right;
}

@media (max-width: 768px) {
  .product-banner-wrap {
    height: 250px;
  }
  .product-banner-wrap .page-header-overlay h1 {
    font-size: 1.8rem;
  }
  .product-intro {
    padding: 60px 0;
  }
  .product-intro p {
    font-size: 0.95rem;
  }
  .accordion-trigger {
    padding: 10px 0;
  }
  .accordion-content.open {
    padding: 0 0 10px;
  }
  .product-accordion-group .subtype-section {
    padding: 0 20px;
  }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 26, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--gold);
  font-size: 2rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
  z-index: 2001;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  padding-right: 40px;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.contact-info h3 span {
  color: var(--gold);
}

.contact-details {
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.contact-detail-icon {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 25px;
}

.contact-detail a {
  color: var(--text);
  transition: color 0.3s;
}

.contact-detail a:hover {
  color: var(--gold);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

/* Map */
.map-container {
  margin-top: 60px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* About Page */
.about-hero {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.about-hero h1 span {
  color: var(--gold);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-video {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-video video {
  width: 100%;
  display: block;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
}

.review-card img {
  max-width: 280px;
  margin: 0 auto 15px;
}

.review-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* Working Hours */
.hours-list {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  color: var(--text-muted);
}

.hours-time {
  color: var(--gold);
  font-weight: 600;
}

/* WhatsApp Float */
.float-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.float-btn-whatsapp {
  background: #25d366;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--blue);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 100px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer h4 {
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  padding: 6px 0;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom span {
  color: var(--gold);
}

/* Page Header */
.page-header {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  text-align: center;
  border-bottom: 1px solid var(--blue);
  margin-bottom: 60px;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,26,0.85) 0%, rgba(10,14,26,0.5) 100%);
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 20px;
}

.page-header h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.page-header h1 span {
  color: var(--gold);
}

.page-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--bg-card) 0%, #0A1A3A 100%);
  border-top: 1px solid var(--blue);
  border-bottom: 1px solid var(--blue);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.cta-section h2 span {
  color: var(--gold);
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-preview,
  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-preview-image {
    order: -1;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
.nav-lang {
  margin: 0 5px;
}

.nav-lang button {
  display: inline-block;
  padding: 0px 10px;
  font-size: 0.75rem;
  line-height: 1;
  position: relative;
  top: -3px;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 4px;
  transition: all 0.3s;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: transparent;
  cursor: pointer;
  font-family: var(--font);
}

.nav-lang button:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

.nav-lang a {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 4px;
  transition: all 0.3s;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-lang a:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

.navbar {
  height: 80px;
}

.navbar .container {
  position: relative;
}

.nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 30px;
    gap: 16px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    border-bottom: 1px solid var(--border);
    overflow-y: auto;
    max-height: calc(100vh - var(--nav-height));
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-menu .nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    padding: 0;
    border: none;
    background: transparent;
  }

  .nav-menu .nav-links-row2 {
    flex-direction: column;
    gap: 12px;
    padding-left: 0;
    border-left: none;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 10;
  }

  .nav-search-social {
    width: 100%;
    order: -1;
    margin-top: -28px;
    padding: 0 0 12px;
    flex-direction: column;
  }

  .nav-search {
    width: 100%;
    margin: 0;
    position: relative;
  }

  .nav-search-toggle {
    display: none;
  }

  .nav-search-dropdown {
    display: block;
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    margin-top: 0;
  }

  .nav-search-input {
    width: 100%;
    padding: 0 8px;
    font-size: 0.6rem;
    line-height: 1;
    border: none;
    background: transparent;
  }

  .nav-search::before {
    display: none;
  }

  .nav-search-results {
    position: static;
    max-height: 200px;
    box-shadow: none;
    border: none;
    border-radius: 0;
  }

  .nav-social {
    position: absolute;
    top: 2px;
    transform: none;
    right: 0;
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 0;
  }

  .nav-social a {
    width: 18px;
    height: 18px;
    border-radius: 0;
    background: transparent;
  }

  .nav-social a:hover {
    transform: none;
  }

  .nav-social svg {
    width: 12px;
    height: 12px;
  }

  .nav-social a:hover svg {
    fill: url(#goldGradient);
  }

  .nav-logo img {
    height: 70px;
  }

  .nav-logo {
    font-size: 1.1rem;
  }

  .nav-submenu {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    padding: 5px 0 5px 20px;
    min-width: auto;
    opacity: 1;
    pointer-events: all;
    display: none;
  }

  .nav-submenu.open {
    display: block;
  }

  .nav-submenu a {
    padding: 6px 16px;
    font-size: 0.8rem;
  }

  .nav-lang a {
    font-size: 0.65rem;
    padding: 2px 6px;
  }

  .nav-lang button {
    font-size: 0.5rem;
    padding: 1px 3px;
    color: #fff;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero {
    height: 80vh;
    min-height: 450px;
  }

  .hero-slide {
    background-position: top center;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .services-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .float-buttons {
    bottom: 20px;
    right: 20px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }

  .float-btn svg {
    width: 24px;
    height: 24px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header {
    padding-top: calc(var(--nav-height) + 20px);
    padding-bottom: 30px;
  }

.hero-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0;
    bottom: 20px;
    padding: 0 15px;
  }

  .hero-nav {
    gap: 8px;
    align-items: center;
  }

  .hero-buttons {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .btn-sm {
    padding: 2px 6px;
    font-size: 0.55rem;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero {
    height: 70vh;
    min-height: 400px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* RTL Styles */
[dir="rtl"] .hero-buttons {
  left: auto;
  right: 40px;
}

[dir="rtl"] .float-buttons {
  right: auto;
  left: 30px;
}

[dir="rtl"] .lightbox-close {
  right: auto;
  left: 30px;
}

[dir="rtl"] .lightbox-prev {
  left: auto;
  right: 30px;
}

[dir="rtl"] .lightbox-next {
  right: auto;
  left: 30px;
}

[dir="rtl"] .about-slider-prev {
  left: auto;
  right: 10px;
}

[dir="rtl"] .about-slider-next {
  right: auto;
  left: 10px;
}

[dir="rtl"] .contact-info {
  padding-right: 0;
  padding-left: 40px;
}

[dir="rtl"] .hero-bottom {
  flex-direction: row-reverse;
}

[dir="rtl"] .about-content .section-title[style*="text-align:left"] {
  text-align: right !important;
}

@media (max-width: 768px) {
  [dir="rtl"] .hero-buttons {
    left: auto;
    right: auto;
  }

  [dir="rtl"] .float-buttons {
    left: 20px;
    right: auto;
  }

  [dir="rtl"] .nav-search-social {
    left: 0 !important;
    right: auto !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .product-banner {
    height: 160px;
  }

  .product-subtype {
    padding: 15px;
  }
}

/* ========== Scroll Animations ========== */
.aos-init {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.aos-init[data-aos="fade-up"] {
  transform: translateY(30px);
}

.aos-init[data-aos="fade-left"] {
  transform: translateX(-30px);
}

.aos-init[data-aos="fade-right"] {
  transform: translateX(30px);
}

.aos-init[data-aos="fade-in"] {
  transform: none;
}

.aos-init[data-aos="zoom-in"] {
  transform: scale(0.85);
}

.aos-animate {
  opacity: 1 !important;
  transform: none !important;
}
