/* ===================================
   LİBALCO - Static Site Styles
   =================================== */

/* CSS Variables */
:root {
  --primary: #262262;
  --secondary: #93999e;
  --silver: #e2e8f0;
  --industrial: #1e1b4b;
  --white: #ffffff;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
}

/* Reset & Base Styles */
* {
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  color: #1f2937;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Syncopate', sans-serif;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-transform: uppercase;
}

.konexy-vibe {
  font-family: 'Syncopate', sans-serif;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-transform: uppercase;
}

/* Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===================================
   Animations
   =================================== */

/* Fade In Up */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Fade In */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

/* Float Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

/* Background Mesh */
@keyframes meshMove {
  0%, 100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
}

.mesh-bg {
  background-image: radial-gradient(circle at 2px 2px, var(--primary) 1px, transparent 0);
  background-size: 60px 60px;
  animation: meshMove 20s linear infinite;
}

/* Scroll Line */
@keyframes scrollLine {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 60px;
    top: 0;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 60px;
    opacity: 0;
  }
}

.scroll-indicator {
  width: 1px;
  background: var(--primary);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ===================================
   Navbar Styles
   =================================== */

.navbar {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  padding: 1.25rem 0;
  background-color: transparent;
  box-shadow: none;
}

/* Adjust navbar position when admin bar is present */
.admin-bar .navbar {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .navbar {
    top: 46px;
  }
}

.navbar.scrolled {
  padding: 0.875rem 0;
  background-color: var(--white);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.navbar-logo svg {
  height: 40px;
  width: auto;
}

.navbar-logo img,
.scrolled-logo,
.footer-logo img {
  height: auto;
  width: auto;
  max-width: 140px;
}

.logo-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-container .scrolled-logo-link {
  display: none;
}

.logo-container .scrolled-logo {
  display: block;
}

.navbar.scrolled .logo-container .custom-logo-link.navbar-logo {
  display: none;
}

.navbar.scrolled .logo-container .scrolled-logo-link {
  display: flex;
}

.navbar-logo text {
  transition: color 0.3s;
}

.navbar-logo .logo-rect-1 {
  transition: fill 0.3s;
}

.navbar-logo .logo-rect-2 {
  transition: fill 0.3s;
}

/* Logo colors - initial state (white) */
.navbar-logo .logo-rect-1 {
  fill: var(--white);
}

.navbar-logo .logo-rect-2 {
  fill: rgba(255, 255, 255, 0.7);
}

.navbar-logo .logo-text {
  fill: var(--white);
}

/* Logo colors - scrolled state */
.navbar.scrolled .logo-rect-1 {
  fill: var(--primary);
}

.navbar.scrolled .logo-rect-2 {
  fill: var(--secondary);
}

.navbar.scrolled .logo-text {
  fill: var(--primary);
}

.navbar-links {
  display: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar-links li {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }
}

/* Full-screen Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(-100%);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 1010;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  color: var(--secondary);
}

.mobile-menu-close svg {
  width: 32px;
  height: 32px;
}

.mobile-menu-nav {
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu-links li {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active .mobile-menu-links li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-links li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu-links li:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu-links .navbar-link {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 0;
  position: relative;
  transition: all 0.3s;
  line-height: 1.2;
}

.mobile-menu-links .navbar-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s;
}

.mobile-menu-links .navbar-link:hover {
  color: var(--secondary);
  transform: translateX(10px);
}

.mobile-menu-links .navbar-link:hover::before {
  width: 100%;
}

.mobile-menu-links .navbar-link.active {
  color: var(--secondary);
}

.mobile-menu-footer {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.4s;
}

.mobile-menu-overlay.active .mobile-menu-footer {
  opacity: 1;
}

.mobile-menu-logo svg {
  width: 120px;
  height: auto;
}

.mobile-menu-logo .custom-logo,
a.mobile-menu-logo img,
.mobile-menu-logo-img {
  height: auto;
  width: auto;
  max-width: 120px;
}

.mobile-menu-logo img {
  height: auto;
  width: auto;
  max-width: 120px;
}

.mobile-menu-logo .logo-rect-1 {
  fill: var(--white);
}

.mobile-menu-logo .logo-rect-2 {
  fill: rgba(255, 255, 255, 0.7);
}

.mobile-menu-logo .logo-text {
  fill: var(--white);
}

/* Background decorative elements for mobile menu */
.mobile-menu-overlay::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(147, 153, 158, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.mobile-menu-overlay::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 480px) {
  .mobile-menu-links .navbar-link {
    font-size: 1.75rem;
  }
  
  .mobile-menu-content {
    padding: 1.5rem;
  }
  
  .mobile-menu-close {
    top: 1rem;
    right: 1rem;
  }
}

@media (min-width: 768px) {
  .mobile-menu-overlay {
    display: none;
  }
}

.navbar-link {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: currentColor;
  width: 0;
  transition: width 0.3s;
}

.navbar-link:hover::after,
.navbar-link.active::after {
  width: 100%;
}

/* Navbar link colors - initial state (white) */
.navbar-link.active {
  color: var(--white);
}

.navbar-link:not(.active) {
  color: rgba(255, 255, 255, 0.7);
}

.navbar-link:not(.active):hover {
  color: var(--white);
}

/* Navbar link colors - scrolled state */
.navbar.scrolled .navbar-link.active {
  color: rgb(1,71,183);
}

.navbar.scrolled .navbar-link:not(.active) {
  color: var(--secondary);
}

.navbar.scrolled .navbar-link:not(.active):hover {
  color: rgb(1,71,183);
}

/* Mobile menu link colors */
.navbar-links.active .navbar-link {
  color: var(--secondary);
}

.navbar-links.active .navbar-link.active {
  color: var(--primary);
}

.navbar-links.active .navbar-link:hover {
  color: var(--primary);
}

/* Mobile menu button - initial state (white) */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  color: var(--white);
  transition: color 0.3s;
  position: relative;
  z-index: 60;
  pointer-events: auto;
  min-width: 44px;
  min-height: 44px;
}

.mobile-menu-btn:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Mobile menu button - scrolled state */
.navbar.scrolled .mobile-menu-btn {
  color: var(--primary);
}

.navbar.scrolled .mobile-menu-btn:hover {
  color: var(--secondary);
}


@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
}

/* ===================================
   Footer Styles
   =================================== */

.footer {
  background-color: var(--white);
  border-top: 1px solid var(--slate-100);
  padding: 4rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo svg {
  width: 100px;
  height: 30px;
}

.footer-info {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-info {
    text-align: right;
  }
}

.footer-subtitle a {
  color: inherit;
  text-decoration: none;
}

.footer-copyright {
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-subtitle {
  color: var(--slate-400);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  opacity: 0.5;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--slate-400);
}

@media (min-width: 768px) {
  .footer-tags {
    justify-content: flex-start;
  }
}

/* Center footer logo on mobile */
@media (max-width: 767px) {
  .footer-logo {
    justify-content: center;
    text-align: center;
  }

  .footer-logo svg,
  .footer-logo img {
    margin: 0 auto;
  }
}

/* ===================================
   Page Sections
   =================================== */

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--primary);
  padding-top: 8rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transform: scale(1.05);
  animation: float 30s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(38, 34, 98, 0.9), rgba(38, 34, 98, 0.7), rgba(38, 34, 98, 0.95));
}

.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.1;
  pointer-events: none;
}

.hero-decor {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0.3;
  pointer-events: none;
}

.hero-decor-1 {
  top: 25%;
  left: -5rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}

.hero-decor-2 {
  bottom: 25%;
  right: -5rem;
  width: 16rem;
  height: 16rem;
  animation: float 10s ease-in-out infinite;
  animation-delay: -5s;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.375rem 0.625rem;
  margin-bottom: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-badge p {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
}

.hero-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2rem;
  user-select: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

@media (min-width: 400px) {
  .hero-title {
    font-size: 1.75rem;
  }
}

@media (min-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 5rem;
    line-height: 0.9;
  }
}

.hero-title span {
  color: rgba(147, 153, 158, 0.4);
}

.hero-description {
  max-width: 42rem;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  color: rgba(203, 213, 225, 0.8);
  line-height: 1.75;
  font-weight: 300;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.hero-btn-primary {
  position: relative;
  padding: 1rem 1.5rem;
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 100%;
  border-radius: 2px;
}

@media (min-width: 640px) {
  .hero-btn-primary {
    width: auto;
  }
}

.hero-btn-primary:hover {
  background: var(--secondary);
  color: var(--white);
}

/* CTA Button - Override full width on mobile */
.bg-primary .hero-btn-primary {
  width: auto !important;
}

/* CTA Button - Override full width on mobile */
.hero-btn-primary.inline-block {
  width: auto !important;
}

.hero-btn-secondary {
  padding: 1rem 2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  text-decoration: none;
  transition: all 0.3s;
  width: 100%;
  border-radius: 2px;
}

@media (min-width: 640px) {
  .hero-btn-secondary {
    width: auto;
  }
}

.hero-btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

/* Hero Pillars */
.hero-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 8rem auto 0;
}

@media (min-width: 768px) {
  .hero-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  position: relative;
  padding: 1.5rem 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  transition: all 0.5s;
}

.pillar-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.pillar-icon {
  color: var(--secondary);
  margin-bottom: 1rem;
  transition: transform 0.5s;
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.1) rotate(3deg);
}

.pillar-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pillar-desc {
  font-size: 0.8125rem;
  color: rgba(148, 163, 184, 1);
  line-height: 1.5;
  font-weight: 300;
}

.pillar-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--white);
  width: 0;
  transition: width 0.5s;
}

.pillar-card:hover .pillar-line {
  width: 100%;
}

/* Scroll Indicator */
.scroll-indicator-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5rem;
}

.scroll-indicator-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-weight: 700;
  color: var(--slate-500);
  margin-bottom: 1rem;
}

.scroll-indicator-line {
  height: 5rem;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.scroll-indicator-line .scroll-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ===================================
   Section Styles
   =================================== */

.section {
  padding: 6rem 0;
}

.section-hero {
  background-color: var(--primary);
  padding-top: 10rem;
  padding-bottom: 8rem;
  position: relative;
  overflow: hidden;
}

.section-hero-mesh {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.section-hero-content {
  position: relative;
  z-index: 10;
}

.section-hero-label {
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  margin-bottom: 1rem;
  display: block;
}

.section-hero-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

@media (min-width: 375px) {
  .section-hero-title {
    font-size: 1.25rem;
  }
}

@media (min-width: 480px) {
  .section-hero-title {
    font-size: 1.5rem;
  }
}

@media (min-width: 640px) {
  .section-hero-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .section-hero-title {
    font-size: 4rem;
  }
}

.section-hero-line {
  width: 6rem;
  height: 0.25rem;
  background: var(--secondary);
  margin-bottom: 2.5rem;
}

.section-hero-desc {
  max-width: 32rem;
  font-size: 1.25rem;
  color: rgba(203, 213, 225, 0.8);
  line-height: 1.75;
  font-weight: 300;
}

/* Section Backgrounds */
.bg-slate-50 {
  background-color: var(--slate-50);
}

.bg-white {
  background-color: var(--white);
}

.bg-primary {
  background-color: var(--primary);
}

/* ===================================
   Our Story Section
   =================================== */

.our-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .our-story-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.our-story-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .our-story-title {
    font-size: 3rem;
  }
}

.our-story-text {
  color: var(--secondary);
  line-height: 1.75;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.our-story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.our-story-img {
  height: 16rem;
  background: var(--slate-200);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.our-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  filter: grayscale(100%);
  transition: all 0.7s;
}

.our-story-img:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.our-story-img:nth-child(2) {
  margin-top: 3rem;
}

.our-story-img-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--primary);
  padding: 0.25rem 0.75rem;
  color: var(--white);
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.2em;
  transition: background 0.3s;
}

.our-story-img:hover .our-story-img-label {
  background: var(--secondary);
}

/* Mission & Vision Cards */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-top: 8rem;
}

@media (min-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mission-vision-card {
  border-left: 4px solid var(--primary);
  background: var(--slate-50);
  position: relative;
  overflow: hidden;
  padding: 2.5rem !important;
}

.mission-vision-card.secondary {
  border-left-color: var(--secondary);
}

.mission-vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: rgba(38, 34, 98, 0.05);
  border-radius: 50%;
  margin-right: -4rem;
  margin-top: -4rem;
  transition: transform 0.5s;
}

.mission-vision-card:hover::before {
  transform: scale(1.5);
}

.mission-vision-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mission-vision-text {
  color: var(--secondary);
  line-height: 1.75;
}

/* Core Values */
.core-values-header {
  text-align: center;
  margin-bottom: 5rem;
}

.core-values-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

@media (min-width: 768px) {
  .core-values-title {
    font-size: 1.875rem;
  }
}

.core-values-line {
  width: 6rem;
  height: 0.25rem;
  background: var(--primary);
  margin: 0 auto;
}

.core-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--slate-100);
  border: 1px solid var(--slate-100);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .core-values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.core-value-card {
  background: var(--white);
  padding: 2.5rem;
  text-align: center;
  transition: background 0.3s;
  position: relative;
  flex-direction: column;
  display: flex;
  align-items: center;
}

.core-value-card:hover {
  background: var(--slate-50);
}

.core-value-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--primary);
  transition: height 0.3s;
}

.core-value-card:hover .core-value-line {
  height: 1px;
}

.core-value-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--slate-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--primary);
  transition: all 0.5s;
}

.core-value-card:hover .core-value-icon {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-0.5rem);
  box-shadow: 0 20px 25px -5px rgba(38, 34, 98, 0.2);
}

.core-value-title {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  min-height: 2rem;
  display: flex;
  align-items: center;
}

.core-value-desc {
  color: var(--secondary);
  font-size: 0.875rem;
  line-height: 1.625;
  font-weight: 300;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.core-value-card:hover .core-value-desc {
  opacity: 1;
}

/* ===================================
   Sustainability Section
   =================================== */

.sustainability-header {
  text-align: center;
  margin-bottom: 5rem;
}

.sustainability-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .sustainability-title {
    font-size: 3rem;
  }
}

.sustainability-desc {
  color: var(--secondary);
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 48rem;
  margin: 0 auto;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 640px) {
  .sustainability-grid {
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .sustainability-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Circular Model Card */
.circular-model-card {
  background: var(--white);
  padding: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--slate-100);
  border-radius: 2px;
  max-width: 100%;
  overflow: hidden;
}

@media (max-width: 640px) {
  .circular-model-card {
    padding: 1.5rem;
  }
}

.circular-model-header {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--slate-100);
  padding-bottom: 1rem;
  display: flex;
  align-items: center;
}

@media (max-width: 640px) {
  .circular-model-header {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

.circular-model-header::before {
  content: '';
  width: 0.5rem;
  height: 2rem;
  background: var(--primary);
  margin-right: 1rem;
  display: inline-block;
}

@media (max-width: 640px) {
  .circular-model-header::before {
    width: 0.375rem;
    height: 1.5rem;
    margin-right: 0.75rem;
  }
}

.model-steps {
  position: relative;
}

.model-steps::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--slate-100);
}

@media (max-width: 640px) {
  .model-steps::before {
    left: 1.25rem;
  }
}

@media (min-width: 640px) {
  .model-steps::before {
    display: block;
  }
}

.model-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 640px) {
  .model-step {
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

.model-step:last-child {
  margin-bottom: 0;
}

.model-step-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s;
  z-index: 10;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

@media (max-width: 640px) {
  .model-step-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .model-step-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.model-step:hover .model-step-icon {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.model-step-number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--slate-50);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--slate-100);
  transition: all 0.3s;
}

@media (max-width: 640px) {
  .model-step-number {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 9px;
    top: -0.375rem;
    right: -0.375rem;
  }
}

.model-step:hover .model-step-number {
  background: var(--white);
  color: var(--primary);
}

.model-step-title {
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  transition: color 0.3s;
}

@media (max-width: 640px) {
  .model-step-title {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }
}

.model-step:hover .model-step-title {
  color: var(--industrial);
}

.model-step-desc {
  color: var(--secondary);
  font-size: 0.875rem;
  line-height: 1.625;
  max-width: 20rem;
}

@media (max-width: 640px) {
  .model-step-desc {
    font-size: 0.8125rem;
    max-width: 100%;
  }
}

.model-step-arrow {
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.3s;
}

@media (min-width: 768px) {
  .model-step-arrow {
    display: block;
  }
}

.model-step:hover .model-step-arrow {
  opacity: 1;
}

.model-info {
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 2px;
}

@media (max-width: 640px) {
  .model-info {
    margin-top: 2rem;
    padding: 1rem;
  }
}

.model-info p {
  font-size: 0.75rem;
  color: var(--slate-500);
  font-style: italic;
  display: flex;
  align-items: center;
}

@media (max-width: 640px) {
  .model-info p {
    font-size: 0.6875rem;
  }
}

.model-info svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  color: var(--primary);
}

/* Ecological Impact Card */
.ecological-card {
  background: var(--primary);
  padding: 2.5rem;
  color: var(--white);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

@media (max-width: 640px) {
  .ecological-card {
    padding: 1.5rem;
  }
}

.ecological-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  margin-right: -8rem;
  margin-top: -8rem;
}

.ecological-header {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1rem;
  position: relative;
  z-index: 10;
}

@media (max-width: 640px) {
  .ecological-header {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.ecological-desc {
  margin-bottom: 2.5rem;
  opacity: 0.8;
  font-style: italic;
  font-size: 1.125rem;
  position: relative;
  z-index: 10;
}

@media (max-width: 640px) {
  .ecological-desc {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.ecological-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  z-index: 10;
}

@media (max-width: 640px) {
  .ecological-list {
    gap: 1.5rem;
  }
}

.ecological-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .ecological-item {
    gap: 1rem;
  }
}

.ecological-line {
  width: 0.375rem;
  height: 4rem;
  background: rgba(147, 153, 158, 0.4);
  border-radius: 9999px;
  transition: background 0.5s;
}

.ecological-item:hover .ecological-line {
  background: var(--white);
}

.ecological-text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.25;
  transition: transform 0.3s;
}

@media (max-width: 640px) {
  .ecological-text {
    font-size: 1rem;
    line-height: 1.3;
  }
}

.ecological-item:hover .ecological-text {
  transform: translateX(0.5rem);
}

.ecological-footer {
  margin-top: 4rem;
  font-size: 0.875rem;
  opacity: 0.6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
}

@media (max-width: 640px) {
  .ecological-footer {
    margin-top: 2rem;
    font-size: 0.75rem;
    padding-top: 1.5rem;
  }
}

.ecological-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--secondary);
  border-radius: 50%;
  margin-right: 0.75rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Material Transformation Cycle */
.transformation-header {
  text-align: center;
  margin-bottom: 4rem;
}

.transformation-title {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.transformation-line {
  width: 4rem;
  height: 1px;
  background: rgba(38, 34, 98, 0.2);
  margin: 0 auto;
}

.transformation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding-bottom: 3rem;
}

@media (min-width: 1024px) {
  .transformation-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.transformation-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.transformation-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}

.transformation-step:hover .transformation-label {
  color: var(--primary);
}

.transformation-icon {
  width: 6rem;
  height: 6rem;
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  margin-bottom: 2.5rem;
  transition: all 0.5s;
  position: relative;
}

.transformation-step:hover .transformation-icon {
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 25px 50px -12px rgba(38, 34, 98, 0.1);
}

/* Transformation Arrow - DIAGNOSTIC STYLES */
.transformation-arrow {
  /* Diagnostic: Make arrow visible and positioned */
  position: absolute;
  right: -3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 1.25rem;
  color: var(--slate-300);
  transition: all 0.3s;
  z-index: 10;
}

.transformation-step:hover .transformation-arrow {
  color: var(--primary);
  transform: translateY(-50%) translateX(0.5rem);
}

/* Hide arrow on last step */
.transformation-step:last-child .transformation-arrow {
  display: none;
}

.transformation-content-title {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.transformation-step:hover .transformation-content-title {
  color: var(--industrial);
}

.transformation-content-desc {
  color: var(--secondary);
  font-size: 0.875rem;
  line-height: 1.625;
  font-weight: 300;
  max-width: 16rem;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.transformation-step:hover .transformation-content-desc {
  opacity: 1;
}

/* ===================================
   Products Section
   =================================== */

.products-header {
  margin-bottom: 5rem;
}

.products-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .products-title {
    font-size: 3rem;
  }
}

.products-desc {
  color: var(--secondary);
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 32rem;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--slate-200);
  border: 1px solid var(--slate-200);
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-card {
  background: var(--white);
  overflow: hidden;
}

.product-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.7s;
}

.product-card:hover .product-image img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.product-content {
  padding: 2.5rem;
}

.product-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-subtitle {
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.product-divider {
  height: 1px;
  width: 3rem;
  background: var(--primary);
  margin-bottom: 1.5rem;
}

.product-app-label {
  font-size: 0.875rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-app {
  font-size: 0.875rem;
  color: var(--slate-500);
}

.products-note {
  margin-top: 5rem;
  text-align: center;
}

.products-note p {
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Products List Page */
.products-list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.product-item {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .product-item {
    flex-direction: row;
  }
}

.product-item:nth-child(even) {
  flex-direction: column;
}

@media (min-width: 1024px) {
  .product-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.product-item-image {
  width: 100%;
}

@media (min-width: 1024px) {
  .product-item-image {
    width: 50%;
  }
}

.product-item-img-container {
  position: relative;
  overflow: hidden;
  background: var(--slate-100);
  aspect-ratio: 4/3;
}

.product-item-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.7s;
}

.product-item:hover .product-item-img-container img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.product-item-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  padding: 0.5rem 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary);
}

.product-item-badge span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.product-item-content {
  width: 100%;
}

@media (min-width: 1024px) {
  .product-item-content {
    width: 50%;
  }
}

.product-item-type {
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 0.75rem;
  display: block;
}

.product-item-name {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-item-line {
  width: 4rem;
  height: 1px;
  background: var(--primary);
  margin-bottom: 2rem;
}

.product-item-specs-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.product-item-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .product-item-specs {
    grid-template-columns: 1fr 1fr;
  }
}

.product-item-spec {
  display: flex;
  align-items: center;
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.875rem;
}

.product-item-spec::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(38, 34, 98, 0.3);
  border-radius: 50%;
  margin-right: 0.75rem;
}

.product-item-app-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.product-item-app {
  color: var(--secondary);
  line-height: 1.75;
  font-weight: 300;
}

.product-item-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-decoration: none;
  margin-top: 2.5rem;
  transition: color 0.3s;
}

.product-item-btn:hover {
  color: var(--secondary);
}

.product-item-btn svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s;
}

.product-item-btn:hover svg {
  transform: translateX(0.5rem);
}

/* Capacity Section */
.capacity-section {
  background: var(--slate-50);
  padding: 6rem 0;
  margin-top: 6rem;
}

.capacity-card {
  max-width: 64rem;
  margin: 0 auto;
  padding: 3rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.capacity-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: rgba(38, 34, 98, 0.05);
  border-radius: 50%;
  margin-right: -4rem;
  margin-top: -4rem;
}

.capacity-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.capacity-desc {
  color: var(--secondary);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.capacity-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .capacity-stats {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}

.capacity-stat {
  text-align: center;
}

.capacity-stat-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
}

.capacity-stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-400);
}

/* ===================================
   Contact Section
   =================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.contact-info {
  flex: 1;
}

.contact-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .contact-title {
    font-size: 3rem;
  }
}

.contact-desc {
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 3rem;
  font-weight: 500;
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-value {
  font-size: 1.25rem;
  color: var(--secondary);
  font-weight: 700;
}

.contact-value a {
  color: var(--primary);
  text-decoration: none;
}

.contact-value a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form-card {
  background: var(--white);
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  border: 1px solid var(--slate-100);
}

@media (min-width: 768px) {
  .contact-form-card {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .contact-form-card {
    padding: 4rem;
  }
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--slate-50);
  border: none;
  border-bottom: 1px solid var(--slate-200);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  transition: border-color 0.3s;
  border-radius: 0;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  border-bottom-width: 2px;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--slate-400);
}

.form-textarea {
  resize: none;
  font-family: inherit;
  min-height: 100px;
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2393999e'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
}

.form-submit {
  background: var(--primary);
  color: var(--white);
  padding: 1rem 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

.form-submit:hover {
  background: var(--industrial);
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.form-note {
  font-size: 9px;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
}

/* ===================================
   Page Specific Styles
   =================================== */

/* Circular Economy Section (Sustainability Page) */
.circular-economy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .circular-economy-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.circular-economy-content ul {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.circular-economy-content li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.circular-economy-content li .check-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
}

.circular-economy-content li span {
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.circular-visual {
  position: relative;
}

.circular-visual-container {
  aspect-ratio: 1;
  background: var(--slate-100);
  border-radius: 2px;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--slate-200);
}

.circular-visual-circle {
  width: 100%;
  height: 100%;
  border: 4px dashed rgba(38, 34, 98, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.circular-visual-center {
  text-align: center;
  padding: 3rem;
}

.circular-visual-value {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.circular-visual-label {
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.25;
}

.circular-visual-tag {
  position: absolute;
  background: var(--white);
  padding: 0.5rem 1rem;
  border: 1px solid var(--primary);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.circular-visual-tag.top {
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.circular-visual-tag.bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
}

.circular-visual-tag.left {
  left: 0;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.circular-visual-tag.right {
  right: 0;
  top: 50%;
  transform: translateX(50%) translateY(-50%);
}

/* Impact Stats Section */
.impact-stats-section {
  padding: 6rem 0;
  background: var(--primary);
  color: var(--white);
}

.impact-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .impact-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .impact-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.impact-stat {
  transition: all 0.5s;
}

.impact-stat-line {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
  transition: background 0.5s;
}

.impact-stat:hover .impact-stat-line {
  background: var(--secondary);
}

.impact-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.impact-stat-value {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.impact-stat-desc {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(148, 163, 184, 1);
}

/* Excellence Section */
.excellence-content {
  max-width: 48rem;
  margin: 0 auto;
}

.excellence-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.excellence-desc {
  color: var(--secondary);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 3rem;
}

.excellence-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.excellence-tag {
  padding: 1rem 2rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

/* ===================================
   Contact Page Styles
   =================================== */

.contact-page-grid {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

@media (min-width: 1024px) {
  .contact-page-grid {
    flex-direction: row;
  }
}

.contact-page-info {
  width: 100%;
}

@media (min-width: 1024px) {
  .contact-page-info {
    width: 33.333%;
  }
}

.contact-page-form {
  width: 100%;
}

@media (min-width: 1024px) {
  .contact-page-form {
    width: 66.667%;
  }
}

.contact-page-details {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.contact-page-detail-group h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-emails {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-email {
  transition: all 0.3s;
}

.contact-email-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 0.5rem;
}

.contact-email:hover .contact-email-label {
  color: var(--primary);
}

.contact-email-value {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary);
}

.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--secondary);
}

.contact-hour {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--slate-100);
  padding-bottom: 0.5rem;
}

.contact-hour-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
}

.contact-registry {
  padding: 2rem;
  background: var(--slate-50);
  border-left: 4px solid var(--primary);
}

.contact-registry-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.contact-registry-text {
  color: var(--secondary);
  font-size: 0.875rem;
}

.global-presence {
  padding: 6rem 0;
}

.global-presence-card {
  height: 24rem;
  background: var(--slate-100);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--slate-200);
}

.global-presence-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background: radial-gradient(circle at center, var(--primary) 1px, transparent 1px);
  background-size: 40px 40px;
}

.global-presence-content {
  position: relative;
  z-index: 10;
  padding: 3rem;
  background: var(--white);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.global-presence-title {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.global-presence-desc {
  color: var(--secondary);
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 16rem;
}

/* ===================================
   Utility Classes
   =================================== */

/* Text Alignment */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

/* Margin Top */
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }
.mt-32 { margin-top: 8rem; }

/* Margin Bottom */
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-24 { margin-bottom: 6rem; }

/* Padding Y */
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }

/* Padding Top */
.pt-6 { padding-top: 1.5rem; }
.pt-12 { padding-top: 3rem; }
.pt-20 { padding-top: 5rem; }
.pt-24 { padding-top: 6rem; }
.pt-32 { padding-top: 8rem; }
.pt-40 { padding-top: 10rem; }

/* Padding Bottom */
.pb-6 { padding-bottom: 1.5rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }
.pb-32 { padding-bottom: 8rem; }

/* Max Width */
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }

/* Margin Auto */
.mx-auto { margin-left: auto; margin-right: auto; }

/* Padding X */
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }

/* Padding */
.p-8 { padding: 2rem; }

/* Gap */
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Flex */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

/* Z-Index */
.z-10 { z-index: 10; }
.z-0 { z-index: 0; }

/* Inset */
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* Width & Height */
.w-full { width: 100%; }
.h-full { height: 100%; }

/* Min Height */
.min-h-screen { min-height: 100vh; }

/* Border Radius */
.rounded-sm { border-radius: 2px; }
.rounded-full { border-radius: 9999px; }

/* Shadow */
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Text Transform */
.uppercase { text-transform: uppercase; }

/* Font Weight */
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }

/* Font Size */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }

/* Text Color */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-white { color: var(--white); }
.text-slate-300 { color: var(--slate-300); }
.text-slate-400 { color: var(--slate-400); }
.text-slate-500 { color: var(--slate-500); }
.text-slate-600 { color: #475569; }

/* Background Color */
.bg-slate-50 { background-color: var(--slate-50); }
.bg-white { background-color: var(--white); }
.bg-primary { background-color: var(--primary); }

/* Border */
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-l { border-left-width: 1px; }
.border-r { border-right-width: 1px; }
.border-b { border-bottom-width: 1px; }

/* Border Color */
.border-slate-100 { border-color: var(--slate-100); }
.border-slate-200 { border-color: var(--slate-200); }
.border-primary { border-color: var(--primary); }
.border-secondary { border-color: var(--secondary); }
.border-white { border-color: var(--white); }

/* Combined border width and color classes */
.border-t-2-primary { border-top: 2px solid var(--primary); }
.border-t-2-secondary { border-top: 2px solid var(--secondary); }

.border-l-4-primary { border-left: 4px solid var(--primary); }
.border-r-4-primary { border-right: 4px solid var(--primary); }
.border-4-primary { border: 4px solid var(--primary); }
.border-4-white { border: 4px solid var(--white); }

/* Display */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

/* Letter Spacing */
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-widest { letter-spacing: 0.1em; }

/* Opacity */
.text-primary\/20 { color: rgba(38, 34, 98, 0.2); }

/* Line Height */
.leading-relaxed { line-height: 1.75; }

/* Position utilities */
.left-1\/2 { left: 50%; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }

/* Size utilities */
.w-12 { width: 3rem; }
.h-1 { height: 1px; }
.h-12 { height: 3rem; }

/* Width utilities */
.w-px { width: 1px; }

/* Border width */
.border-t-2 { border-top-width: 2px; }

/* Responsive utilities */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-row-reverse { flex-direction: row-reverse; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-8xl { font-size: 5rem; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:p-16 { padding: 4rem; }
  .md\:p-20 { padding: 5rem; }
  .md\:block { display: block; }
  .md\:w-1\/2 { width: 50%; }
}

@media (min-width: 1024px) {
  .lg\:flex-row { flex-direction: row; }
  .lg\:flex-row-reverse { flex-direction: row-reverse; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:w-1\/2 { width: 50%; }
  .lg\:w-1\/3 { width: 33.333%; }
  .lg\:w-2\/3 { width: 66.667%; }
}
