:root {
  --primary: #ff8500;
  --primary-dark: #cc6a00;
  --primary-light: #ffaa50;
  --bg-dark: #0a0b0d;
  --card-bg: #15181c;
  --nav-bg: rgba(10, 11, 13, 0.85);
  --text-main: #ffffff;
  --text-muted: #a0aec0;
  --accent-glow: rgba(255, 133, 0, 0.15);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--card-bg);
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgb(10 11 13 / 0%);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

nav.scrolled {
  padding: 1rem 5%;
  background: rgba(0, 0, 0, 0.95);
}

.logo img,
.logo-img {
  height: 45px;
  width: auto;
  display: block;
}



.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links li {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 900px;
  background: rgba(21, 24, 28, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--primary);
  border-radius: 0 0 12px 12px;
  padding: 3rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

.has-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.mega-col h3 {
  font-size: 0.9rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mega-col ul {
  list-style: none;
}

.mega-col ul li {
  margin-bottom: 0.8rem;
}

.mega-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  text-transform: none;
  letter-spacing: normal;
  display: block;
}

.mega-col ul a:hover {
  color: white;
  padding-left: 8px;
}

.cta-btn {
  background: var(--primary);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 133, 0, 0.3);
  white-space: nowrap;
}

.cta-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 133, 0, 0.4);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  color: var(--primary);
}

.nav-secondary-btn {
  color: white;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 0.7rem 1.4rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-secondary-btn:hover {
  background: var(--glass);
  border-color: var(--primary);
  color: var(--primary);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 10%;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--bg-dark) 20%, transparent 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('assets/img/hero-1.png') center/cover no-repeat;
  opacity: 0.8;
  z-index: 0;
  animation: heroBgIn 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroBgIn {
  0% {
    transform: scale(1.15) rotate(1deg);
    filter: blur(20px);
    opacity: 0;
  }

  100% {
    transform: scale(1) rotate(0);
    filter: blur(0);
    opacity: 0.8;
  }
}

#robot-canvas {
  position: absolute;
  left: 50%;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: linear-gradient(90deg, var(--bg-dark) 30%, rgba(0, 0, 0, 0.5) 100%);*/
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-content h1 span,
.section-title h2 span,
.featured-content h2 span,
.stat-item h3,
.product-card .link,
.action-link {
  background: linear-gradient(135deg, #ff8500 0%, #ffcc00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
}

.secondary-btn {
  background: transparent;
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.secondary-btn:hover {
  background: var(--glass);
  border-color: var(--primary);
  color: var(--primary);
}

/* Stats Section */
.stats {
  display: flex;
  justify-content: space-between;
  padding: 5rem 10%;
  background: var(--card-bg);
  border-top: 1px solid var(--glass-border);
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

/* Products Section */
.section-title {
  text-align: center;
  padding: 8rem 0 4rem;
}

.section-title h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 10% 8rem;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  border-radius: 12px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: block;
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.product-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.product-card .link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-card .link::after {
  content: '→';
  transition: var(--transition);
}

.product-card:hover .link::after {
  transform: translateX(5px);
}

/* Featured Product */
.featured {
  display: flex;
  align-items: center;
  padding: 8rem 10%;
  gap: 5rem;
  background: linear-gradient(to right, var(--bg-dark), #0f1115);
}

.featured-content {
  flex: 1;
}

.featured-image {
  flex: 1;
  position: relative;
}

.featured-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
}

/* Footer */
footer {
  background: #050607;
  padding: 8rem 10% 4rem;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-col h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  color: white;
}

.footer-col p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  margin-top: 6rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Quick Actions */
.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 10%;
  margin-top: -50px;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.action-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  padding: 3rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: var(--transition);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.action-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 30px 60px rgba(255, 133, 0, 0.15);
}

.action-icon {
  font-size: 3.5rem;
  color: var(--primary);
  background: rgba(255, 133, 0, 0.1);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.action-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

.action-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.action-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.action-link:hover {
  gap: 1rem;
}

@media (max-width: 992px) {
  .quick-actions {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 4rem 5%;
  }
}

@media (max-width: 500px) {
  .action-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  padding: 3rem;
  border-radius: 16px;
  width: 100%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  animation: modalEnter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalEnter {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.modal-content h2 {
  margin-bottom: 1rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.modal-content h2 i {
  color: var(--primary);
}

.modal-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

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

.modal-form input,
.modal-form textarea {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--glass-border);
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  color: white;
  font-size: 0.95rem;
  transition: var(--transition);
}

.modal-form input:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 133, 0, 0.05);
}

.modal-form button {
  padding: 1rem;
  font-size: 1rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 1.2rem;
  }
}

/* Documents Section */
.documents-section {
  padding: 8rem 10%;
  background: var(--bg-dark);
}

.doc-container {
  max-width: 1200px;
  margin: 0 auto;
}

.doc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.doc-search {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.doc-search i {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.doc-search input {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  padding: 1.2rem 1.5rem 1.2rem 3.5rem;
  border-radius: 50px;
  color: white;
  font-size: 1rem;
  transition: var(--transition);
}

.doc-search input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 20px var(--accent-glow);
}

.doc-filters {
  display: flex;
  gap: 0.8rem;
}

.filter-btn {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(255, 133, 0, 0.2);
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.doc-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.doc-card:hover {
  transform: scale(1.02);
  border-color: var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
}

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

.doc-icon {
  width: 60px;
  height: 60px;
  background: var(--glass);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  transition: var(--transition);
}

.doc-card:hover .doc-icon {
  background: var(--primary);
  color: white;
  transform: rotate(-5deg);
}

.doc-info {
  flex: 1;
}

.doc-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: white;
}

.doc-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.doc-meta {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.doc-download {
  width: 45px;
  height: 45px;
  background: var(--glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.doc-download:hover {
  background: white;
  color: var(--bg-dark);
  transform: translateY(-3px);
}

.doc-footer {
  text-align: center;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--glass-border);
}

.doc-footer p {
  color: var(--text-muted);
}

.doc-footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.doc-footer a:hover {
  text-decoration: underline;
}



/* Animations */
/* Enhanced Reveal Animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  filter: blur(10px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Specific Hero Animations */
.hero-content h1[data-reveal] {
  transition-delay: 0.2s;
  transform: translateY(60px);
}

.hero-content p[data-reveal] {
  transition-delay: 0.4s;
  transform: translateY(30px);
}

.hero-content .hero-btns[data-reveal] {
  transition-delay: 0.6s;
  transform: translateY(20px);
}

/* Slide Reveal Effect */
[data-reveal="left"] {
  transform: translateX(-60px);
}

[data-reveal="right"] {
  transform: translateX(60px);
}

[data-reveal].revealed[data-reveal="left"],
[data-reveal].revealed[data-reveal="right"] {
  transform: translateX(0);
}

/* Stagger Logic for Lists/Grids */
.product-card[data-reveal]:nth-child(1) {
  transition-delay: 0.1s;
}

.product-card[data-reveal]:nth-child(2) {
  transition-delay: 0.2s;
}

.product-card[data-reveal]:nth-child(3) {
  transition-delay: 0.3s;
}

.product-card[data-reveal]:nth-child(4) {
  transition-delay: 0.4s;
}

.product-card[data-reveal]:nth-child(5) {
  transition-delay: 0.5s;
}

.product-card[data-reveal]:nth-child(6) {
  transition-delay: 0.6s;
}

.stat-item[data-reveal] {
  transition-delay: 0.2s;
}

.action-card[data-reveal]:nth-child(1) {
  transition-delay: 0.1s;
}

.action-card[data-reveal]:nth-child(2) {
  transition-delay: 0.3s;
}

.product-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  gap: 2rem;
  font-size: 0.9rem;
}

.product-search-bar {
  flex: 1;
  position: relative;
}

.product-search-bar i {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
}

.product-search-bar input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  transition: var(--transition);
}

.product-search-bar input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(255, 133, 0, 0.2);
}

.product-controls-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.product-controls-right span {
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Page Hero */
.page-hero {
  padding: 8rem 10% 3.5rem;
  background-color: #0a0b0d;
}

.page-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ff8500, #ffeb3b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 800px;
}

.products-section {
  padding: 2rem 10% 4rem;
}

.products-container {
  display: flex;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.sidebar {
  flex: 0 0 280px;
}

.sidebar-block {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  position: sticky;
  top: 100px;
}

.sidebar-block h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sidebar-menu {
  list-style: none;
  max-height: 532px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

/* Custom Scrollbar for Sidebar Menu */
.sidebar-menu::-webkit-scrollbar {
  width: 5px;
}

.sidebar-menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.sidebar-menu::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

.sidebar-menu li {
  margin-bottom: 0.5rem;
}

.sidebar-menu a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 0.8rem;
  display: block;
  border-radius: 6px;
  transition: var(--transition);
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
  background: rgba(255, 133, 0, 0.1);
  color: var(--primary);
  padding-left: 1.2rem;
}

.product-main {
  flex: 1;
}

/* Duplicated block removed and consolidated above */

.sort-options select {
  background: var(--card-bg);
  color: white;
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  outline: none;
}

.product-grid-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product-list-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  display: flex;
  overflow: hidden;
  transition: var(--transition);
}

.product-list-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-img {
  width: 300px;
  background: white;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-details {
  padding: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-badge {
  background: rgba(255, 133, 0, 0.2);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.product-details h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.product-details p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.product-specs {
  list-style: none;
  margin-bottom: 2rem;
}

.product-specs li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.product-specs i {
  color: var(--primary);
}

.product-actions {
  margin-top: auto;
  display: flex;
  gap: 1rem;
}

.small {
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
}

@media (max-width: 1200px) {
  .product-img {
    width: 240px;
  }
}

@media (max-width: 992px) {
  .products-container {
    flex-direction: column;
  }

  .sidebar {
    flex: none;
    width: 100%;
  }

  .sidebar-block {
    position: static;
  }

  .product-img {
    width: 100%;
    height: 300px;
  }

  .product-list-card {
    flex-direction: column;
  }

  .product-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .product-controls-right {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
  }

  .product-controls-right span {
    text-align: center;
    width: 100%;
  }

  .sort-options,
  .sort-options select {
    width: 100%;
  }
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 6rem 10% 1.5rem;
  background: var(--bg-dark);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.breadcrumbs i {
  font-size: 0.7rem;
  opacity: 0.5;
}

/* Product Hero Section */
.product-hero-section {
  padding: 3rem 10% 3rem;
}

.product-hero-container {
  display: flex;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.product-gallery {
  flex: 0 0 500px;
}

.main-image {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.main-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.thumb-gallery {
  display: flex;
  gap: 1rem;
}

.thumb {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 6px;
  padding: 0.5rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.thumb.active {
  border-color: var(--primary);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-info-panel {
  flex: 1;
}

.product-info-panel h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.product-desc-short {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-height: 200px;
  overflow-y: auto;
  padding-right: 1.5rem;
}

.info-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.highlight-item i {
  color: var(--primary);
  font-size: 1.4rem;
}

.highlight-item span {
  font-size: 0.95rem;
  color: white;
}

.product-actions-v2 {
  display: flex;
  gap: 1.5rem;
}

/* Tabs & Content */
.product-details-content {
  padding: 2rem 10% 4rem;
  background: var(--bg-dark);
}

.details-container {
  max-width: 1400px;
  margin: 0 auto;
}

.details-tabs {
  display: flex;
  gap: 2rem;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 1.5rem;
}

.tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 1rem 0.5rem;
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active {
  border-color: var(--primary);
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

/* Specs & Model Tables Refinement */
.specs-table-container,
.models-table-container {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
}

.specs-table,
.model-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr,
.model-table tr {
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.specs-table tr:hover,
.model-table tbody tr:hover {
  background: rgba(255, 133, 0, 0.05);
}

.specs-table td,
.model-table td,
.model-table th {
  padding: 1.2rem;
}

.spec-label {
  width: 280px;
  color: var(--primary);
  font-weight: 600;
  border-right: 1px solid var(--glass-border);
}

.spec-value {
  color: white;
}

.spec-full {
  color: var(--text-muted);
  font-style: italic;
}

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

.model-group-header {
  background: rgba(255, 133, 0, 0.1) !important;
}

.model-group-header td {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.model-code {
  color: var(--primary);
  font-weight: 700;
  font-family: 'DM Mono', monospace;
}

.product-listing-desc {
  margin-bottom: 1.5rem;
}

.product-listing-desc span {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: block;
  line-height: 1.4;
  margin-bottom: 2px;
}

/* Product Document List */
.doc-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.doc-item {
  display: flex;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem;
  gap: 1.5rem;
  transition: var(--transition);
}

.doc-item:hover {
  border-color: var(--primary);
  background: rgba(255, 133, 0, 0.05);
  transform: translateX(10px);
}

.doc-icon i {
  font-size: 2.5rem;
  color: var(--primary);
}

.doc-info {
  flex: 1;
}

.doc-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: white;
}

.doc-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.download-btn {
  padding: 0.8rem 1.5rem;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.download-btn:hover {
  background: #ff9d26;
  box-shadow: var(--shadow-primary);
}

/* Original Model Table Header */
.model-table th {
  border-collapse: collapse;
}

.model-table th {
  text-align: left;
  padding: 1.2rem;
  background: var(--card-bg);
  color: var(--primary);
  border-bottom: 2px solid var(--glass-border);
}

.model-table td {
  padding: 1.2rem;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-muted);
}

.model-table tr:hover td {
  background: rgba(255, 133, 0, 0.05);
  color: white;
}

.page-hero-small .container {
  z-index: 2;
  margin-top: 77px;
}

/* Doc Links */
.doc-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

.doc-download-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
}

.doc-download-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.doc-download-card i:first-child {
  font-size: 2.5rem;
  color: var(--primary);
}

.doc-text h4 {
  color: white;
  margin-bottom: 0.3rem;
}

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

.doc-download-card i:last-child {
  margin-left: auto;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .product-hero-container {
    flex-direction: column;
  }

  .product-gallery {
    flex: none;
    width: 100%;
  }

  .main-image {
    padding: 2rem;
  }

  .spec-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  .spec-label {
    flex: none;
  }
}

/* AI Assistant Styles */
.ai-floating-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary);
  color: white;
  padding: 1rem 1.8rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  z-index: 1500;
  box-shadow: 0 10px 30px rgba(255, 133, 0, 0.4);
  transition: var(--transition);
  font-weight: 700;
  letter-spacing: 1px;
}

/* Hide AI Button when mobile menu is active */
nav.mobile-active~#aiToggle {
  opacity: 0;
  pointer-events: none;
}

.ai-floating-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 133, 0, 0.6);
}

.ai-floating-btn i {
  font-size: 1.4rem;
}

.ai-chat-window {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 400px;
  max-width: 90vw;
  height: 600px;
  max-height: 70vh;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.ai-chat-window.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.ai-chat-header {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.ai-status {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ai-status>i {
  font-size: 1.8rem;
  color: var(--primary);
}

.status-info h4 {
  font-size: 1rem;
  color: white;
}

.status-info span {
  font-size: 0.75rem;
  color: #48bb78;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

#closeAi {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
}

.ai-chat-body {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.ai-msg {
  max-width: 85%;
  padding: 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.ai-msg.bot {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  align-self: flex-start;
  border-bottom-left-radius: 0;
}

.ai-msg.user {
  background: var(--primary);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 0;
}

.ai-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.chat-chip {
  background: rgba(255, 133, 0, 0.1);
  border: 1px solid rgba(255, 133, 0, 0.3);
  color: var(--primary);
  padding: 0.6rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}

.chat-chip:hover {
  background: var(--primary);
  color: white;
}

.ai-chat-footer {
  padding: 1rem;
  display: flex;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid var(--glass-border);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

#aiInput {
  flex: 1;
  background: var(--bg-dark);
  border: 1px solid var(--glass-border);
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  color: white;
  outline: none;
}

#sendAi {
  background: var(--primary);
  color: white;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

#sendAi:hover {
  transform: scale(1.1);
}

/* Responsive Design System */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .mega-menu {
    width: 95vw;
    padding: 2rem;
  }
}

@media (max-width: 992px) {
  nav {
    padding: 1.2rem 5%;
  }

  .nav-links,
  .nav-actions .nav-secondary-btn,
  .nav-actions .cta-btn {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  /* Mobile Menu Open State */
  nav.mobile-active {
    background: var(--bg-dark);
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 6rem;
    overflow-y: auto;
    backdrop-filter: blur(20px);
  }

  nav.mobile-active .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 2rem;
    margin-top: 3rem;
  }

  nav.mobile-active .nav-links a {
    font-size: 1.2rem;
  }

  nav.mobile-active .nav-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 2rem;
    gap: 1.2rem;
  }

  nav.mobile-active .nav-actions .nav-secondary-btn,
  nav.mobile-active .nav-actions .cta-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 1rem;
  }

  nav.mobile-active .mega-menu {
    display: none !important;
  }

  .hero {
    padding: 6rem 5% 2rem;
    text-align: center;
    flex-direction: column;
    /* Stacked layout */
    justify-content: flex-start;
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .hero-content {
    margin-top: 1rem;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    margin: 0 auto 2.5rem;
  }

  .hero-btns {
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  #robot-canvas {
    position: relative;
    /* Take it out of absolute positioning */
    top: 0;
    right: 0;
    transform: none;
    width: 100%;
    height: 350px;
    opacity: 1;
    margin-bottom: 2rem;
    order: -1;
    /* Ensure it's first in flex flow */
  }

  .stat-item {
    flex: 0 0 45%;
  }

  .featured {
    flex-direction: column;
    text-align: center;
    padding: 6rem 5%;
  }

  .featured-image {
    order: -1;
    width: 100%;
  }

  .quick-actions {
    margin-top: 0;
    padding: 4rem 5%;
  }

  .action-card {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.5rem;
  }

  .doc-header {
    flex-direction: column;
    align-items: stretch;
  }

  .doc-filters {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0.5rem 0 1rem;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    gap: 0.5rem;
  }

  .filter-btn {
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2.2rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    padding: 0 5% 6rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    margin-top: 4rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .stat-item {
    flex: 1 1 100%;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1.5rem;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .documents-section {
    padding: 4rem 1.5rem;
  }

  .doc-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .doc-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .doc-info {
    margin-bottom: 1rem;
    width: 100%;
  }

  .doc-info h3 {
    font-size: 1rem;
  }

  .doc-download {
    position: static;
    margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0.8rem;
  }

  .ai-chat-window {
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    border-radius: 0;
    max-height: none;
  }

  .ai-floating-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.8rem 1.4rem;
  }

  .modal-content {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.22rem;
  }

  .cta-btn,
  .secondary-btn,
  .nav-secondary-btn {
    width: 100%;
    text-align: center;
  }

  .section-title {
    padding-top: 6rem;
  }

  .documents-section {
    padding: 3rem 1rem;
  }

  .doc-card {
    padding: 1rem;
  }

  .doc-header {
    gap: 1.5rem;
  }

  .ai-floating-btn {
    bottom: 1rem;
    right: 1rem;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .product-img {
    height: 240px !important;
    padding: 1rem !important;
  }

  .main-image {
    padding: 1rem !important;
  }
}

/* Fix for mobile menu overlap with AI bot and close button position */
@media (max-width: 992px) {
  nav.mobile-active .nav-actions {
    margin-bottom: 2rem;
  }
}

/* --- Modal V2 (Quote Form) --- */
.modal-v2 {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  overflow-y: auto;
  padding: 2rem 1rem;
}

.modal-v2.active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.modal-content-v2 {
  background: #15181c;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.modal-header-v2 {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header-v2 h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.close-modal-v2 {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.close-modal-v2:hover {
  color: white;
}

.modal-body-v2 {
  padding: 2rem;
}

.form-group-v2 {
  margin-bottom: 1.5rem;
}

.form-group-v2 label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-group-v2 input,
.form-group-v2 textarea {
  width: 100%;
  padding: 0.8rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: white;
  font-family: inherit;
  transition: var(--transition);
}

.form-group-v2 input:focus,
.form-group-v2 textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(255, 133, 0, 0.1);
}

.cta-btn-v2 {
  display: inline-block;
  width: 100%;
  background: var(--primary);
  color: #000;
  padding: 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.cta-btn-v2:hover {
  background: #ff9d33;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 133, 0, 0.3);
}

@media (max-width: 600px) {
  .modal-content-v2 {
    border-radius: 0;
    margin-top: 0;
    margin-bottom: 0;
    min-height: 100vh;
  }
}

/* --- Contact Page Styles --- */
.page-hero-small {
  height: 350px;
  background-color: #1a1a1a;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/contact_hero.png?v=2');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--glass-border);
}

.page-hero-small h1 {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #ff8500, #ffeb3b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: inline-block;
}

.breadcrumb-v2 {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumb-v2 a {
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

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

.contact-page-section {
  padding: 2rem 0;
  background: radial-gradient(circle at top right, rgba(255, 133, 0, 0.03), transparent);
}

.contact-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3.5rem;
  backdrop-filter: blur(10px);
}

.info-item-v2 {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-item-v2:last-child {
  margin-bottom: 0;
}

.info-item-v2 .icon-box {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255, 133, 0, 0.15), rgba(255, 133, 0, 0.05));
  border: 1px solid rgba(255, 133, 0, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.info-item-v2 h3 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
}

.info-item-v2 p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.social-links-v2 {
  display: flex;
  gap: 1.2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--glass-border);
}

.social-links-v2 a {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  transition: var(--transition);
}

.social-links-v2 a:hover {
  background: var(--primary);
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 133, 0, 0.2);
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 4rem;
  backdrop-filter: blur(10px);
}

.form-header {
  margin-bottom: 3.5rem;
}

.form-header h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

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

.form-row-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.map-section-v2 {
  position: relative;
  border-top: 1px solid var(--glass-border);
  line-height: 0;
}

.map-section-v2 iframe {
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

@media (max-width: 992px) {
  .contact-grid-v2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .page-hero-small h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .form-row-v2 {
    grid-template-columns: 1fr;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  background: rgba(21, 24, 28, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem 2.5rem;
  z-index: 10000;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
}

.cookie-banner.active {
  bottom: 2rem;
  opacity: 1;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cookie-text i {
  font-size: 2.5rem;
  color: var(--primary);
  filter: drop-shadow(0 0 10px rgba(255, 133, 0, 0.3));
}

.cookie-text p {
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cookie-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  white-space: nowrap;
  border-bottom: 1px solid transparent;
}

.cookie-link:hover {
  color: var(--primary);
  border-color: var(--primary);
}

@media (max-width: 850px) {
  .cookie-banner {
    padding: 2rem;
    width: 95%;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .cookie-text {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

/* Legal & Form Helpers */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 1rem;
  text-align: left;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--primary);
}

.checkbox-group label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.kvkk-link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
  transition: var(--transition);
}

.kvkk-link:hover {
  color: var(--primary-light);
  filter: brightness(1.2);
}

.legal-text h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-top: 1.5rem;
}

.legal-text p,
.legal-text ul li {
  font-size: 0.95rem;
  color: var(--text-main);
  opacity: 0.9;
}