* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.app-wrapper {
  flex: 1;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}

.font-orbitron {
  font-family: 'Verdana', sans-serif;
}

.font-rajdhani {
  font-family: 'Verdana', sans-serif;
}

/* Responsive Typography */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
  }

  h2 {
    font-size: 2rem !important;
  }

  h3 {
    font-size: 1.5rem !important;
  }

  .text-xl {
    font-size: 1.125rem !important;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #C00000, #0A3D91);
  border-radius: 4px;
}

/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-red {
  background: rgba(192, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(192, 0, 0, 0.3);
}

.glass-blue {
  background: rgba(10, 61, 145, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(10, 61, 145, 0.3);
}

/* Neon Glow Effects removed */

/* 3D Card Effects */
.card-3d {
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-3d:hover {
  transform: perspective(1000px) rotateY(10deg) rotateX(5deg) translateZ(20px);
}

/* Floating Animation */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-10px) rotate(2deg);
  }

  50% {
    transform: translateY(-20px) rotate(0deg);
  }

  75% {
    transform: translateY(-10px) rotate(-2deg);
  }
}

@keyframes float-slow {

  0%,
  100% {
    transform: translateY(0px) rotateY(0deg);
  }

  50% {
    transform: translateY(-30px) rotateY(180deg);
  }
}

@media (max-width: 768px) {
  @keyframes float {

    0%,
    100% {
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      transform: translateY(-10px) rotate(0deg);
    }
  }
}

@keyframes rotate-3d {
  0% {
    transform: rotateY(0deg) rotateX(10deg);
  }

  100% {
    transform: rotateY(360deg) rotateX(10deg);
  }
}

@keyframes logo-pulse {

  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
    filter: drop-shadow(0 0 0px rgba(192, 0, 0, 0));
  }

  50% {
    transform: scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(192, 0, 0, 0.6));
  }
}

.animate-logo-pulse {
  animation: logo-pulse 2s ease-in-out infinite;
}

@keyframes gear-rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes gear-rotate-reverse {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes particle-float {

  0%,
  100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.3;
  }

  25% {
    transform: translateY(-50px) translateX(20px) scale(1.2);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-100px) translateX(-10px) scale(0.8);
    opacity: 0.8;
  }

  75% {
    transform: translateY(-50px) translateX(-30px) scale(1.1);
    opacity: 0.5;
  }
}

@keyframes scan-line {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@keyframes border-flow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-slow {
  animation: float-slow 8s ease-in-out infinite;
}

.animate-rotate-3d {
  animation: rotate-3d 20s linear infinite;
}

.animate-gear {
  animation: gear-rotate 10s linear infinite;
}

.animate-gear-reverse {
  animation: gear-rotate-reverse 8s linear infinite;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, #C00000, transparent);
  border-radius: 50%;
  animation: particle-float 8s ease-in-out infinite;
}

/* Gradient Border */
.gradient-border {
  position: relative;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(135deg, #C00000, #0A3D91, #C00000);
  background-size: 200% 200%;
  animation: border-flow 4s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-radius: inherit;
  pointer-events: none;
}

/* Hero 3D Scene */
.hero-3d-scene {
  perspective: 2000px;
  transform-style: preserve-3d;
}

/* Product Card Flip */
.flip-card {
  perspective: 1000px;
}

.flip-card-inner {
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  backface-visibility: hidden;
}

.flip-card-back {
  transform: rotateY(180deg);
}

/* Metallic Texture */
.metallic {
  background: linear-gradient(135deg,
      #1a1a1a 0%,
      #2d2d2d 25%,
      #1a1a1a 50%,
      #2d2d2d 75%,
      #1a1a1a 100%);
  background-size: 400% 400%;
}

/* Industrial Grid Pattern */
.industrial-grid {
  background-image:
    linear-gradient(rgba(192, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Scan Effect */
.scan-effect::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(192, 0, 0, 0.1), transparent);
  animation: scan-line 4s linear infinite;
  pointer-events: none;
}

/* Button Styles */
.btn-primary {
  background: linear-gradient(135deg, #C00000, #8B0000);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff0000, #C00000);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(192, 0, 0, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #0A3D91, #061f4a);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #1454b8, #0A3D91);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(10, 61, 145, 0.4);
}

/* Navigation */
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .nav-link::after {
    display: none;
  }
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #C00000, #0A3D91);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Section transitions */
.section-hidden {
  opacity: 0;
  transform: translateY(50px);
}

.section-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Reveal Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* World Map Animation */
.map-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-line 3s ease forwards;
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

.map-dot {
  animation: pulse-glow 2s ease-in-out infinite;
}


/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  width: 65px;
  height: 65px;
  background: #25d366;
  border-radius: 50%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: float 4s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 15px 50px rgba(37, 211, 102, 0.6);
  background: #22bf5b;
}

.whatsapp-btn svg {
  width: 35px;
  height: 35px;
  color: white !important;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 25px;
    right: 20px;
    width: 60px;
    height: 60px;
    padding: 14px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  }
}

/* ============================================
   MOBILE OPTIMIZATIONS
   ============================================ */
@media (max-width: 640px) {
  h1 {
    font-size: 2.5rem !important;
  }

  h2 {
    font-size: 1.75rem !important;
  }

  .mobile-px {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .mobile-py {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  /* Contact Form Adjustments for Mobile */
  .input-luxury {
    padding: 12px 15px !important;
    font-size: 16px !important;
    /* Prevents iOS zoom on focus */
  }

  .glass {
    padding: 1.5rem !important;
  }

  /* Premium Mobile Product List View */
  .product-list-item {
    display: flex !important;
    flex-direction: row !important;
    gap: 15px !important;
    padding: 12px !important;
    align-items: center !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
  }

  .product-list-item .product-image-mini {
    width: 80px !important;
    height: 80px !important;
    flex-shrink: 0 !important;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .product-list-item .product-info {
    flex: 1 !important;
    min-width: 0 !important;
    /* Forces text truncation */
  }

  .product-list-item h4 {
    font-size: 0.95rem !important;
    height: auto !important;
    margin-bottom: 4px !important;
    line-clamp: 2 !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .product-list-item .price-tag {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #ef4444 !important;
  }

  .product-list-item .inquire-btn-mini {
    padding: 6px 12px !important;
    font-size: 0.7rem !important;
    border-radius: 6px !important;
  }
}

/* ============================================
   LIGHT MODE - Complete Theme Override
   ============================================ */

/* --- Base --- */
body.light-mode {
  background: #f5f7fa !important;
  color: #1a1a2e !important;
}

body.light-mode .app-wrapper {
  background: #f5f7fa;
}

body.light-mode .industrial-grid {
  background-image:
    linear-gradient(rgba(192, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 0, 0, 0.04) 1px, transparent 1px);
}

/* --- Scrollbar --- */
body.light-mode ::-webkit-scrollbar-track {
  background: #f5f7fa;
}

body.light-mode ::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #C00000, #0A3D91);
}

/* --- Glass Effects --- */
body.light-mode .glass {
  background: rgba(255, 255, 255, 0.8) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  backdrop-filter: blur(20px);
}

body.light-mode .glass-red {
  background: rgba(192, 0, 0, 0.05) !important;
  border: 1px solid rgba(192, 0, 0, 0.12) !important;
}

body.light-mode .glass-blue {
  background: rgba(10, 61, 145, 0.05) !important;
  border: 1px solid rgba(10, 61, 145, 0.12) !important;
}

body.light-mode .gradient-border {
  background: linear-gradient(135deg, #ffffff, #f0f0f0) !important;
}

body.light-mode .metallic {
  background: linear-gradient(135deg,
      #f0f0f0 0%, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%, #f0f0f0 100%) !important;
}

/* --- Global Text Color Overrides (Tailwind) --- */
body.light-mode .text-white {
  color: #1a1a2e !important;
}

body.light-mode .text-gray-300 {
  color: #444 !important;
}

body.light-mode .text-gray-400 {
  color: #555 !important;
}

body.light-mode .text-gray-500 {
  color: #666 !important;
}

body.light-mode .text-gray-600 {
  color: #555 !important;
}

/* Colored text (red, blue, green) intentionally not overridden */

/* --- Section Heading Gradients --- */
body.light-mode .bg-gradient-to-r.from-white.to-gray-400 {
  background: linear-gradient(to right, #1a1a2e, #555) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
}

/* --- Global Border Overrides --- */
body.light-mode .border-gray-700 {
  border-color: #ccc !important;
}

body.light-mode .border-gray-800 {
  border-color: rgba(0, 0, 0, 0.08) !important;
}

body.light-mode .border-white\/5,
body.light-mode .border-white\/10,
body.light-mode .border-white\/20 {
  border-color: rgba(0, 0, 0, 0.08) !important;
}

/* --- Global Background Overrides --- */
body.light-mode .bg-\[\\#0a0a0a\],
body.light-mode .bg-black,
body.light-mode .bg-black\/30 {
  background-color: rgba(255, 255, 255, 0.9) !important;
}

body.light-mode .bg-gray-900 {
  background-color: #e8e8ee !important;
}

/* Card dark backgrounds */
body.light-mode .bg-gradient-to-br.from-\[\\#0a0a0a\].to-\[\\#1a1a1a\],
body.light-mode .from-\[\\#0a0a0a\] {
  background: linear-gradient(135deg, #f0f2f5, #e4e7eb) !important;
}

body.light-mode .bg-gradient-to-br.from-gray-900.to-black {
  background: linear-gradient(135deg, #e8e8ee, #dde0e5) !important;
}

/* --- Navbar --- */
body.light-mode #navbar {
  background: rgba(255, 255, 255, 0.8) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

body.light-mode #logoText {
  color: #1a1a2e !important;
}

body.light-mode .nav-link {
  color: #333 !important;
}

body.light-mode .nav-link:hover {
  color: #C00000 !important;
}

body.light-mode .nav-link.active {
  color: #C00000 !important;
}

/* Mobile menu */
body.light-mode #mobileMenu {
  background: rgba(255, 255, 255, 0.97) !important;
}

body.light-mode #mobileMenu a {
  color: #1a1a2e !important;
}

/* Hamburger icon */
body.light-mode button.md\:hidden svg {
  stroke: #1a1a2e;
}

/* --- Hero Section --- */
body.light-mode .hero-video-overlay {
  background: transparent !important;
}

body.light-mode #heroHeadline span:nth-of-type(n+2) {
  color: #1a1a2e !important;
  background: none !important;
  -webkit-text-fill-color: #1a1a2e !important;
}

body.light-mode #heroSubheadline {
  color: #1a1a2e !important;
  opacity: 0.8;
}

/* Other pages video overlay */
body.light-mode .video-overlay {
  background: radial-gradient(circle, transparent 20%, rgba(245, 247, 250, 0.7) 100%) !important;
}

body.light-mode #brand-video {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* --- Login Section --- */
body.light-mode #login .bg-gradient-to-br {
  background: linear-gradient(135deg, #f5f7fa, #eef1f5, #f5f7fa) !important;
}

body.light-mode #login h2,
body.light-mode #login label {
  color: #1a1a2e !important;
}

body.light-mode #login .text-gray-400 {
  color: #666 !important;
}

/* --- About Page Map --- */
body.light-mode svg path[fill="#1a1a1a"] {
  fill: #dde0e5 !important;
}

body.light-mode svg g[stroke="#333"] {
  stroke: #bbb !important;
}

body.light-mode svg text[fill="#fff"] {
  fill: #1a1a2e !important;
}

/* --- Products Page --- */
body.light-mode .flip-card-front .bg-gradient-to-br {
  background: linear-gradient(135deg, #f0f2f5, #e4e7eb) !important;
}

body.light-mode .flip-card-back {
  color: #1a1a2e;
}

body.light-mode .flip-card-back h4 {
  color: inherit;
}

/* Product card image area */
body.light-mode .relative.h-48.bg-gradient-to-br {
  background: linear-gradient(135deg, #e8e8ee, #dde0e5) !important;
}

/* Search filter bar */
body.light-mode #searchInput,
body.light-mode #brandFilter,
body.light-mode #categoryFilter {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: #ccc !important;
  color: #1a1a2e !important;
}

body.light-mode select option {
  background: #fff;
  color: #1a1a2e;
}

/* --- Form Inputs (all pages) --- */
body.light-mode input,
body.light-mode textarea,
body.light-mode select {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: #ccc !important;
  color: #1a1a2e !important;
}

body.light-mode input::placeholder,
body.light-mode textarea::placeholder {
  color: #999 !important;
}

body.light-mode input:focus,
body.light-mode textarea:focus,
body.light-mode select:focus {
  border-color: #C00000 !important;
}

/* --- Footer --- */
body.light-mode footer {
  background: #eef1f5 !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}

body.light-mode footer h4 {
  color: #1a1a2e !important;
}

body.light-mode footer p,
body.light-mode footer a,
body.light-mode footer li a,
body.light-mode footer span {
  color: #555 !important;
}

body.light-mode footer span.font-orbitron {
  color: #1a1a2e !important;
}

body.light-mode footer a:hover,
body.light-mode footer li a:hover {
  color: #C00000 !important;
}

body.light-mode footer .border-gray-800 {
  border-color: rgba(0, 0, 0, 0.08) !important;
}

body.light-mode footer input {
  background: rgba(255, 255, 255, 0.95) !important;
}

/* --- Loading Screen --- */
body.light-mode .loading-screen {
  background: #f5f7fa !important;
}

body.light-mode .loading-screen p {
  color: #666 !important;
}

body.light-mode .loading-screen circle[fill="#0a0a0a"] {
  fill: #f5f7fa;
}

/* --- Toggle Icon --- */
body.light-mode #moonIcon,
body.light-mode #sunIcon {
  color: #1a1a2e !important;
}

/* --- Button Hover --- */
body.light-mode .btn-primary:hover,
body.light-mode .btn-secondary:hover {
  box-shadow: 0 10px 40px rgba(192, 0, 0, 0.2);
}

/* Button text stays white on colored buttons */
body.light-mode .btn-primary,
body.light-mode .btn-secondary {
  color: #fff !important;
}

/* Glow Effects removed */

/* --- WhatsApp Button --- */
body.light-mode .whatsapp-btn svg {
  color: white !important;
}

/* --- Hover states in light mode --- */
body.light-mode .hover\:bg-white\/10:hover {
  background: rgba(0, 0, 0, 0.05) !important;
}

body.light-mode .hover\:text-white:hover {
  color: #1a1a2e !important;
}

/* --- Misc --- */
body.light-mode .scan-effect::after {
  background: linear-gradient(180deg, transparent, rgba(192, 0, 0, 0.05), transparent);
}

body.light-mode .bg-red-900\/20,
body.light-mode .bg-red-900\/30 {
  background-color: rgba(192, 0, 0, 0.08) !important;
}

body.light-mode .bg-blue-900\/20,
body.light-mode .bg-blue-900\/30 {
  background-color: rgba(10, 61, 145, 0.08) !important;
}

/* Partners section gradient bg */
body.light-mode .bg-gradient-to-b.from-transparent {
  background: transparent !important;
}

body {
  box-sizing: border-box;
}

/* Hero Background Video */
.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}

/* Additional Mobile Utility Classes */
@media (max-width: 768px) {
  .mobile-px {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .mobile-py {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .industrial-grid {
    background-size: 30px 30px;
  }

  .glass {
    backdrop-filter: blur(10px);
  }
}

/* Logo Slider */
.logo-slider {
  overflow: hidden;
  padding: 40px 0;
  background: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.logo-track {
  display: flex;
  animation: scroll 60s linear infinite;
  width: max-content;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  width: 180px;
  height: 100px;
  margin: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.4s ease;
}

.logo-item:hover {
  transform: scale(1.1) translateY(-10px);
  box-shadow: 0 20px 40px rgba(192, 0, 0, 0.25);
  z-index: 10;
}

.logo-item:hover img {
  filter: grayscale(0%) opacity(1);
}

body.light-mode .logo-slider {
  background: rgba(0, 0, 0, 0.02);
}

body.light-mode .logo-item {
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Floating Brand Grid */
.brand-float-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: brand-float 4s ease-in-out infinite;
}

@keyframes brand-float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(1deg);
  }
}

.brand-float-card:hover {
  animation-play-state: paused;
  transform: scale(1.05) translateY(-20px);
  box-shadow: 0 25px 50px -12px rgba(192, 0, 0, 0.4);
}

/* ============================================
   LUXURY & PREMIUM EFFECT SYSTEM
   ============================================ */

/* --- Ambient Glow Orbs --- */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: orb-drift 12s ease-in-out infinite;
}

.glow-orb-red {
  background: radial-gradient(circle, rgba(192, 0, 0, 0.25) 0%, transparent 70%);
}

.glow-orb-blue {
  background: radial-gradient(circle, rgba(10, 61, 145, 0.22) 0%, transparent 70%);
}

.glow-orb-gold {
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
}

@keyframes orb-drift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }

  33% {
    transform: translate(40px, -30px) scale(1.1);
    opacity: 1;
  }

  66% {
    transform: translate(-30px, 20px) scale(0.95);
    opacity: 0.6;
  }
}

/* --- Enhanced Glass with inner glow --- */
.glass {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.glass:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 0 0 1px rgba(192, 0, 0, 0.15);
}

/* --- Shimmer Hover Card --- */
.shimmer-card {
  position: relative;
  overflow: hidden;
}

.shimmer-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
  background-size: 200% 100%;
  background-position: -100% 0;
  transition: background-position 0.6s ease;
  pointer-events: none;
  border-radius: inherit;
}

.shimmer-card:hover::after {
  background-position: 200% 0;
}

/* --- Neon Text Glow --- */
.neon-text {
  text-shadow: 0 0 20px rgba(192, 0, 0, 0.6), 0 0 40px rgba(192, 0, 0, 0.3);
  animation: neon-pulse 3s ease-in-out infinite;
}

@keyframes neon-pulse {

  0%,
  100% {
    text-shadow: 0 0 20px rgba(192, 0, 0, 0.6), 0 0 40px rgba(192, 0, 0, 0.3);
  }

  50% {
    text-shadow: 0 0 30px rgba(192, 0, 0, 0.9), 0 0 60px rgba(192, 0, 0, 0.5), 0 0 90px rgba(192, 0, 0, 0.2);
  }
}

/* --- Luxury Section Divider --- */
.luxury-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #C00000 30%, #0A3D91 70%, transparent);
  background-size: 200% 100%;
  animation: divider-flow 4s linear infinite;
  border: none;
  margin: 0;
}

@keyframes divider-flow {
  0% {
    background-position: -100% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* --- Scroll Reveal --- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal-up:nth-child(3) {
  transition-delay: 0.2s;
}

.reveal-up:nth-child(4) {
  transition-delay: 0.3s;
}

/* --- Premium Input Glow --- */
.input-luxury {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px !important;
  color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  outline: none;
}

.input-luxury:focus {
  border-color: #C00000 !important;
  box-shadow: 0 0 0 3px rgba(192, 0, 0, 0.18), 0 0 20px rgba(192, 0, 0, 0.12) !important;
}

.input-luxury::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

/* label float */
.field-wrap {
  position: relative;
}

.field-wrap label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin-bottom: 6px;
  text-transform: uppercase;
}

/* --- Stat Card --- */
.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C00000, #0A3D91);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(192, 0, 0, 0.2);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, #C00000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* --- Contact Hero Banner --- */
.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
  text-align: center;
}

.contact-hero canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* --- Animated Ring --- */
.ring-glow {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(192, 0, 0, 0.2);
  animation: ring-expand 4s ease-out infinite;
  pointer-events: none;
}

@keyframes ring-expand {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* --- Icon Badge --- */
.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-badge:hover {
  transform: scale(1.12) rotate(-3deg);
  box-shadow: 0 8px 24px rgba(192, 0, 0, 0.35);
}

.icon-badge-red {
  background: linear-gradient(135deg, rgba(192, 0, 0, 0.3), rgba(192, 0, 0, 0.1));
  border: 1px solid rgba(192, 0, 0, 0.35);
}

.icon-badge-blue {
  background: linear-gradient(135deg, rgba(10, 61, 145, 0.3), rgba(10, 61, 145, 0.1));
  border: 1px solid rgba(10, 61, 145, 0.35);
}

/* --- Form Submit Button Pulse --- */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-whatsapp::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
  background-size: 200% 100%;
  background-position: -100% 0;
  animation: shimmer-btn 2.5s ease-in-out infinite;
}

@keyframes shimmer-btn {
  0% {
    background-position: -100% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.4);
}

/* Light Mode adjustments for luxury classes */
body.light-mode .stat-card {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.07);
}

body.light-mode .stat-label {
  color: #666;
}

body.light-mode .input-luxury {
  background: rgba(0, 0, 0, 0.03) !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
  color: #1a1a2e;
}

body.light-mode .input-luxury::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

body.light-mode .field-wrap label {
  color: rgba(0, 0, 0, 0.5);
}

body.light-mode .glow-orb-red {
  background: radial-gradient(circle, rgba(192, 0, 0, 0.08) 0%, transparent 70%);
}

body.light-mode .glow-orb-blue {
  background: radial-gradient(circle, rgba(10, 61, 145, 0.07) 0%, transparent 70%);
}

body.light-mode .glass:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}




/* ============================================
   LUXURY BACKGROUND EFFECTS
   ============================================ */

/* Floating Luxury Particles */
.luxury-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #C00000;
  opacity: 0;
  animation: luxury-particle-float 10s ease-in-out infinite;
  box-shadow: 0 0 6px #C00000;
}

.luxury-particle:nth-child(even) {
  background: #0A3D91;
  box-shadow: 0 0 6px #0A3D91;
}

.luxury-particle.lg-particle {
  width: 5px;
  height: 5px;
}

@keyframes luxury-particle-float {

  0%,
  100% {
    transform: translateY(0) scale(0.5);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  50% {
    transform: translateY(-120px) translateX(30px) scale(1);
    opacity: 0.4;
  }

  90% {
    opacity: 0;
  }
}

/* Gradient Orb Drifts */
@keyframes luxury-drift-1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(-40px, 30px) scale(1.1);
  }

  50% {
    transform: translate(-20px, 60px) scale(0.95);
  }

  75% {
    transform: translate(20px, 20px) scale(1.05);
  }
}

@keyframes luxury-drift-2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(50px, -30px) scale(1.15);
  }

  50% {
    transform: translate(30px, -60px) scale(0.9);
  }

  75% {
    transform: translate(-20px, -20px) scale(1.1);
  }
}

@keyframes luxury-drift-3 {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  33% {
    transform: translate(-45%, -55%) scale(1.2);
  }

  66% {
    transform: translate(-55%, -45%) scale(0.85);
  }
}

/* Rotating Accent Ring */
@keyframes luxury-rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Diagonal Light Sweep */
@keyframes luxury-sweep {

  0%,
  100% {
    transform: translateX(-100%) rotate(-45deg);
  }

  50% {
    transform: translateX(100%) rotate(-45deg);
  }
}

/* Category Hero & Boxes */
.category-hero {
  position: relative;
  background: radial-gradient(circle at top right, rgba(192, 0, 0, 0.05), transparent),
    radial-gradient(circle at bottom left, rgba(10, 61, 145, 0.05), transparent);
}

.category-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(192, 0, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(192, 0, 0, 0.1);
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: translateX(-100%) rotate(-45deg);
  transition: transform 0.6s ease;
}

.category-card:hover::before {
  transform: translateX(100%) rotate(-45deg);
}

.category-image-container {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.category-image {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
  transition: transform 0.5s ease;
}

.category-card:hover .category-image {
  transform: scale(1.1) translateY(-5px);
}

/* Light mode overrides for categories */
body.light-mode .category-card {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.05);
}

body.light-mode .category-card:hover {
  border-color: rgba(192, 0, 0, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ============================================
   GOOGLE TRANSLATE - Hide all Google UI
   ============================================ */

/* Hide the injected top banner / toolbar */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight {
  display: none !important;
  visibility: hidden !important;
}

/* Remove the extra body top margin Google adds */
body {
  top: 0 !important;
  position: static !important;
}

/* Hide the widget container itself (we use the hidden div) */
#google_translate_element,
.goog-te-gadget {
  display: none !important;
}

/* Suppress the Google Translate iframe overlay */
.skiptranslate iframe {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
}