/* CSS Custom Properties - Color Palette from Inspirations */
:root {
  /* Main Colors from inspirations/colors_main.jpeg */
  --dark-teal: #0d1d25;
  --teal: #104c64;
  --light-grey: #c6c8d0;
  --peach: #d59d80;
  --orange-light: #c0754d;
  --orange-main: #b6410f;

  /* Additional Colors from inspirations/colors_addons.jpeg */
  --orange-primary: #f44a22;
  --midnight: #161616;
  --silver: #fef8e8;
  --grey: #e4e2e3;
  --stone: #a8aaac;

  /* Typography */
  --font-primary: "Inter", sans-serif;
  --font-display: "Playfair Display", serif;
  --font-arabic: "Cairo", sans-serif;
  --font-arabic-display: "Cairo", sans-serif;
  --font-arabic-modern: "Cairo", sans-serif;

  /* Spacing - Compact and Elegant */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 0.75rem;
  --spacing-lg: 1rem;
  --spacing-xl: 1.5rem;
  --spacing-2xl: 2rem;
  --spacing-3xl: 2.5rem;
  --spacing-4xl: 3rem;

  /* Shadows - Modern and Shiny */
  --shadow-sm: 0 2px 8px rgba(13, 29, 37, 0.08);
  --shadow-md: 0 4px 20px rgba(13, 29, 37, 0.12);
  --shadow-lg: 0 8px 32px rgba(13, 29, 37, 0.16);
  --shadow-xl: 0 16px 64px rgba(13, 29, 37, 0.2);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --transition-fast: 0.2s ease-out;
  --transition-normal: 0.3s ease-out;
  --transition-slow: 0.5s ease-out;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dark-teal);
  background-color: var(--silver);
  overflow-x: hidden;
  height: 100vh;
}

/* RTL Support for Arabic */
[dir="rtl"] {
  font-family: var(--font-arabic) !important;
  text-align: right;
  letter-spacing: 0.5px;
}

[dir="rtl"] * {
  font-family: var(--font-arabic) !important;
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] h5,
[dir="rtl"] h6 {
  font-family: var(--font-arabic-display) !important;
  font-weight: 700;
  letter-spacing: 0.8px;
  word-spacing: 1.5px;
  line-height: 1.4;
}

[dir="rtl"] .hero-text,
[dir="rtl"] .hero-text * {
  font-family: var(--font-arabic) !important;
  font-weight: 600;
  letter-spacing: 0.6px;
  word-spacing: 1.2px;
}

[dir="rtl"] .nav-links,
[dir="rtl"] .nav-links * {
  font-family: var(--font-arabic) !important;
  font-weight: 600;
  letter-spacing: 0.8px;
}

[dir="rtl"] p,
[dir="rtl"] span,
[dir="rtl"] div,
[dir="rtl"] label,
[dir="rtl"] button {
  font-family: var(--font-arabic) !important;
  letter-spacing: 0.3px;
  word-spacing: 1px;
  line-height: 1.7;
}

[dir="ltr"] h1,
[dir="ltr"] h2 {
  font-family: var(--font-display);
}

[dir="rtl"] .nav-container {
  flex-direction: row-reverse;
}

/* [dir="rtl"] .nav-links {
  flex-direction: row-reverse;
} */
@media (min-width: 768px) {
  [dir="rtl"] .nav-links {
    flex-direction: row-reverse;
  }
}

[dir="rtl"] .nav-language-toggle {
  padding-left: 0;
  padding-right: var(--spacing-md);
  border-left: none;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

[dir="rtl"] .nav.scrolled .nav-language-toggle {
  border-right-color: rgba(13, 29, 37, 0.15);
  border-left: none;
}

[dir="rtl"] .logo {
  flex-direction: row-reverse;
}

[dir="rtl"] .hero-content {
  flex-direction: row-reverse;
}

[dir="rtl"] .about-content {
  flex-direction: row-reverse;
}

[dir="rtl"] .contact-content {
  flex-direction: row-reverse;
}

/* Navigation Language Toggle */
.nav-language-toggle {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-left: var(--spacing-sm);
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(13, 29, 37, 0.15);
  padding: 4px 8px;
  border-radius: var(--radius-xs);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.75rem;
  color: white;
  transition: all var(--transition-fast);
  min-width: 30px;
  text-align: center;
}

.lang-btn.active {
  background: var(--orange-primary);
  color: white;
  border-color: var(--orange-primary);
}

.lang-btn:hover:not(.active) {
  background: rgba(244, 74, 34, 0.1);
  color: var(--orange-primary);
  border-color: var(--orange-primary);
}

/* Navigation */
.nav {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  transition: all var(--transition-normal);
  width: auto;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-color: rgba(13, 29, 37, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav.scrolled .nav-language-toggle .lang-btn {
  color: var(--dark-teal);
  border-color: rgba(13, 29, 37, 0.15);
}

.nav-container {
  padding: 0 var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark-teal);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: all var(--transition-normal);
}

.logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition-normal);
}

.logo span {
  font-weight: 800;
  font-size: 1rem;
  color: white;
  white-space: nowrap;
}



.logo:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  transition: all var(--transition-fast);
}

.logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition-normal);
  filter: brightness(0) invert(1);
}

/* Logo color when navbar is scrolled (solid background) */
.nav.scrolled .logo {
  color: var(--dark-teal);
  text-shadow: none;
}

.nav.scrolled .logo img {
  filter: none;
}

.nav.scrolled .logo span {
  color: var(--dark-teal);
}

.nav.scrolled .logo:hover {
  color: var(--orange-primary);
}

.nav-links {
  display: flex;
  gap: var(--spacing-md);
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  padding: var(--spacing-xs) var(--spacing-sm);
  transition: all var(--transition-fast);
  letter-spacing: 0.2px;
}

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

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active::after {
  width: 100%;
}

.nav.scrolled .nav-links a {
  color: var(--dark-teal);
}

.nav-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark-teal);
  transition: all var(--transition-fast);
}

/* Hero Section - Fashion Magazine Style */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 0;
  padding-top: 0;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(13, 29, 37, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(244, 74, 34, 0.1) 100%
  );
  z-index: 5;
}

.hero-container {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(1.1) contrast(1.1);
}

.hero-image-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(244, 74, 34, 0.3) 0%,
    rgba(13, 29, 37, 0.6) 100%
  );
  z-index: 2;
}

.placeholder-content {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  z-index: 3;
  position: relative;
}

.placeholder-icon {
  font-size: 6rem;
  margin-bottom: var(--spacing-md);
  opacity: 0.6;
}

.placeholder-content span {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(13, 29, 37, 0.65) 0%,
    rgba(16, 76, 100, 0.55) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.hero-text {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  color: white;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-block;
  background: rgba(244, 74, 34, 0.9);
  color: white;
  padding: var(--spacing-xs) var(--spacing-lg);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-lg);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-text h1 {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 0;
  color: white;
  text-transform: uppercase;
  letter-spacing: -2px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.hero-subtitle {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 300;
  line-height: 0.9;
  margin-bottom: var(--spacing-xl);
  color: white;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-highlight {
  color: var(--orange-primary) !important;
}

.hero-subtitle:hover .hero-highlight {
  color: white !important;
}

.hero-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
  max-width: 500px;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  margin-top: var(--spacing-xl);
}

.btn-primary,
.btn-secondary {
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--orange-primary);
  color: white;
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  background: var(--orange-light);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: white;
  color: var(--dark-teal);
  transform: translateY(-3px);
}

/* Featured Services Section - EXPLOSIVE VISUAL MADNESS */
.featured-services-explosion {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(
    145deg,
    #ff6b35 0%,
    #f7931e 25%,
    #ffd23f 50%,
    #ff6b35 75%,
    #e94e77 100%
  );
  position: relative;
  overflow: hidden;
  min-height: auto;
}

.featured-services-explosion::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 90% 80%, rgba(0, 0, 0, 0.1) 0%, transparent 50%),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 107, 53, 0.2) 0%,
      transparent 60%
    );
  z-index: 1;
}

/* Explosive Header */
.featured-header-insane {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 10;
}

.explosion-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: linear-gradient(
    135deg,
    var(--orange-primary),
    var(--orange-light),
    var(--peach)
  );
  color: white;
  padding: var(--spacing-xs) var(--spacing-lg);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-lg);
  box-shadow:
    0 15px 35px rgba(244, 74, 34, 0.4),
    inset 0 2px 0px rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  position: relative;
  animation: badge-explosion 3s ease-in-out infinite;
}

@keyframes badge-explosion {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
  }

  50% {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.6);
  }
}

.badge-spark {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--peach);
  border-radius: 50%;
  animation: spark-explode 2s linear infinite;
}

.spark-1 {
  top: -5px;
  left: 20%;
  animation-delay: 0s;
}

.spark-2 {
  top: -5px;
  right: 20%;
  animation-delay: 0.5s;
}

.spark-3 {
  bottom: -5px;
  left: 30%;
  animation-delay: 1s;
}

.spark-4 {
  bottom: -5px;
  right: 30%;
  animation-delay: 1.5s;
}

@keyframes spark-explode {
  0% {
    transform: scale(0) translateY(0px);
    opacity: 0;
  }

  50% {
    transform: scale(1.5) translateY(-15px);
    opacity: 1;
  }

  100% {
    transform: scale(0) translateY(-30px);
    opacity: 0;
  }
}

.explosive-title-stack {
  margin-bottom: var(--spacing-lg);
}

.title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.title-number {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.3);
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.explosive-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 0.8;
  color: white;
  text-transform: uppercase;
  letter-spacing: -3px;
  margin: 0;
  text-shadow:
    3px 3px 0px rgba(0, 0, 0, 0.3),
    6px 6px 20px rgba(255, 107, 53, 0.5);
  animation: title-pulse 2s ease-in-out infinite alternate;
}

@keyframes title-pulse {
  from {
    text-shadow:
      3px 3px 0px rgba(0, 0, 0, 0.3),
      6px 6px 20px rgba(255, 107, 53, 0.5);
  }

  to {
    text-shadow:
      3px 3px 0px rgba(0, 0, 0, 0.3),
      6px 6px 30px rgba(255, 107, 53, 0.8),
      0 0 40px rgba(255, 215, 63, 0.4);
  }
}

.title-explosion {
  width: 80px;
  height: 6px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--peach),
    var(--orange-primary),
    transparent
  );
  border-radius: 3px;
  animation: explosion-sweep 1.5s linear infinite;
}

@keyframes explosion-sweep {
  0% {
    transform: translateX(-100px);
  }

  100% {
    transform: translateX(100px);
  }
}

.title-geometric-madness {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--orange-primary), var(--peach));
  transform: rotate(45deg);
  border-radius: 12px;
  animation: geometric-spin 4s linear infinite;
}

@keyframes geometric-spin {
  from {
    transform: rotate(45deg);
  }

  to {
    transform: rotate(405deg);
  }
}

.explosive-title-2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 0.8;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: -2px;
  margin: 0;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.title-accent-word {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: -1px;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.3);
}

.featured-subtitle-chaos {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.chaos-line {
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, white, transparent);
  margin: 0 auto var(--spacing-md) auto;
  animation: chaos-flow 2s linear infinite;
}

@keyframes chaos-flow {
  0% {
    transform: translateX(-100px);
  }

  100% {
    transform: translateX(100px);
  }
}

.featured-subtitle-chaos p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.chaos-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.chaos-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--peach);
  border-radius: 50%;
  animation: particle-chaos 3s ease-in-out infinite;
}

.cp-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.cp-2 {
  top: 80%;
  left: 80%;
  animation-delay: 1s;
}

.cp-3 {
  top: 60%;
  left: 20%;
  animation-delay: 2s;
}

.cp-4 {
  top: 30%;
  left: 90%;
  animation-delay: 1.5s;
}

@keyframes particle-chaos {
  0%,
  100% {
    transform: scale(1) translateY(0px);
    opacity: 0.7;
  }

  50% {
    transform: scale(2) translateY(-20px);
    opacity: 1;
  }
}

/* Insane Services Showcase */
.services-showcase-madness {
  position: relative;
  z-index: 10;
}

.showcase-card-mega {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.3),
    0 10px 30px rgba(255, 107, 53, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-card-mega:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.4),
    0 20px 50px rgba(255, 107, 53, 0.4);
}

/* Visual Chaos Background */
.card-visual-chaos {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.chaos-bg-1,
.chaos-bg-2,
.chaos-bg-3 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.chaos-bg-1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, var(--orange-light), var(--peach));
  top: 20px;
  right: 20px;
  animation: chaos-float 6s ease-in-out infinite;
}

.chaos-bg-2 {
  width: 100px;
  height: 100px;
  background: var(--orange-primary);
  top: 150px;
  right: 100px;
  animation: chaos-float 4s ease-in-out infinite reverse;
}

.chaos-bg-3 {
  width: 80px;
  height: 80px;
  background: var(--peach);
  top: 300px;
  right: 50px;
  animation: chaos-float 5s ease-in-out infinite;
}

@keyframes chaos-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.float-element {
  position: absolute;
  font-size: 2rem;
  animation: float-crazy 4s ease-in-out infinite;
}

.fe-1 {
  top: 15%;
  left: 20%;
  animation-delay: 0s;
}

.fe-2 {
  top: 60%;
  left: 70%;
  animation-delay: 1s;
}

.fe-3 {
  top: 80%;
  left: 30%;
  animation-delay: 2s;
}

.fe-4 {
  top: 40%;
  left: 80%;
  animation-delay: 1.5s;
}

@keyframes float-crazy {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translateY(-25px) scale(1.3);
    opacity: 0.8;
  }
}

/* Showcase Content */
.showcase-content-explosive {
  padding: var(--spacing-xl);
  position: relative;
  z-index: 10;
}

.content-header-wild {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--spacing-lg);
}

.service-mega-icon {
  position: relative;
  width: 100px;
  height: 100px;
}

.icon-rings {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ring {
  position: absolute;
  border: 2px solid;
  border-radius: 50%;
  animation: ring-rotate 10s linear infinite;
}

.ring-1 {
  width: 100%;
  height: 100%;
  border-color: rgba(255, 107, 53, 0.3);
  animation-duration: 8s;
}

.ring-2 {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-color: rgba(255, 215, 63, 0.4);
  animation-duration: 6s;
  animation-direction: reverse;
}

.ring-3 {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  border-color: rgba(255, 0, 128, 0.5);
  animation-duration: 4s;
}

@keyframes ring-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.icon-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  z-index: 5;
}

.service-badges-crazy {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.badge-hot,
.badge-new,
.badge-trend {
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  animation: badge-glow 2s ease-in-out infinite alternate;
}

.badge-hot {
  background: linear-gradient(135deg, var(--orange-light), var(--orange-main));
  color: white;
}

.badge-new {
  background: linear-gradient(135deg, var(--peach), var(--orange-light));
  color: var(--dark-teal);
}

.badge-trend {
  background: linear-gradient(135deg, var(--orange-primary), var(--peach));
  color: white;
}

@keyframes badge-glow {
  from {
    box-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
  }

  to {
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
  }
}

.content-text-explosion {
  margin-bottom: var(--spacing-xl);
}

.showcase-mega-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: -2px;
}

.title-part-1 {
  color: var(--dark-teal);
  display: block;
}

.title-highlight-crazy {
  color: var(--orange-primary);
  position: relative;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.title-highlight-crazy::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--orange-primary),
    var(--peach),
    var(--teal)
  );
  border-radius: 2px;
  animation: highlight-flow 2s linear infinite;
}

@keyframes highlight-flow {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.showcase-description-wild {
  color: var(--stone);
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Crazy Stats Grid */
.stats-grid-explosive {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.stat-explosive {
  background: linear-gradient(
    135deg,
    rgba(244, 74, 34, 0.1),
    rgba(213, 157, 128, 0.1)
  );
  border: 2px solid rgba(244, 74, 34, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-explosive:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: rgba(244, 74, 34, 0.5);
  box-shadow: 0 10px 30px rgba(244, 74, 34, 0.3);
}

.stat-icon-wild {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
}

.stat-number-crazy {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange-primary);
  line-height: 1;
  margin-bottom: var(--spacing-xs);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.stat-label-mad {
  color: var(--stone);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.stat-spark-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--orange-primary),
    transparent
  );
  animation: spark-flow 3s linear infinite;
}

@keyframes spark-flow {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.stat-1 {
  border-left-color: var(--orange-primary);
}

.stat-2 {
  border-left-color: var(--peach);
}

.stat-3 {
  border-left-color: var(--teal);
}

.stat-4 {
  border-left-color: var(--orange-light);
}

/* CTA Explosion */
.showcase-cta-madness {
  text-align: center;
}

.btn-showcase-explosive {
  background: linear-gradient(
    135deg,
    var(--orange-primary) 0%,
    var(--orange-light) 50%,
    var(--teal) 100%
  );
  color: white;
  border: 3px solid rgba(255, 255, 255, 0.3);
  padding: var(--spacing-md) var(--spacing-2xl);
  border-radius: var(--radius-xl);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow:
    0 10px 30px rgba(244, 74, 34, 0.4),
    inset 0 2px 0px rgba(255, 255, 255, 0.3);
}

.btn-showcase-explosive:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow:
    0 20px 50px rgba(244, 74, 34, 0.6),
    inset 0 2px 0px rgba(255, 255, 255, 0.4);
}

.btn-spark-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.btn-spark {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--peach);
  border-radius: 50%;
  animation: btn-spark-fly 2s ease-in-out infinite;
}

.bs-1 {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.bs-2 {
  top: 80%;
  left: 80%;
  animation-delay: 0.5s;
}

.bs-3 {
  top: 50%;
  left: 90%;
  animation-delay: 1s;
}

@keyframes btn-spark-fly {
  0%,
  100% {
    transform: scale(0) translateY(0px);
    opacity: 0;
  }

  50% {
    transform: scale(3) translateY(-10px);
    opacity: 1;
  }
}

.btn-text-wild {
  position: relative;
  z-index: 10;
}

.btn-arrow-explosion {
  display: inline-block;
  margin-left: var(--spacing-sm);
  transform: translateX(0px);
  transition: transform 0.3s ease;
}

.btn-showcase-explosive:hover .btn-arrow-explosion {
  transform: translateX(10px);
}

/* Absolute Madness Background */
.featured-absolute-chaos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.chaos-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.orb-1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--peach), transparent);
  top: 10%;
  left: -5%;
  animation: orb-drift 20s linear infinite;
}

.orb-2 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--orange-primary), transparent);
  top: 70%;
  right: -5%;
  animation: orb-drift 15s linear infinite reverse;
}

.orb-3 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--orange-light), transparent);
  top: 40%;
  left: 80%;
  animation: orb-drift 25s linear infinite;
}

@keyframes orb-drift {
  0% {
    transform: translateX(0px) translateY(0px);
  }

  25% {
    transform: translateX(100px) translateY(-50px);
  }

  50% {
    transform: translateX(-50px) translateY(-100px);
  }

  75% {
    transform: translateX(-100px) translateY(50px);
  }

  100% {
    transform: translateX(0px) translateY(0px);
  }
}

.chaos-lightning {
  position: absolute;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--peach),
    var(--orange-primary),
    transparent
  );
  animation: lightning-strike 4s linear infinite;
}

.cl-1 {
  top: 30%;
  left: 0;
  right: 0;
  animation-delay: 0s;
}

.cl-2 {
  top: 70%;
  left: 0;
  right: 0;
  animation-delay: 2s;
}

@keyframes lightning-strike {
  0%,
  90%,
  100% {
    opacity: 0;
    transform: scaleX(0.5);
  }

  95% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.hero-banner-section {
  background: linear-gradient(135deg, var(--silver) 0%, white 100%);
  padding: var(--spacing-xl) var(--spacing-lg);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  margin-bottom: var(--spacing-lg);
}

.hero-banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(135deg, var(--orange-primary), var(--teal));
}

.banner-text-large {
  position: relative;
  z-index: 2;
  margin-left: var(--spacing-xl);
}

.banner-accent {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--orange-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-xs);
}

.banner-text-large h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 0.9;
  margin: 0;
  color: var(--midnight);
  text-transform: uppercase;
  letter-spacing: -1px;
}

.banner-subtitle {
  position: relative;
  z-index: 2;
  margin-left: var(--spacing-xl);
  font-size: 1.2rem;
  color: var(--stone);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: var(--spacing-sm);
}

.section-accent-line {
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--orange-primary) 0%,
    var(--teal) 50%,
    var(--dark-teal) 100%
  );
  border-radius: 2px;
  margin-top: var(--spacing-md);
}

.featured-badge {
  display: inline-block;
  background: var(--grey);
  color: var(--dark-teal);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-lg);
}

.featured-header h2 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 0;
  color: var(--dark-teal);
  text-transform: uppercase;
  letter-spacing: -2px;
}

.featured-subtitle {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 0.9;
  margin-bottom: var(--spacing-md);
  color: var(--orange-primary);
  text-transform: uppercase;
  letter-spacing: -1px;
}

.featured-header p {
  font-size: 1.2rem;
  color: var(--stone);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.services-showcase {
  max-width: 800px;
  margin: 0 auto;
}

.service-large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
}

.service-large:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-large:hover .service-featured-image {
  transform: scale(1.02);
}

.service-image {
  height: 300px;
  overflow: hidden;
}

.service-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--orange-primary) 0%,
    var(--teal) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-content {
  padding: var(--spacing-xl);
}

.service-content h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 0;
  color: var(--dark-teal);
  text-transform: uppercase;
  letter-spacing: -1px;
}

.service-subtitle {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 300;
  line-height: 0.9;
  margin-bottom: var(--spacing-md);
  color: var(--orange-primary);
  text-transform: uppercase;
}

.service-content p {
  color: var(--stone);
  font-size: 1rem;
  line-height: 1.6;
}

/* Removed background shapes for cleaner magazine-style layout */

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--dark-teal);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--stone);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section - CRAZY FANCY MODERN DESIGN */
.marketing-banner-section {
  padding: var(--spacing-4xl) 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.marketing-banner-card {
  background: linear-gradient(
    135deg,
    rgba(213, 157, 128, 0.08) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(182, 65, 15, 0.08) 100%
  );
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  gap: var(--spacing-4xl);
  padding: var(--spacing-3xl);
  border: 1px solid rgba(213, 157, 128, 0.2);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}

.marketing-banner-content {
  flex: 1.2;
}

.marketing-banner-visual {
  flex: 0.8;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--dark-teal);
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 0.9;
  margin: var(--spacing-md) 0;
}

.banner-title span {
  color: var(--orange-primary);
  display: block;
}

.banner-desc {
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
}

.banner-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 5;
}

@media (max-width: 992px) {
  .marketing-banner-card {
    flex-direction: column;
    padding: var(--spacing-xl);
    text-align: center;
    gap: var(--spacing-2xl);
  }
  
  .banner-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .marketing-banner-visual {
    order: -1;
  }
}

.services-section-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(244, 74, 34, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(16, 76, 100, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(213, 157, 128, 0.05) 0%,
      transparent 50%
    );
  z-index: 1;
}

/* Fashion Magazine Style Header */
.services-header-crazy {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 10;
}

.services-megabadge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: linear-gradient(135deg, var(--orange-primary), #e63916);
  color: white;
  padding: var(--spacing-xs) var(--spacing-lg);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
  box-shadow: 0 8px 32px rgba(244, 74, 34, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.services-title-stack {
  position: relative;
  margin-bottom: var(--spacing-md);
}

.services-mega-title {
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 900;
  line-height: 0.8;
  color: var(--dark-teal);
  text-transform: uppercase;
  letter-spacing: -4px;
  margin: 0;
  position: relative;
  text-shadow: 4px 4px 0px rgba(244, 74, 34, 0.2);
}

.title-accent-line {
  width: 200px;
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--orange-primary),
    var(--teal),
    var(--peach)
  );
  margin: -10px auto 10px auto;
  border-radius: 4px;
  transform: skew(-15deg);
  box-shadow: 0 4px 16px rgba(244, 74, 34, 0.3);
}

.services-mega-title-2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  line-height: 0.8;
  color: var(--orange-primary);
  text-transform: uppercase;
  letter-spacing: -2px;
  margin: 0;
  text-shadow: 2px 2px 0px rgba(13, 29, 37, 0.1);
}

.services-subtitle-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.subtitle-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--teal);
  opacity: 0.3;
  line-height: 1;
}

.services-subtitle-modern p {
  font-size: 1.2rem;
  color: var(--stone);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.subtitle-geometric {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, var(--orange-primary), var(--teal));
  transform: rotate(45deg);
  border-radius: 8px;
}

/* Crazy Modern Services Grid */
.services-grid-futuristic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-md);
  margin: var(--spacing-xl) 0;
  position: relative;
  z-index: 10;
}

.service-card-wide {
  grid-column: span 2;
}

@media (max-width: 992px) {
  .service-card-wide {
    grid-column: span 1;
  }
}

.service-card-modern {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-xl);
  padding: var(--spacing-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 1px 0px rgba(255, 255, 255, 0.8) inset,
    0 -1px 0px rgba(0, 0, 0, 0.05) inset;
}

.service-card-modern:hover {
  transform: translateY(-15px) rotateY(5deg);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.15),
    0 20px 40px rgba(244, 74, 34, 0.1);
  border-color: rgba(244, 74, 34, 0.3);
}

/* Gradient Backgrounds */
.gradient-teal {
  background: linear-gradient(
    135deg,
    rgba(16, 76, 100, 0.05) 0%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(13, 29, 37, 0.05) 100%
  );
}

.gradient-orange {
  background: linear-gradient(
    135deg,
    rgba(244, 74, 34, 0.05) 0%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(192, 117, 77, 0.05) 100%
  );
}

.gradient-peach {
  background: linear-gradient(
    135deg,
    rgba(213, 157, 128, 0.05) 0%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(182, 65, 15, 0.05) 100%
  );
}

.service-floating-number {
  position: absolute;
  top: -20px;
  right: var(--spacing-lg);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(244, 74, 34, 0.1);
  line-height: 1;
  z-index: 1;
}

/* Geometric Background Elements */
.service-geometric-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  overflow: hidden;
  opacity: 0.1;
  z-index: 2;
}

.geo-circle-1,
.geo-circle-2 {
  position: absolute;
  border-radius: 50%;
  background: var(--orange-primary);
}

.geo-circle-1 {
  width: 60px;
  height: 60px;
  top: 20px;
  right: 20px;
  animation: float 3s ease-in-out infinite;
}

.geo-circle-2 {
  width: 40px;
  height: 40px;
  top: 60px;
  right: 80px;
  background: var(--teal);
  animation: float 3s ease-in-out infinite reverse;
}

.geo-triangle {
  position: absolute;
  top: 90px;
  right: 30px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 26px solid var(--peach);
  animation: rotate 4s linear infinite;
}

.geo-hexagon,
.geo-diamond {
  position: absolute;
  background: var(--orange-primary);
}

.geo-hexagon {
  width: 50px;
  height: 50px;
  top: 30px;
  right: 40px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  animation: pulse 2s ease-in-out infinite;
}

.geo-diamond {
  width: 30px;
  height: 30px;
  top: 80px;
  right: 90px;
  transform: rotate(45deg);
  background: var(--teal);
  animation: bounce 2s ease-in-out infinite;
}

.geo-star {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: var(--peach);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  animation: twinkle 1.5s ease-in-out infinite alternate;
}

/* Service Card Content */
.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 10;
}

.service-icon-modern {
  font-size: 2.5rem;
  padding: var(--spacing-sm);
  background: linear-gradient(
    135deg,
    rgba(244, 74, 34, 0.1),
    rgba(16, 76, 100, 0.1)
  );
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-badge-new {
  background: var(--orange-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(244, 74, 34, 0.3);
  position: relative;
  overflow: hidden;
}

.service-badge-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 2s infinite;
}

.service-badge-new.popular {
  background: linear-gradient(135deg, #ff6b6b, #ff5252);
}

.service-badge-new.exclusive {
  background: linear-gradient(135deg, #9c27b0, #673ab7);
}

.service-card-modern h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark-teal);
  line-height: 1.1;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: -1px;
}

.title-highlight {
  color: var(--orange-primary);
  position: relative;
}

.title-highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--orange-primary),
    transparent
  );
  border-radius: 2px;
}

.service-card-modern p {
  color: var(--stone);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: var(--spacing-md);
  opacity: 0.8;
}

/* Modern Stats */
.service-stats-modern {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.stat-modern {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: rgba(244, 74, 34, 0.05);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(244, 74, 34, 0.1);
  transition: all 0.3s ease;
}

.stat-modern:hover {
  background: rgba(244, 74, 34, 0.1);
  transform: scale(1.05);
}

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

.stat-data strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--orange-primary);
  display: block;
  line-height: 1;
}

.stat-data span {
  font-size: 0.7rem;
  color: var(--stone);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* CTA Button */
.service-cta-modern {
  position: relative;
  z-index: 10;
}

.btn-explore {
  background: linear-gradient(135deg, var(--dark-teal), var(--teal));
  color: white;
  border: none;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.btn-explore::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-explore:hover::before {
  left: 100%;
}

.btn-explore:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 76, 100, 0.3);
}

/* Floating Visual Elements */
.services-visual-madness {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 100px;
  height: 100px;
  background: var(--orange-primary);
  top: 10%;
  left: 5%;
  animation: float 6s ease-in-out infinite;
}

.shape-2 {
  width: 60px;
  height: 60px;
  background: var(--teal);
  top: 70%;
  right: 10%;
  animation: float 4s ease-in-out infinite reverse;
}

.shape-3 {
  width: 80px;
  height: 80px;
  background: var(--peach);
  top: 40%;
  left: 90%;
  animation: float 5s ease-in-out infinite;
  transform: translateX(-100%);
}

.shape-4 {
  width: 120px;
  height: 120px;
  background: var(--light-grey);
  top: 20%;
  right: 30%;
  animation: float 7s ease-in-out infinite reverse;
}

/* Modern Statistics Banner */
.stats-banner-crazy {
  background: linear-gradient(
    135deg,
    var(--dark-teal) 0%,
    var(--midnight) 100%
  );
  padding: var(--spacing-xl) var(--spacing-lg);
  border-radius: var(--radius-xl);
  margin-top: var(--spacing-xl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(13, 29, 37, 0.3);
}

.stats-banner-crazy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(244, 74, 34, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(213, 157, 128, 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
}

.stats-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 10;
}

.stats-title span {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.stats-line {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-primary), var(--teal));
  margin: var(--spacing-sm) auto 0;
  border-radius: 2px;
}

.stats-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  position: relative;
  z-index: 10;
}

.stat-item-crazy {
  text-align: center;
  position: relative;
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-item-crazy:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.stat-number-big {
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange-primary);
  line-height: 1;
  margin-bottom: var(--spacing-xs);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label-modern {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-icon-bg {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  font-size: 1.5rem;
  opacity: 0.3;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0px) rotate(45deg);
  }

  50% {
    transform: translateY(-10px) rotate(45deg);
  }
}

@keyframes twinkle {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* RTL Language Support for Modern Services */
[dir="rtl"] .services-grid-futuristic {
  direction: rtl;
}

[dir="rtl"] .service-card-modern {
  direction: ltr;
}

[dir="rtl"] .services-subtitle-modern {
  flex-direction: row-reverse;
}

[dir="rtl"] .service-stats-modern {
  flex-direction: row-reverse;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-lg);
  display: block;
}

.service-content h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--dark-teal);
  line-height: 1.2;
}

.service-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--stone);
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
}

.service-stats {
  display: flex;
  gap: var(--spacing-lg);
}

.service-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--spacing-md);
  background: rgba(244, 74, 34, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(244, 74, 34, 0.1);
  min-width: 80px;
}

.service-stats .stat strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange-primary);
  margin-bottom: 2px;
}

.service-stats .stat span {
  font-size: 0.8rem;
  color: var(--stone);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 400px;
  box-shadow: var(--shadow-lg);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.service-item:hover .service-image img {
  transform: scale(1.05);
}

.service-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(244, 74, 34, 0.1) 0%,
    rgba(16, 76, 100, 0.1) 100%
  );
  transition: all var(--transition-normal);
}

.service-item:hover .service-image-overlay {
  background: linear-gradient(
    135deg,
    rgba(244, 74, 34, 0.2) 0%,
    rgba(16, 76, 100, 0.2) 100%
  );
}

/* About Section - CRAZY FANCY MODERN */
.about-modern {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(
    145deg,
    var(--silver) 0%,
    white 20%,
    #fef8f5 40%,
    var(--silver) 80%,
    white 100%
  );
  position: relative;
  overflow: hidden;
  min-height: auto;
}

.about-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(244, 74, 34, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(16, 76, 100, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(213, 157, 128, 0.03) 0%,
      transparent 60%
    );
  z-index: 1;
}

/* About Header */
.about-header-crazy {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 10;
}

.about-floating-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: linear-gradient(135deg, var(--teal), #2a6f85);
  color: white;
  padding: var(--spacing-xs) var(--spacing-lg);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-lg);
  box-shadow: 0 10px 30px rgba(16, 76, 100, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.badge-pulse {
  animation: pulse 2s ease-in-out infinite alternate;
}

.about-title-madness {
  position: relative;
  margin-bottom: var(--spacing-lg);
}

.about-mega-title {
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 900;
  line-height: 1;
  color: var(--dark-teal);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin: 0;
  text-shadow: 3px 3px 0px rgba(13, 29, 37, 0.1);
}

.about-title-accent {
  width: 150px;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--teal),
    var(--orange-primary),
    var(--peach)
  );
  margin: -8px auto 8px auto;
  border-radius: 3px;
  transform: skew(-10deg);
  box-shadow: 0 4px 15px rgba(16, 76, 100, 0.3);
}

.about-mega-title-2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  line-height: 1;
  color: var(--orange-primary);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin: 0;
  text-shadow: 2px 2px 0px rgba(244, 74, 34, 0.1);
}

.about-geometric-element {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--orange-primary), var(--teal));
  transform: rotate(45deg);
  margin: var(--spacing-md) auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(244, 74, 34, 0.3);
}

/* About Content Layout */
.about-content-futuristic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  position: relative;
  z-index: 10;
  align-items: start;
}

/* About Text Card */
.about-text-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  margin-bottom: var(--spacing-xl);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.featured-product {
  background: linear-gradient(
    135deg,
    rgba(16, 76, 100, 0.1),
    rgba(244, 74, 34, 0.1)
  );
  border: 2px solid rgba(16, 76, 100, 0.3);
  box-shadow: 0 25px 50px rgba(16, 76, 100, 0.2);
}

.remaining-products {
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid rgba(213, 157, 128, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.about-cards-with-stats {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--spacing-xl);
  align-items: stretch;
}

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

.subproducts {
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid rgba(102, 51, 153, 0.3); /* Purple accent */
  box-shadow: 0 15px 30px rgba(102, 51, 153, 0.1);
}

.about-text-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-card-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  overflow: hidden;
  opacity: 0.1;
}



.about-subtitle-modern {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.about-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange-primary);
  opacity: 0.3;
  line-height: 1;
}

.about-subtitle-modern h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-teal);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin: 0;
}

.about-description-fancy {
  font-size: 1.1rem;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  position: relative;
  padding-left: var(--spacing-md);
}

.about-description-fancy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange-primary), var(--teal));
  border-radius: 2px;
}

/* Achievement Badges */
.achievement-badges {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.badge-achievement {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: linear-gradient(
    135deg,
    rgba(244, 74, 34, 0.1),
    rgba(16, 76, 100, 0.1)
  );
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(244, 74, 34, 0.2);
  transition: all 0.3s ease;
}

.badge-achievement:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(244, 74, 34, 0.2);
}

.badge-icon {
  font-size: 1.5rem;
}

.badge-text strong {
  display: block;
  font-weight: 600;
  color: var(--dark-teal);
  font-size: 0.9rem;
  line-height: 1;
}

.badge-text span {
  font-size: 0.75rem;
  color: var(--stone);
  text-transform: uppercase;
  font-weight: 500;
}

/* Modern Stats Dashboard */
.stats-dashboard-modern {
  /* background: linear-gradient(135deg, var(--dark-teal) 0%, var(--midnight) 100%); */
  /* background: linear-gradient(111deg, #068AEAE3 0%, #f44a22 70%); */
  background: linear-gradient(111deg, #216379 0%, #f44a22 70%);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(13, 29, 37, 0.3);
}

.stats-dashboard-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(244, 74, 34, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(213, 157, 128, 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 10;
}

.dashboard-title span {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.dashboard-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-primary), var(--teal));
  margin-top: var(--spacing-xs);
  border-radius: 2px;
}

.dashboard-indicator {
  font-size: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

.stats-grid-crazy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 10;
}

.stat-card-modern {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  overflow: hidden;
}

.stat-card-modern:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-floating-icon {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  font-size: 1.2rem;
  opacity: 0.6;
}

.stat-number-crazy {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange-primary);
  line-height: 1;
  margin-bottom: var(--spacing-xs);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label-fancy {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

.stat-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange-primary), var(--teal));
  border-radius: 2px;
  animation: progressFill 2s ease-out;
}

@keyframes progressFill {
  from {
    width: 0%;
  }

  to {
    width: var(--progress-width, 100%);
  }
}

.stat-primary {
  border-left: 4px solid var(--orange-primary);
}

.stat-secondary {
  border-left: 4px solid var(--teal);
}

.stat-accent {
  border-left: 4px solid var(--peach);
}

.stat-highlight {
  border-left: 4px solid var(--orange-light);
}

/* Vision Card */
.vision-card-modern {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
}

.vision-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.vision-badge {
  background: linear-gradient(135deg, var(--orange-primary), #e63916);
  color: white;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vision-geometric {
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, var(--teal), var(--orange-primary));
  transform: rotate(45deg);
  border-radius: 6px;
}

.vision-text-fancy {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

/* Floating Chaos Elements */
.about-visual-chaos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.chaos-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.chaos-1 {
  width: 120px;
  height: 120px;
  background: var(--orange-primary);
  top: 15%;
  left: 8%;
  animation: float 7s ease-in-out infinite;
}

.chaos-2 {
  width: 80px;
  height: 80px;
  background: var(--teal);
  top: 60%;
  right: 15%;
  animation: float 5s ease-in-out infinite reverse;
}

.chaos-3 {
  width: 60px;
  height: 60px;
  background: var(--peach);
  top: 80%;
  left: 20%;
  animation: float 6s ease-in-out infinite;
}

.chaos-4 {
  width: 100px;
  height: 100px;
  background: var(--light-grey);
  top: 25%;
  right: 40%;
  animation: float 8s ease-in-out infinite reverse;
}

/* Products Redesign */
#products .about-content-futuristic {
  display: block;
}

.featured-product-big {
  background: linear-gradient(145deg, #1a4a5e 0%, #d64228 100%) !important;
  display: flex;
  flex-direction: column;
  padding: var(--spacing-xl) !important;
  height: 100%;
}

.smaller-products-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.smaller-products-container .dashboard-title span {
  color: var(--dark-teal) !important;
}

.smaller-products-container .dashboard-line {
  background: var(--dark-teal) !important;
  opacity: 0.2;
}

.smaller-cards-stack {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: var(--spacing-lg);
  flex: 1;
}

.product-small-card {
  margin-bottom: 0 !important;
  padding: var(--spacing-lg) !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-product-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.featured-badge-modern {
  font-size: 4rem;
  font-weight: 900;
  color: white;
  opacity: 0.15;
  position: absolute;
  top: -20px;
  right: 0;
  line-height: 1;
}

.featured-title-fancy {
  color: white;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.featured-description-fancy {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: var(--spacing-lg);
  max-width: 95%;
}

.featured-image-container {
  position: relative;
  margin: var(--spacing-md) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  flex: 1;
  min-height: 250px;
}

.featured-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.img-glow-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.1), transparent);
  pointer-events: none;
}

.featured-stats-minimal {
  display: flex;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

/* SVG Icon Styles in Product Cards */
.card-bg-icon-svg {
  width: 100%;
  height: 100%;
  opacity: 0.05;
  filter: grayscale(1);
  transition: all 0.5s ease;
}

.product-small-card:hover .card-bg-icon-svg {
  opacity: 0.1;
  transform: rotate(-10deg) scale(1.2);
  filter: grayscale(0);
}

.badge-icon-svg {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* --- Dedicated Product Section Styles --- */

.products-wrapper-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--spacing-xl);
  align-items: stretch;
}

@media (max-width: 992px) {
  .products-wrapper-grid {
    display: flex;
    flex-direction: column;
    height: auto !important;
  }
}

.product-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  padding: var(--spacing-lg);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.product-card-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  overflow: hidden;
  opacity: 0.1;
  pointer-events: none;
}

.product-card-content {
  position: relative;
  z-index: 5;
}

.product-card-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.product-card-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange-primary);
  opacity: 0.3;
  line-height: 1;
}

.product-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-teal);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin: 0;
}

.product-card:hover .card-bg-icon-svg {
  opacity: 0.1;
  transform: rotate(-10deg) scale(1.2);
  filter: grayscale(0);
}

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

.stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange-primary);
  line-height: 1;
}

.stat-lab {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-explore-modern {
  background: white;
  color: var(--dark-teal);
  border: none;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: 50px;
  font-weight: 800;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-explore-modern:hover {
  transform: translateY(-3px);
  background: var(--orange-primary);
  color: white;
  box-shadow: 0 15px 40px rgba(244, 74, 34, 0.4);
}

.small-card-desc {
  font-size: 0.95rem;
  color: var(--stone);
  margin-bottom: var(--spacing-md);
  opacity: 0.8;
}

.small-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(244, 74, 34, 0.1);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--orange-primary);
  font-weight: 600;
}

/* Responsive adjustments for Products */
@media (max-width: 992px) {
  .about-cards-with-stats {
    display: flex;
    flex-direction: column;
    height: auto !important;
  }

  .featured-product-big {
    width: 100%;
    min-height: auto !important;
    padding: var(--spacing-lg) !important;
  }
  
  .featured-image-container {
    height: 300px;
    min-height: 250px;
  }

  .smaller-cards-stack {
    grid-template-rows: auto;
    gap: var(--spacing-md);
  }
}

/* ==========================================
   PRODUCTS SECTION - UNIQUE DESIGN
   ========================================== */

.products-section {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #fffcf5 50%,
    #fff8f0 100%
  );
  position: relative;
  overflow: hidden;
}

.products-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 10% 30%, rgba(255, 152, 0, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 70%, rgba(76, 175, 80, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 10%, rgba(214, 66, 40, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Products Header */
.products-header {
  text-align: center;
  margin-bottom: var(--spacing-xl); /* Minimized from 3xl */
  position: relative;
  z-index: 10;
}

.products-floating-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(10px);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: var(--spacing-md);
  color: #4a5568; /* Darker for light bg */
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.products-floating-badge .badge-glow {
  width: 8px;
  height: 8px;
  background: var(--orange-primary);
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--orange-primary); }
  50% { opacity: 0.5; box-shadow: 0 0 20px var(--orange-primary); }
}

.products-mega-title {
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 900;
  color: var(--dark-teal); /* Consistent color */
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1;
  margin: 0;
  text-shadow: 3px 3px 0px rgba(13, 29, 37, 0.1); /* Signature shadow */
}

.products-section-desc {
  color: #4a5568; /* Solid dark gray for light background */
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.products-mega-title span {
  color: var(--orange-primary); /* Solid color instead of gradient */
  text-shadow: 2px 2px 0px rgba(244, 74, 34, 0.1);
}

.products-title-accent {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-primary), #ff6b4a);
  margin: var(--spacing-lg) auto;
  border-radius: 2px;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: stretch;
  position: relative;
  z-index: 10;
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Featured Product Card */
.product-featured-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: var(--spacing-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.product-featured-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(214, 66, 40, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.product-featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(214, 66, 40, 0.4);
}

.product-featured-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-xs); /* Minimal spacing */
  padding: var(--spacing-sm) var(--spacing-md) 0;
}

.product-featured-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-featured-number {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
}

.product-featured-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a2a3a;
  margin-bottom: var(--spacing-xs);
  padding: 0 var(--spacing-md);
  line-height: 1.1;
}

.product-featured-desc {
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.4; /* Slightly tighter line height */
  margin-bottom: var(--spacing-sm); /* Minimized from md */
  padding: 0 var(--spacing-md);
}

.product-featured-image {
  height: 250px; /* Controlled height for minimal look */
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  margin-bottom: var(--spacing-md);
}

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

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

.product-featured-stats {
  display: flex;
  gap: var(--spacing-xl);
  padding: 0 var(--spacing-md);
}

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

.product-stat-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange-primary);
}

.product-stat-label {
  font-size: 0.75rem;
  color: #718096; /* Darker gray for visibility */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-featured-cta {
  margin-top: auto;
  padding: var(--spacing-md) var(--spacing-md) var(--spacing-md);
}

.btn-product-explore {
  background: linear-gradient(90deg, var(--orange-primary), #ff6b4a);
  color: white;
  border: none;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(214, 66, 40, 0.3);
}

.btn-product-explore:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(214, 66, 40, 0.5);
}

/* Secondary Products Stack */
.products-secondary-stack {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm); /* Minimized gap */
}

.products-secondary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-xs); /* Minimized margin */
}

.products-secondary-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #718096; /* Darker gray */
  letter-spacing: 2px;
  text-transform: uppercase;
}

.products-secondary-line {
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.1); /* Darker line */
  margin-left: var(--spacing-md);
}

.products-cards-stack {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  flex: 1;
}

/* Secondary Product Card */
.product-secondary-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: var(--spacing-xs);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: row;
  gap: var(--spacing-sm);
  align-items: center;
}

.product-secondary-image-sm {
  width: 100px; /* Small image column */
  height: 100px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05); /* Placeholder background */
}

.product-secondary-image-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.product-secondary-main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-secondary-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  opacity: 0.05;
  pointer-events: none;
}

.product-secondary-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(5px);
  border-color: rgba(214, 66, 40, 0.3);
}

.product-secondary-card .card-icon-bg {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 80px;
  height: 80px;
  opacity: 0.08;
  transition: all 0.4s ease;
}

.product-secondary-card:hover .card-icon-bg {
  opacity: 0.15;
  transform: rotate(-10deg) scale(1.1);
}

.product-secondary-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange-primary);
  opacity: 0.4;
  line-height: 1;
  margin-right: var(--spacing-md);
}

.product-secondary-header-inner {
  display: flex;
  align-items: center;
  padding: var(--spacing-sm) var(--spacing-md) 0;
}

.product-secondary-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a2a3a;
  margin: 0;
}

.product-secondary-desc {
  font-size: 0.9rem;
  color: #718096;
  line-height: 1.3; /* Tighter line height */
  margin: 2px 0 0; /* Minimal top margin */
  padding: 0 var(--spacing-md);
}

.product-secondary-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--spacing-md);
  padding: 0 var(--spacing-md) var(--spacing-sm);
}

.product-secondary-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(214, 66, 40, 0.2);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  color: var(--orange-primary);
  font-weight: 600;
}

/* Sub-items List Styles */
.product-sub-items {
  list-style: none;
  padding: 0 var(--spacing-md);
  margin: var(--spacing-sm) 0 0; /* Minimized from md */
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
}

.sub-item-tag {
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4a5568;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 6px;
}

.sub-item-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  background: rgba(255, 255, 255, 0.15);
}

/* Color Varieties for Tags */
.sub-item-tag.v-green {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}
.sub-item-tag.v-green:hover {
  background: #dcfce7;
  border-color: #86efac;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
}

.sub-item-tag.v-orange {
  background: #fff7ed;
  border-color: #ffedd5;
  color: #9a3412;
}
.sub-item-tag.v-orange:hover {
  background: #ffedd5;
  border-color: #fed7aa;
  box-shadow: 0 4px 12px rgba(255, 112, 67, 0.15);
}

.sub-item-tag.v-gold {
  background: #fefce8;
  border-color: #fef08a;
  color: #854d0e;
}
.sub-item-tag.v-gold:hover {
  background: #fef9c3;
  border-color: #fde047;
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.15);
}

.sub-item-tag.v-amber {
  background: #fdfaf9;
  border-color: #f3e8e2;
  color: #5d4037;
}
.sub-item-tag.v-amber:hover {
  background: #f3e8e2;
  border-color: #e7d1c5;
  box-shadow: 0 4px 12px rgba(121, 85, 72, 0.15);
}

.btn-more-products {
  background: none;
  border: none;
  color: var(--orange-primary);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: var(--spacing-xs);
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.btn-more-products:hover {
  opacity: 1;
}

.product-sub-items-container {
  padding: 0 var(--spacing-md);
  margin-top: var(--spacing-sm);
}

.product-secondary-badge img {
  width: 14px;
  height: 14px;
}

/* ==========================================
   SOLUTIONS SECTION - NEW UNIQUE DESIGN
   ========================================== */

.solutions-section {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(
    180deg,
    var(--silver) 0%,
    white 30%,
    #f8f9fa 60%,
    white 100%
  );
  position: relative;
  overflow: hidden;
}

.solutions-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 80%, rgba(26, 74, 94, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(214, 66, 40, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

/* Solutions Header */
.solutions-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  position: relative;
  z-index: 10;
}

.solutions-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: linear-gradient(135deg, rgba(26, 74, 94, 0.1), rgba(214, 66, 40, 0.1));
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 50px;
  border: 1px solid rgba(26, 74, 94, 0.2);
  margin-bottom: var(--spacing-lg);
  color: var(--dark-teal);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.solutions-badge::before,
.solutions-badge::after {
  content: "◆";
  font-size: 0.5rem;
  color: var(--orange-primary);
}

.solutions-mega-title {
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 900;
  color: var(--dark-teal);
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 1;
  margin: 0;
}

.solutions-mega-title span {
  background: linear-gradient(90deg, var(--orange-primary), #ff6b4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solutions-subtitle {
  font-size: 1.1rem;
  color: var(--stone);
  max-width: 600px;
  margin: var(--spacing-lg) auto 0;
  line-height: 1.6;
}

/* Solutions Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}

/* Solution Card */
.solution-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(26, 74, 94, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--dark-teal), var(--orange-primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.solution-card:hover::before {
  transform: scaleX(1);
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.solution-icon-container {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(26, 74, 94, 0.1), rgba(214, 66, 40, 0.1));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
  overflow: hidden;
}

.solution-icon-container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-teal), var(--orange-primary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solution-card:hover .solution-icon-container::after {
  opacity: 0.1;
}

.solution-icon-container img {
  width: 48px;
  height: 48px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.solution-card:hover .solution-icon-container img {
  transform: scale(1.1);
}

.solution-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark-teal);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.solution-description {
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

.solution-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.solution-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(26, 74, 94, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--dark-teal);
  font-weight: 600;
}

.solution-feature-tag::before {
  content: "✓";
  color: var(--orange-primary);
  font-weight: 700;
}

/* Floating background decoration for solutions */
.solutions-bg-decoration {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26, 74, 94, 0.05), rgba(214, 66, 40, 0.05));
  filter: blur(80px);
  pointer-events: none;
}

.solutions-bg-decoration.deco-1 {
  top: -100px;
  left: -100px;
}

.solutions-bg-decoration.deco-2 {
  bottom: -100px;
  right: -100px;
}

/* Contact Section - CRAZY FUTURISTIC with BASE COLORS */
.contact-futuristic {
  padding: var(--spacing-md) 0;
  background: linear-gradient(
    145deg,
    var(--silver) 0%,
    white 20%,
    #f0f8ff 40%,
    var(--silver) 80%,
    white 100%
  );
  position: relative;
  overflow: hidden;
  min-height: auto;
}

.contact-futuristic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(244, 74, 34, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 60%,
      rgba(16, 76, 100, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(213, 157, 128, 0.05) 0%,
      transparent 50%
    );
  z-index: 1;
}

/* Futuristic Header */
.contact-header-madness {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 10;
}

.contact-floating-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: linear-gradient(135deg, var(--orange-primary), var(--teal));
  color: white;
  padding: var(--spacing-xs) var(--spacing-lg);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-lg);
  box-shadow:
    0 10px 30px rgba(244, 74, 34, 0.3),
    inset 0 1px 0px rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(16, 76, 100, 0.5);
  backdrop-filter: blur(10px);
}

.contact-pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--orange-light);
  border-radius: 50%;
  animation: cyberpunk-pulse 1.5s ease-in-out infinite alternate;
  box-shadow: 0 0 10px var(--orange-light);
}

@keyframes cyberpunk-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px var(--orange-light);
  }

  100% {
    transform: scale(1.3);
    box-shadow:
      0 0 20px var(--orange-light),
      0 0 30px var(--peach);
  }
}

.contact-title-explosion {
  position: relative;
  margin-bottom: var(--spacing-lg);
}

.contact-mega-title {
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 900;
  line-height: 0.8;
  color: var(--orange-primary);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin: 0;
  text-shadow:
    1px 1px 0 rgba(0, 0, 0, 0.1),
    2px 2px 8px rgba(244, 74, 34, 0.2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Removed neon-flicker animation for cleaner text */

.contact-lightning-bolt {
  width: 200px;
  height: 8px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--orange-primary) 25%,
    var(--teal) 50%,
    var(--orange-light) 75%,
    transparent 100%
  );
  margin: -10px auto 10px auto;
  border-radius: 4px;
  transform: skew(-20deg);
  box-shadow:
    0 0 10px var(--orange-primary),
    0 4px 20px rgba(244, 74, 34, 0.3);
  animation: lightning-flow 2s linear infinite;
}

@keyframes lightning-flow {
  0% {
    background-position: -200px;
  }

  100% {
    background-position: 200px;
  }
}

.contact-mega-title-2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  line-height: 0.8;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: -2px;
  margin: 0;
  text-shadow:
    0 0 10px var(--teal),
    0 0 20px var(--dark-teal);
}

.contact-subtitle-modern {
  color: var(--dark-teal);
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 600px;
  margin: var(--spacing-sm) auto 0;
  line-height: 1.6;
}

/* Contact Content Layout */
.contact-content-cyberpunk {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  position: relative;
  z-index: 10;
}

/* Contact Info Matrix */
.contact-info-matrix {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xs);
}

.contact-card-cyber {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 76, 100, 0.2);
  border-radius: var(--radius-md);
  padding: var(--spacing-sm);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--spacing-sm);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  cursor: pointer;
}

.contact-card-cyber:hover {
  transform: translateY(-8px) translateX(5px);
  border-color: rgba(244, 74, 34, 0.6);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(244, 74, 34, 0.3);
}

.contact-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--orange-primary),
    transparent
  );
  animation: card-scan 3s linear infinite;
}

@keyframes card-scan {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.contact-icon-futuristic {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(16, 76, 100, 0.2),
    rgba(244, 74, 34, 0.2)
  );
  border: 2px solid rgba(244, 74, 34, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  position: relative;
  animation: icon-rotate 10s linear infinite;
}

@keyframes icon-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.icon-orbit {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(244, 74, 34, 0.3);
  border-radius: 50%;
  top: -10px;
  left: -10px;
  animation: orbit 8s linear infinite reverse;
}

@keyframes orbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.contact-card-content h4 {
  color: var(--orange-primary);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 2px 0;
}

.contact-address {
  color: var(--dark-teal);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.3;
}

.contact-action-btn {
  background: linear-gradient(
    135deg,
    rgba(244, 74, 34, 0.2),
    rgba(16, 76, 100, 0.2)
  );
  color: var(--orange-primary);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(244, 74, 34, 0.5);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.contact-action-btn:hover {
  background: rgba(244, 74, 34, 0.3);
  box-shadow: 0 0 15px rgba(244, 74, 34, 0.5);
  transform: translateX(5px);
}

.contact-card-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--orange-light);
  border-radius: 50%;
  opacity: 0.6;
}

.p1 {
  top: 20%;
  left: 80%;
  animation: float-particle 4s ease-in-out infinite;
}

.p2 {
  top: 60%;
  left: 20%;
  animation: float-particle 3s ease-in-out infinite reverse;
}

.p3 {
  top: 80%;
  left: 90%;
  animation: float-particle 5s ease-in-out infinite;
}

@keyframes float-particle {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.5);
  }
}

/* Status Card */
.contact-status-card {
  background: linear-gradient(111deg, #216379 0%, #f44a22 70%);
  border: 1px solid rgba(213, 157, 128, 0.5);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.contact-status-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(111deg, #216379 0%, #f44a22 70%);
  border-radius: var(--radius-md);
}

.status-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: status-pulse 2s ease-in-out infinite;
}

.status-indicator.online {
  background: var(--peach);
  box-shadow: 0 0 10px var(--peach);
}

@keyframes status-pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.status-header span {
  color: var(--peach);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-metrics {
  display: flex;
  justify-content: space-between;
}

.metric {
  text-align: center;
}

.metric-label {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.metric-value {
  color: var(--orange-primary);
  font-size: 1rem;
  font-weight: 700;
}

/* Futuristic Contact Form */
.contact-form-matrix {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(16, 76, 100, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--spacing-md);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

.contact-form-matrix::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(16, 76, 100, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(244, 74, 34, 0.05) 0%,
      transparent 50%
    );
  z-index: 1;
}

.form-header-cyber {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 10;
}

.form-title span {
  color: var(--teal);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.form-scanner {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  margin-top: var(--spacing-xs);
  animation: form-scan 2s linear infinite;
}

@keyframes form-scan {
  0% {
    transform: translateX(-100px);
  }

  100% {
    transform: translateX(100px);
  }
}

.form-status {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--peach);
  box-shadow: 0 0 10px var(--peach);
  animation: pulse 2s ease-in-out infinite;
}

.form-status span {
  color: var(--peach);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-cyberpunk {
  position: relative;
  z-index: 10;
}

.form-grid-modern {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.form-field-cyber {
  position: relative;
  margin-bottom: var(--spacing-sm);
  padding-top: var(--spacing-md);
}

.form-field-wide {
  grid-column: span 2;
}

.field-scanner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--orange-primary),
    transparent
  );
  animation: field-scan 3s linear infinite;
  z-index: 5;
}

@keyframes field-scan {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

.form-field-cyber input,
.form-field-cyber textarea {
  width: 100%;
  padding: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(16, 76, 100, 0.3);
  border-radius: var(--radius-sm);
  color: var(--dark-teal);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.form-field-cyber input:focus,
.form-field-cyber textarea:focus {
  outline: none;
  border-color: var(--orange-primary);
}

.form-field-cyber label {
  position: absolute;
  left: var(--spacing-sm);
  top: var(--spacing-sm);
  color: var(--teal);
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 3;
}

.form-field-cyber input:focus + label,
.form-field-cyber input:not(:placeholder-shown) + label,
.form-field-cyber textarea:focus + label,
.form-field-cyber textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 2px;
  font-size: 0.75rem;
  background: none;
  padding: 0;
  color: var(--orange-primary);
  border-radius: 0;
  border: none;
  font-weight: 600;
}

.field-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-sm);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.form-field-cyber input:focus ~ .field-glow,
.form-field-cyber textarea:focus ~ .field-glow {
  opacity: 0;
}

.form-actions-cyber {
  text-align: center;
  margin-top: var(--spacing-md);
}

/* Floating label class for JavaScript */
.floating {
  top: -8px !important;
  left: 2px !important;
  font-size: 0.75rem !important;
  color: var(--orange-primary) !important;
  font-weight: 600 !important;
}

/* Light Additional About Content */

.company-info-light {
  margin-top: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.info-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.info-badge {
  background: var(--orange-primary);
  color: white;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

.info-item p {
  color: var(--dark-teal);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

.why-choose-light {
  margin-top: var(--spacing-lg);
  padding: var(--spacing-md);
  background: rgba(244, 74, 34, 0.03);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--orange-primary);
}

.why-choose-light h4 {
  color: var(--orange-primary);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 var(--spacing-sm) 0;
}

.choose-points {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.choose-point {
  color: var(--dark-teal);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.choose-point::before {
  content: "✓";
  color: var(--orange-primary);
  font-weight: bold;
}

/* Remove old heavy content */
.story-section-modern {
  margin-top: var(--spacing-xl);
  padding: var(--spacing-lg);
  background: rgba(244, 74, 34, 0.05);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--orange-primary);
}

.story-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.story-badge {
  background: linear-gradient(135deg, var(--orange-primary), var(--peach));
  color: white;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-timeline-dot {
  width: 12px;
  height: 12px;
  background: var(--orange-primary);
  border-radius: 50%;
  position: relative;
}

.story-timeline-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid var(--orange-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s ease-in-out infinite;
}

.story-content p {
  color: var(--dark-teal);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* Our Values Section */
.values-section-modern {
  margin-top: var(--spacing-xl);
}

.values-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.values-badge {
  background: linear-gradient(135deg, var(--teal), var(--orange-primary));
  color: white;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(16, 76, 100, 0.2);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.value-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(16, 76, 100, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--orange-primary),
    var(--peach),
    var(--teal)
  );
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(244, 74, 34, 0.15);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

.value-card h4 {
  color: var(--orange-primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.value-card p {
  color: var(--dark-teal);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Our Expertise Section */
.expertise-section-modern {
  margin-top: var(--spacing-xl);
}

.expertise-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.expertise-badge {
  background: linear-gradient(135deg, var(--dark-teal), var(--teal));
  color: white;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(13, 29, 37, 0.2);
}

.expertise-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.expertise-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  border: 1px solid rgba(16, 76, 100, 0.1);
  transition: all 0.3s ease;
}

.expertise-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(10px);
  border-color: var(--orange-primary);
}

.expertise-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--orange-primary), var(--peach));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 4px 15px rgba(244, 74, 34, 0.3);
}

.expertise-content h5 {
  color: var(--orange-primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 var(--spacing-xs) 0;
}

.expertise-content p {
  color: var(--dark-teal);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .expertise-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-md);
  }

  .expertise-item:hover {
    transform: translateY(-5px);
  }
}

.btn-cyber-submit {
  background: linear-gradient(
    135deg,
    rgba(244, 74, 34, 0.8),
    rgba(16, 76, 100, 0.8)
  );
  color: white;
  border: 2px solid rgba(16, 76, 100, 0.7);
  padding: var(--spacing-md) var(--spacing-2xl);
  border-radius: var(--radius-lg);
  font-family: "Courier New", monospace;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(16, 76, 100, 0.4);
}

.btn-cyber-submit:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(244, 74, 34, 0.6);
  border-color: var(--orange-primary);
}

.btn-scanner {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-cyber-submit:hover .btn-scanner {
  left: 100%;
}

.btn-particles {
  position: absolute;
  top: 50%;
  right: var(--spacing-md);
  transform: translateY(-50%);
}

.btn-particle {
  width: 3px;
  height: 3px;
  background: var(--teal);
  border-radius: 50%;
  position: absolute;
  animation: btn-particle-float 2s ease-in-out infinite;
}

.btn-particle:nth-child(1) {
  animation-delay: 0s;
}

.btn-particle:nth-child(2) {
  animation-delay: 0.5s;
  left: 8px;
}

.btn-particle:nth-child(3) {
  animation-delay: 1s;
  left: 16px;
}

@keyframes btn-particle-float {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-10px) scale(1.5);
    opacity: 1;
  }
}

/* Cyberpunk Visual Chaos */
.contact-cyber-chaos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.cyber-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(16, 76, 100, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 76, 100, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

.cyber-shape {
  position: absolute;
  opacity: 0.1;
}

.cyber-1 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, var(--orange-primary), transparent);
  top: 20%;
  left: 10%;
  transform: rotate(45deg);
  animation: cyber-spin 15s linear infinite;
}

.cyber-2 {
  width: 60px;
  height: 60px;
  background: var(--teal);
  border-radius: 50%;
  top: 70%;
  right: 20%;
  animation: cyber-pulse 3s ease-in-out infinite;
}

.cyber-3 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent, var(--orange-primary));
  top: 50%;
  right: 50%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: cyber-bounce 4s ease-in-out infinite;
}

@keyframes cyber-spin {
  from {
    transform: rotate(45deg);
  }

  to {
    transform: rotate(405deg);
  }
}

@keyframes cyber-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px var(--teal);
  }

  50% {
    transform: scale(1.2);
    box-shadow: 0 0 40px var(--teal);
  }
}

@keyframes cyber-bounce {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.cyber-lightning {
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--orange-primary),
    var(--teal),
    var(--orange-primary),
    transparent
  );
  animation: lightning-strike 4s linear infinite;
}

@keyframes lightning-strike {
  0%,
  90%,
  100% {
    opacity: 0;
  }

  95% {
    opacity: 1;
  }
}

/* Footer */
/* Footer - CRAZY FUTURISTIC TERMINAL */
.footer {
  background: linear-gradient(
    145deg,
    var(--dark-teal) 0%,
    var(--teal) 20%,
    var(--midnight) 40%,
    var(--dark-teal) 60%,
    var(--teal) 100%
  );
  color: white;
  position: relative;
  overflow: hidden;
  border-top: 3px solid;
  border-image: linear-gradient(
      90deg,
      transparent,
      var(--teal),
      var(--orange-primary),
      var(--teal),
      transparent
    )
    1;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(16, 76, 100, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(244, 74, 34, 0.05) 0%,
      transparent 50%
    ),
    linear-gradient(0deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--orange-primary),
    var(--teal),
    var(--orange-primary),
    transparent
  );
  animation: footer-scan 3s linear infinite;
  z-index: 5;
}

@keyframes footer-scan {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: var(--spacing-md);
  padding: var(--spacing-lg) 0;
  border-bottom: 1px solid rgba(244, 74, 34, 0.1);
  position: relative;
  z-index: 10;
}

.footer-brand {
  grid-column: span 1;
  position: relative;
}

.footer-brand::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(
    45deg,
    rgba(16, 76, 100, 0.1),
    transparent,
    rgba(244, 74, 34, 0.1)
  );
  border-radius: var(--radius-lg);
  z-index: -1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.footer-logo img {
  height: 45px;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px var(--orange-primary));
  animation: logo-glow 3s ease-in-out infinite alternate;
}

@keyframes logo-glow {
  from {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px var(--orange-primary));
  }

  to {
    filter: brightness(0) invert(1) drop-shadow(0 0 20px var(--orange-primary))
      drop-shadow(0 0 30px var(--peach));
  }
}

.footer-logo h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--orange-primary);
  text-shadow:
    0 0 10px var(--orange-primary),
    0 0 20px var(--orange-light);
  font-family: "Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: text-flicker 4s ease-in-out infinite;
}

@keyframes text-flicker {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }

  75% {
    opacity: 0.9;
  }
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: var(--spacing-md);
  font-size: 0.9rem;
  font-family: "Courier New", monospace;
  border-left: 3px solid var(--teal);
  padding-left: var(--spacing-sm);
  background: rgba(16, 76, 100, 0.05);
  padding: var(--spacing-sm);
  border-radius: var(--radius-sm);
}

.footer-certifications {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--spacing-xs) var(--spacing-sm);
  background: rgba(16, 76, 100, 0.1);
  border: 1px solid rgba(16, 76, 100, 0.3);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  font-family: "Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.cert-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 76, 100, 0.3),
    transparent
  );
  animation: cert-scan 3s linear infinite;
}

@keyframes cert-scan {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.footer-products h4,
.footer-sectors h4,
.footer-contact h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--orange-primary);
  font-family: "Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  text-shadow: 0 0 10px var(--orange-primary);
}

.footer-products h4::after,
.footer-sectors h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-primary), var(--teal));
  animation: underline-glow 2s ease-in-out infinite alternate;
}

@keyframes underline-glow {
  from {
    box-shadow: 0 0 5px var(--orange-primary);
  }

  to {
    box-shadow:
      0 0 15px var(--orange-primary),
      0 0 25px var(--teal);
  }
}

.footer-products ul,
.footer-sectors ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-products li,
.footer-sectors li {
  margin-bottom: var(--spacing-xs);
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding-left: var(--spacing-md);
  font-size: 0.85rem;
  font-family: "Courier New", monospace;
  transition: all 0.3s ease;
}

.footer-products li:hover,
.footer-sectors li:hover {
  color: var(--orange-primary);
  transform: translateX(5px);
  text-shadow: 0 0 5px var(--orange-primary);
}

.footer-products li::before,
.footer-sectors li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--orange-primary);
  font-weight: bold;
  animation: arrow-blink 2s ease-in-out infinite;
}

@keyframes arrow-blink {
  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0.5;
  }
}

.footer-products a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-products a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange-primary);
  transition: width 0.3s ease;
}

.footer-products a:hover {
  color: var(--orange-primary);
  text-shadow: 0 0 5px var(--orange-primary);
}

.footer-products a:hover::after {
  width: 100%;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.contact-item-footer {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  background: rgba(16, 76, 100, 0.05);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--teal);
  margin-bottom: var(--spacing-xs);
  transition: all 0.3s ease;
}

.contact-item-footer:hover {
  background: rgba(16, 76, 100, 0.1);
  transform: translateX(5px);
}

.contact-icon-footer {
  font-size: 1.2rem;
  margin-top: 2px;
  color: var(--orange-primary);
  animation: icon-pulse 3s ease-in-out infinite;
}

@keyframes icon-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.contact-item-footer strong {
  display: block;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0px;
  font-family: "Courier New", monospace;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.contact-item-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-family: "Courier New", monospace;
}

.contact-item-footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.contact-item-footer a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange-primary);
  transition: width 0.3s ease;
}

.contact-item-footer a:hover {
  color: var(--orange-primary);
  text-shadow: 0 0 5px var(--orange-primary);
}

.contact-item-footer a:hover::after {
  width: 100%;
}

.footer-middle {
  display: none;
}

.footer-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  text-align: center;
}

.stat-item-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange-primary);
  line-height: 1;
  font-family: "Courier New", monospace;
  text-shadow:
    0 0 10px var(--orange-primary),
    0 0 20px var(--orange-light);
  animation: stat-glow 2s ease-in-out infinite alternate;
}

@keyframes stat-glow {
  from {
    text-shadow:
      0 0 10px var(--orange-primary),
      0 0 20px var(--orange-light);
  }

  to {
    text-shadow:
      0 0 15px var(--orange-primary),
      0 0 30px var(--orange-light),
      0 0 40px var(--peach);
  }
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-family: "Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-bottom {
  padding: var(--spacing-md) 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-legal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: var(--spacing-lg);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--orange-primary);
}

.footer-vision {
  max-width: 400px;
  text-align: right;
}

.vision-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    top: 20px;
    width: auto;
    min-width: auto;
    max-width: 95%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
  }

  .nav.scrolled {
    width: auto;
    min-width: auto;
    max-width: 95%;
  }

  .nav-container {
    padding: 0 var(--spacing-md);
    height: 50px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(244, 74, 34, 0.1);
    flex-direction: column;
    gap: var(--spacing-xs);
    padding: var(--spacing-md);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-language-toggle {
    margin-left: 0;
    margin-top: var(--spacing-sm);
    justify-content: center;
    border-top: 1px solid rgba(13, 29, 37, 0.1);
    padding-top: var(--spacing-sm);
  }

  .nav-menu-toggle {
    display: flex;
    background: rgba(244, 74, 34, 0.05);
    border-radius: 8px;
    padding: 8px;
    border: 1px solid rgba(244, 74, 34, 0.1);
  }

  .nav-menu-toggle:hover {
    background: rgba(244, 74, 34, 0.1);
  }

  .hero-text {
    text-align: center;
    padding: 0 var(--spacing-md);
  }

  .hero-text h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .hero-subtitle {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .service-banner {
    height: 280px;
  }

  .banner-content {
    max-width: 85%;
    padding: var(--spacing-lg);
  }

  .banner-content h3 {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
  }

  .banner-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .banner-stats {
    flex-direction: column;
    gap: var(--spacing-xs);
  }

  .stat-item {
    font-size: 0.85rem;
    padding: 6px 12px;
  }

  .grid-banner {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
  }

  .service-large {
    grid-template-columns: 1fr;
  }

  /* Featured Services Explosive Responsive */
  .featured-services-explosion {
    min-height: auto;
    padding: var(--spacing-md) 0;
  }

  .explosion-badge {
    font-size: 0.65rem;
    padding: var(--spacing-xs) var(--spacing-md);
  }

  .explosive-title {
    font-size: clamp(2rem, 6vw, 4rem);
  }

  .explosive-title-2 {
    font-size: clamp(1.5rem, 4vw, 3rem);
  }

  .title-accent-word {
    font-size: clamp(1rem, 3vw, 2rem);
  }

  .showcase-card-mega {
    margin: 0 var(--spacing-sm);
  }

  .showcase-content-explosive {
    padding: var(--spacing-lg);
  }

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

  .btn-showcase-explosive {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.9rem;
  }

  .services-grid-futuristic {
    grid-template-columns: 1fr;
  }

  .about-content-futuristic {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-lg);
  }

  .about-text-card {
    padding: var(--spacing-lg);
  }

  .stats-dashboard-modern {
    padding: var(--spacing-lg);
  }

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

  .achievement-badges {
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-content-cyberpunk {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .form-grid-modern {
    grid-template-columns: 1fr;
  }

  .form-field-wide {
    grid-column: span 1;
  }

  .contact-form-matrix {
    padding: var(--spacing-lg);
  }

  .btn-cyber-submit {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 0.9rem;
  }

  .stats {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    text-align: center;
  }

  .footer-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-vision {
    text-align: center;
    max-width: none;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
  }

  .nav-language-toggle {
    margin-left: var(--spacing-sm);
    gap: 2px;
  }

  .lang-btn {
    padding: 3px 6px;
    font-size: 0.65rem;
    min-width: 26px;
  }

  .featured-header h2 {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .featured-subtitle {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  .nav-links a {
    width: 100%;
    text-align: center;
  }

  .container {
    padding: 0 var(--spacing-md);
  }

  .hero-text {
    padding: 0 var(--spacing-sm);
  }

  .contact-form {
    padding: var(--spacing-lg);
  }

  .services-grid {
    gap: var(--spacing-md);
  }

  .service-item {
    margin-bottom: var(--spacing-lg);
  }
}

/* Advanced Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

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

@keyframes textGlow {
  0%,
  100% {
    text-shadow: 0 0 5px rgba(244, 74, 34, 0.3);
  }

  50% {
    text-shadow:
      0 0 20px rgba(244, 74, 34, 0.6),
      0 0 30px rgba(244, 74, 34, 0.4);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* SIMPLIFIED ENTRANCE ANIMATIONS */
.hero-text {
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

.hero-text h1 {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-subtitle {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.hero-buttons {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.hero-badge {
  opacity: 0;
  animation: scaleIn 0.6s ease-out 0.1s forwards;
}

.hero-accent-bar {
  opacity: 0;
  width: 0;
  animation: expandWidth 1s ease-out 1s forwards;
}

@keyframes expandWidth {
  to {
    opacity: 1;
    width: 120px;
  }
}

.service-item {
  animation: fadeInUp 0.8s ease-out both;
}

.service-item:nth-child(1) {
  animation-delay: 0.2s;
}

.service-item:nth-child(2) {
  animation-delay: 0.4s;
}

.service-item:nth-child(3) {
  animation-delay: 0.6s;
}

.service-large {
  animation: slideInRight 0.8s ease-out 0.2s both;
}

.contact-item {
  animation: slideInLeft 0.6s ease-out both;
}

.contact-item:nth-child(1) {
  animation-delay: 0.1s;
}

.contact-item:nth-child(2) {
  animation-delay: 0.2s;
}

.contact-item:nth-child(3) {
  animation-delay: 0.3s;
}

/* CRAZY INTERACTIVE ANIMATIONS & EFFECTS */

/* Simplified Hero Text Effects */
.hero-text h1:hover {
  color: var(--orange-primary);
  text-shadow: 0 0 15px rgba(244, 74, 34, 0.3);
  transform: translateY(-2px);
  transition: all 0.3s ease;
  cursor: default;
}

/* Simplified Service Card Hover */
.service-card-modern:hover {
  transform: translateY(-5px) scale(1.02);
  transition: all 0.3s ease;
}

/* Simplified Hero Badge Effects */
.hero-badge:hover {
  background: linear-gradient(
    45deg,
    var(--orange-primary),
    var(--peach),
    var(--teal)
  );
  border: 2px solid white;
  transform: scale(1.05);
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(244, 74, 34, 0.4);
}

/* Simplified Button Effects */
.btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--peach),
    var(--orange-primary),
    var(--teal)
  );
  transform: translateY(-3px);
  box-shadow:
    0 10px 25px rgba(244, 74, 34, 0.3),
    0 0 20px rgba(244, 74, 34, 0.4);
  transition: all 0.3s ease;
}

/* Mouse Trail Effect */
body {
  position: relative;
  overflow-x: hidden;
}

/* Cursor Enhancements with base colors - Keep normal cursor */
a,
button,
input,
textarea {
  cursor: pointer;
}

/* Simplified hover effects */
a:hover,
button:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}

/* Scroll Progress Indicator */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--orange-primary),
    var(--peach),
    var(--teal)
  );
  z-index: 10000;
  transform-origin: left;
  animation: progress-glow 3s ease-in-out infinite;
}

@keyframes progress-glow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(244, 74, 34, 0.5);
  }

  50% {
    box-shadow:
      0 0 20px rgba(244, 74, 34, 0.8),
      0 0 30px rgba(16, 76, 100, 0.4);
  }
}

/* Page Loading Animation */
body.loading::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--midnight), var(--dark-teal));
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loading-fade 2s ease-out forwards;
}

@keyframes loading-fade {
  0% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    pointer-events: none;
  }
}

/* Parallax Background Elements */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(244, 74, 34, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(16, 76, 100, 0.1) 0%,
      transparent 50%
    );
  z-index: 3;
  animation: parallax-drift 20s linear infinite;
}

@keyframes parallax-drift {
  0% {
    transform: translateX(0px) translateY(0px);
  }

  25% {
    transform: translateX(50px) translateY(-30px);
  }

  50% {
    transform: translateX(-30px) translateY(-60px);
  }

  75% {
    transform: translateX(-50px) translateY(30px);
  }

  100% {
    transform: translateX(0px) translateY(0px);
  }
}

/* Text Selection Styling */
::selection {
  background: linear-gradient(45deg, var(--orange-primary), var(--peach));
  color: white;
}

::-moz-selection {
  background: linear-gradient(45deg, var(--orange-primary), var(--peach));
  color: white;
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    var(--orange-primary),
    var(--peach),
    var(--teal)
  );
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    var(--peach),
    var(--orange-primary),
    var(--teal)
  );
}

/* Removed complex typewriter effect - using simple fade in instead */

/* Matrix Rain Effect */
.services-section-modern::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 98px,
      rgba(0, 255, 0, 0.03) 100px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 98px,
      rgba(0, 255, 0, 0.03) 100px
    );
  animation: matrix-rain 10s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes matrix-rain {
  0% {
    transform: translateY(-100px);
  }

  100% {
    transform: translateY(100px);
  }
}

/* Simplified Heading Effects */
.services-mega-title:hover,
.about-mega-title:hover,
.contact-mega-title:hover {
  transform: translateY(-2px);
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(244, 74, 34, 0.3);
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-primary), var(--peach));
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(244, 74, 34, 0.3);
}

.fab:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 30px rgba(244, 74, 34, 0.5);
  animation: fab-bounce 0.6s ease-out;
}

@keyframes fab-bounce {
  0%,
  100% {
    transform: translateY(-5px) scale(1.1);
  }

  50% {
    transform: translateY(-8px) scale(1.15);
  }
}

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Modern Services Section Responsive */
@media (max-width: 968px) {
  .services-grid-futuristic {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
  }

  .services-mega-title {
    font-size: clamp(3rem, 8vw, 6rem);
  }

  .services-mega-title-2 {
    font-size: clamp(2rem, 6vw, 4rem);
  }
}

@media (max-width: 768px) {
  .services-section-modern {
    padding: var(--spacing-lg) 0;
    min-height: auto;
  }

  .services-grid-futuristic {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .service-card-modern {
    padding: var(--spacing-md);
  }

  .service-floating-number {
    font-size: 3rem;
    top: -10px;
    right: var(--spacing-md);
  }

  .services-subtitle-modern {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }

  .subtitle-number {
    font-size: 2rem;
  }

  .services-subtitle-modern p {
    font-size: 1rem;
  }

  .stats-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }

  .stat-number-big {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .services-section-modern {
    padding: var(--spacing-md) 0;
  }

  .services-megabadge {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.65rem;
  }

  .services-mega-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .services-mega-title-2 {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .title-accent-line {
    width: 120px;
    height: 6px;
  }

  .service-card-modern {
    padding: var(--spacing-sm);
  }

  .service-card-modern h3 {
    font-size: 1.3rem;
  }

  .service-stats-modern {
    flex-direction: column;
    gap: var(--spacing-xs);
  }

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

  .stats-banner-crazy {
    padding: var(--spacing-lg) var(--spacing-sm);
    margin-top: var(--spacing-lg);
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    var(--orange-primary),
    var(--orange-main)
  );
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8) translateY(20px);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  will-change: transform, opacity;
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, var(--orange-main), var(--dark-teal));
  transform: scale(1.1) translateY(0);
  box-shadow: var(--shadow-xl);
}

.scroll-to-top:active {
  transform: scale(0.95) translateY(0);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  transition: transform var(--transition-fast);
}

.scroll-to-top:hover svg {
  transform: translateY(-2px);
}

/* RTL support for scroll-to-top */
[dir="rtl"] .scroll-to-top {
  right: auto;
  left: 2rem;
}

/* Floating Quick Actions */
.floating-quick-actions {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  z-index: 1000;
  pointer-events: none;
}

.quick-action-btn {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Alignment starts from the icon */
  padding: 0 13px; /* Precise padding to center 24px icon in 50px width */
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  width: 50px;
  height: 50px;
  white-space: nowrap;
}

.quick-action-btn svg {
  flex-shrink: 0;
  width: 24px;
}

.quick-action-btn:hover {
  width: 160px;
  transform: scale(1.05) translateY(-5px);
  padding: 0 20px;
}

.quick-action-btn .btn-label {
  opacity: 0;
  max-width: 0;
  margin-left: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  display: inline-block;
  overflow: hidden;
}

.quick-action-btn:hover .btn-label {
  opacity: 1;
  max-width: 100px;
  margin-left: 10px;
  transform: translateX(0);
}

.call-btn {
  background: linear-gradient(135deg, var(--dark-teal), var(--teal));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.call-btn:hover {
  box-shadow: 0 15px 35px rgba(16, 76, 100, 0.4);
}

.whatsapp-btn:hover {
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* RTL support for floating actions */
[dir="rtl"] .floating-quick-actions {
  left: auto;
  right: 2rem;
}

/* Mobile adjustments for floating actions */
@media (max-width: 768px) {
  .floating-quick-actions {
    bottom: 1.5rem;
    left: 1.5rem;
  }
  
  [dir="rtl"] .floating-quick-actions {
    right: 1.5rem;
  }
  
  .quick-action-btn {
    width: 45px;
    height: 45px;
    padding: 10px;
  }
  
  .quick-action-btn:hover {
    width: 45px; /* Stay circular on mobile for better usability */
  }
  
  .quick-action-btn .btn-label {
    display: none;
  }
}

/* Performance optimizations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Hardware acceleration for smooth animations */
.floating-shape,
.chaos-shape,
.shape,
.service-card-modern,
.contact-card-cyber,
.hero-bg-image {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* Pause animations when page is not visible */
.paused * {
  animation-play-state: paused !important;
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  .scroll-to-top {
    transition: all var(--transition-normal);
  }
}

/* Reduce motion preferences */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-to-top {
    transition: opacity 0.01ms;
  }
}

/* Mobile scroll-to-top adjustments */
@media (max-width: 768px) {
  .scroll-to-top {
    width: 48px;
    height: 48px;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  [dir="rtl"] .scroll-to-top {
    right: auto;
    left: 1.5rem;
  }

  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* Print styles for business card functionality */
@media print {
  body {
    background: white;
  }

  .nav,
  .hero-bg-shapes,
  .contact,
  .footer,
  .scroll-to-top {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
}
