@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --primary-color: #f8fafc;
  --secondary-color: #1e293b;
  --accent-color: #FF6B00;
  --accent-glow: rgba(255, 107, 0, 0.15);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-light: #e2e8f0;
  
  --bg-main: #0B1B32;
  --bg-alt: #132442;
  
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  
  --font-family-headline: 'Outfit', sans-serif;
  --font-family: 'Inter', sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius: 24px; 
}

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

body {
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
  border-top: 1px solid transparent;
}

body::before {
  content: '';
  position: fixed;
  top: -20vh;
  left: -20vw;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, rgba(11, 27, 50, 0) 70%);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  animation: floatOrb 20s infinite alternate ease-in-out;
}

body::after {
  content: '';
  position: fixed;
  bottom: -30vh;
  right: -10vw;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.06) 0%, rgba(11, 27, 50, 0) 70%);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  animation: floatOrb 25s infinite alternate-reverse ease-in-out;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5vw, 5vh) scale(1.1); }
  100% { transform: translate(-5vw, 10vh) scale(0.9); }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-headline);
  color: var(--primary-color);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.02em;
}

a { color: var(--primary-color); text-decoration: none; transition: var(--transition); }
a:hover { opacity: 0.7; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; position: relative; }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.py-5 { padding-top: 6rem; padding-bottom: 6rem; }

@media (max-width: 768px) {
  .py-5 { padding-top: 3rem; padding-bottom: 3rem; }
}

.bg-dark { background-color: transparent; }

/* Premium Elegant Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 2rem; font-weight: 600; border-radius: 12px;
  cursor: pointer; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
  font-family: var(--font-family-headline); 
  font-size: 0.85rem; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--accent-color); color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}
.btn-primary:hover {
  background: #fff; color: var(--bg-main);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.btn-secondary, .btn-outline, .btn-outline-dark {
  background: transparent; color: var(--accent-color); 
  border: 1px solid var(--accent-color); backdrop-filter: blur(10px);
}
.btn-secondary:hover, .btn-outline:hover, .btn-outline-dark:hover {
  background: rgba(255, 107, 0, 0.1); border-color: var(--accent-color);
  transform: translateY(-2px); color: var(--accent-color);
}

/* Grids & Bento Layouts */
.grid-2 { display: grid; grid-template-columns: repeat(1, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(1, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(1, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.bento-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .bento-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(300px, auto); }
  .bento-item-tall { grid-row: span 2; }
  .bento-item-wide { grid-column: span 2; }
  .bento-item-huge { grid-column: span 2; grid-row: span 2; }
}

/* Glassmorphism Utilities */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  box-shadow: var(--glass-shadow);
}

/* Bento Cards & Table Containers (Flattened for less 'card-heavy' look) */
.card, .glass-card-dark, .table-container, .bento-box,
.metric-card, .kpi-section-card, .snapshot-card, .welcome-hero-card,
.glass-stat, .alert-card {
  position: relative;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.card:hover, .glass-card-dark:hover, .table-container:hover, .bento-box:hover,
.metric-card:hover, .kpi-section-card:hover, .snapshot-card:hover,
.glass-stat:hover, .alert-card:hover {
  background: rgba(255,255,255,0.01) !important;
  border-color: rgba(255,255,255,0.06) !important;
  transform: none !important;
  box-shadow: none !important;
}
.card > *, .glass-card-dark > * {
  position: relative; z-index: 2;
}

.card .product-image, .glass-card-dark .product-image, .card .icon-placeholder, .glass-card-dark .icon-placeholder {
  z-index: 0; margin-bottom: 1.5rem;
}
.card h2, .card h3, .card h4, .glass-card-dark h3 {
  font-family: var(--font-family-headline); font-size: 1.5rem; margin-bottom: 0.75rem; color: #fff;
}
.card p, .glass-card-dark p {
  color: var(--text-muted); font-family: var(--font-family); font-size: 0.95rem; margin-bottom: 1.5rem;
}

/* Glass bottom text link (like 'SHOP NOW') */
.card-link {
  font-family: var(--font-family-headline); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.1em;
  color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.6); padding-bottom: 2px; transition: var(--transition); display: inline-block;
}
.card-link:hover { border-bottom-color: #fff; }

/* Navbar */
.main-navbar {
  background: rgba(11, 27, 50, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.25rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.4rem; font-weight: 500; color: #fff;
  font-family: var(--font-family-headline); font-style: italic; letter-spacing: 0.05em;
  max-width: 75%;
}
.brand-logo img {
  height: 72px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.brand-logo span { color: #fff; }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-link { color: #fff; font-weight: 400; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; }
.nav-link::after { display: none; }
.nav-link:hover { opacity: 1; }
.nav-actions { display: flex; gap: 1rem; }
.nav-toggle { display: none; color: #fff; cursor: pointer; font-size: 1.5rem; }
@media (max-width: 900px) { 
  .nav-container { padding: 0 1rem; }
  .nav-menu, .nav-actions { display: none !important; } 
  .nav-toggle { display: block; margin-left: auto; }
  .brand-logo { max-width: calc(100% - 50px); }
  .brand-logo img { height: 45px; }
}
/* Hero Section */
.hero-section {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  width: 96%; max-width: 1500px; margin: 8rem auto 2rem;
  border-radius: 32px;
  padding: 6rem 4rem; position: relative; overflow: hidden;
}
.hero-section::before { display: none; }
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-section h1 {
  color: #fff; font-family: var(--font-family-headline);
  text-transform: uppercase; font-size: clamp(3.5rem, 7vw, 6.5rem);
  letter-spacing: 0.05em; margin-bottom: 1.5rem; font-weight: 500; line-height: 1.05;
  background: none; -webkit-text-fill-color: #fff;
}
.hero-section p {
  font-size: 1.15rem; color: #9ca3af; margin-bottom: 3rem; max-width: 500px; font-weight: 300; line-height: 1.6; font-family: var(--font-family);
}
.trust-indicators { margin-top: 4rem; font-size: 0.85rem; color: #6b7280; font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase; }

/* Image Placeholder (Inside Hero/Cards) */
.image-placeholder {
  background: transparent; border: none; box-shadow: none; backdrop-filter: none;
}
.image-placeholder::before { display: none; }

/* Section Headers */
.section-header { text-align: left; margin-bottom: 3rem; padding-left: 1rem; }
.section-header.text-center { text-align: center; padding-left: 0; }
@media (max-width: 768px) { .section-header { text-align: center; padding-left: 0; margin-bottom: 2rem; } }
.section-header h2 { 
  font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 0.75rem; font-weight: 600;
  background: none; -webkit-text-fill-color: #fff; color: #fff;
}
.section-header p { color: #9ca3af; font-size: 1.05rem; max-width: 600px; font-weight: 300; margin: 0; line-height: 1.6; }

/* Placeholder Elements */
.icon-placeholder {
  width: 50px; height: 50px; background: transparent; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 2rem; box-shadow: none; color: #fff;
}
.product-image {
  background: transparent; height: 200px; border: none; margin-bottom: 2rem;
}
.stat-card {
  text-align: left; padding: 3rem; border-radius: var(--border-radius);
  background: radial-gradient(circle at 0% 0%, #1c1e24 0%, #0d0f12 100%);
  border: 1px solid rgba(255,255,255,0.03);
}
.stat-number {
  font-size: 3rem; font-weight: 400; margin-bottom: 1rem;
  font-family: var(--font-family-headline); color: #fff;
  background: none; -webkit-text-fill-color: #fff;
}

/* Footer */
.main-footer { background: #060606; padding: 4rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.main-footer::before { display: none; }
.footer-title { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2rem; font-family: var(--font-family-headline); font-weight: 400; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: #6b7280; font-size: 0.9rem; }
.footer-links a:hover { color: #fff; padding-left: 0; }
.footer-bottom { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); color: #4b5563; }

/* Premium Forms */
.form-group label { 
  color: #d1d5db; 
  font-weight: 400; 
  font-size: 0.9rem; 
  margin-bottom: 0.5rem; 
  display: flex; 
  align-items: center;
  gap: 0.5rem;
}
.form-control { 
  background: #121212; 
  border: 1px solid rgba(255,255,255,0.08); 
  border-radius: 8px; 
  color: #e2e8f0; 
  padding: 0.75rem 1rem; 
  box-shadow: none;
  transition: all 0.2s ease;
  font-family: var(--font-family);
  font-size: 0.95rem;
}
.form-control::placeholder { color: rgba(255,255,255,0.3); }
.form-control:hover {
  background: #181818;
  border-color: var(--accent-color);
}
.form-control:focus { 
  background: #181818; 
  border-color: var(--accent-color); 
  box-shadow: none; 
  outline: none;
}

/* Custom Select Component */
.custom-select-wrapper {
  position: relative;
  user-select: none;
  width: 100%;
}
.custom-select-wrapper select {
  display: none !important; /* Hide native select */
}
.custom-select-trigger {
  background: #1e1e24; 
  border: 1px solid rgba(255,255,255,0.05); 
  border-radius: 12px; 
  color: #ffffff; 
  padding: 1rem 1.25rem; 
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-family);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.custom-select-trigger:hover {
  background: #25252c;
  border-color: rgba(255,255,255,0.1);
}
.custom-select-wrapper.open .custom-select-trigger {
  background: #2a2a32; 
  border-color: var(--accent-color); 
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.3), 0 0 15px rgba(255, 107, 0, 0.15); 
}
.custom-select-trigger .arrow {
  transition: transform 0.3s;
  width: 12px;
  height: 12px;
  fill: currentColor;
}
.custom-select-wrapper.open .custom-select-trigger .arrow {
  transform: rotate(180deg);
}
.custom-select-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 250px;
  overflow-y: auto;
}
.custom-select-wrapper.open .custom-select-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.custom-select-option {
  padding: 0.85rem 1.25rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.02);
}
.custom-select-option:last-child {
  border-bottom: none;
}
.custom-select-option:hover, .custom-select-option.selected {
  background: rgba(255,255,255,0.05);
  color: var(--text-main);
}
.custom-select-option.selected {
  font-weight: 600;
  color: var(--accent-color);
}
/* Scrollbar for custom select */
.custom-select-options::-webkit-scrollbar { width: 6px; }
.custom-select-options::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); border-radius: 10px; }
.custom-select-options::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; }
.custom-select-options::-webkit-scrollbar-thumb:hover { background: var(--accent-color); }

/* View Transitions */
@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*),
  ::view-transition-old(*),
  ::view-transition-new(*) {
    animation: none !important;
  }
}

::view-transition-old(modal-overlay),
::view-transition-new(modal-overlay) {
  animation-duration: 0.3s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scroll Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.animate-fade-up {
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }

/* ==========================================================================
   Global Theme Consistency Overrides & Mobile Responsiveness
   ========================================================================== */



/* Site-wide Input Fields & Focus Glows */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 400;
  color: #d1d5db;
  text-transform: none;
  letter-spacing: normal;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-control {
  background: #121212 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
  color: #e2e8f0 !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.95rem !important;
  font-family: var(--font-family) !important;
  transition: all 0.2s ease !important;
  box-shadow: none !important;
  width: 100%;
  box-sizing: border-box;
}
.form-control:hover {
  background: #181818 !important;
  border-color: var(--accent-color) !important;
}
.form-control:focus {
  background: #181818 !important;
  border-color: var(--accent-color) !important;
  box-shadow: none !important;
  outline: none !important;
}
.form-group:focus-within label {
  color: var(--accent-color) !important;
}



/* Site-wide Premium Tables & Responsive Wrapper */
.data-table {
  border-collapse: collapse !important;
  width: 100% !important;
}
.data-table tbody tr:hover {
  background: rgba(255, 107, 0, 0.04) !important;
}
.data-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.02) !important;
  padding: 0.85rem 1rem !important;
  font-size: 0.9rem !important;
}
.data-table th {
  padding: 0.85rem 1rem !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: var(--text-muted) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Responsive Table Wrapper */
.table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  min-height: 300px;
  padding-bottom: 2rem;
}

/* --- Mobile Menu Responsiveness --- */
@media (max-width: 900px) {
  .main-navbar.mobile-menu-active {
    background: rgba(8, 8, 8, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 100vh !important;
    z-index: 2000 !important;
    padding: 2rem 0 !important;
  }
  .main-navbar.mobile-menu-active .nav-container {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2.5rem !important;
    height: 100% !important;
    overflow-y: auto !important;
  }
  .main-navbar.mobile-menu-active .nav-menu {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1.5rem !important;
    width: 100% !important;
    padding-left: 1rem !important;
  }
  .main-navbar.mobile-menu-active .nav-menu a {
    font-size: 1.25rem !important;
    padding: 0.5rem 0 !important;
    display: block !important;
    width: 100% !important;
  }
  .main-navbar.mobile-menu-active .nav-actions {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 1rem !important;
    padding-left: 1rem !important;
  }
  .main-navbar.mobile-menu-active .nav-actions .btn {
    width: 100% !important;
    justify-content: center !important;
  }
  .main-navbar.mobile-menu-active .nav-toggle {
    position: absolute !important;
    top: 2rem !important;
    right: 2rem !important;
    font-size: 1.5rem !important;
    z-index: 2001 !important;
  }
}

/* --- Dashboard Responsiveness (Sidebar to Swipeable Tabs) --- */
@media (max-width: 992px) {
  .dashboard-wrapper {
    flex-direction: column !important;
  }
  .dashboard-sidebar {
    width: 100% !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  }
  .dashboard-sidebar .brand {
    padding: 1.25rem 1.5rem !important;
    text-align: center !important;
  }
  .dashboard-sidebar nav {
    display: flex !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    padding: 0.75rem 1rem !important;
    gap: 0.75rem !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important; /* Hide scrollbar for Firefox */
  }
  .dashboard-sidebar nav::-webkit-scrollbar {
    display: none !important; /* Hide scrollbar for Chrome, Safari, Opera */
  }
  .dashboard-sidebar nav a {
    display: inline-block !important;
    padding: 0.6rem 1.2rem !important;
    border-bottom: none !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    margin-bottom: 0 !important;
    font-size: 0.75rem !important;
  }
  .dashboard-sidebar nav a:first-child {
    border-bottom: none !important;
    padding-bottom: 0.6rem !important;
    margin-bottom: 0 !important;
  }
  .dashboard-sidebar nav a:hover {
    padding-left: 1.2rem !important; /* Reset padding transition on mobile */
    background: rgba(255, 255, 255, 0.08) !important;
  }
  .dashboard-sidebar nav a.active {
    background: rgba(255, 107, 0, 0.1) !important;
    color: var(--accent-color) !important;
    border-color: rgba(255, 107, 0, 0.2) !important;
    font-weight: 600 !important;
  }
  .dashboard-content {
    padding: 1.5rem !important; /* Reduce padding on mobile */
  }
  .welcome-hero-card {
    padding: 1.5rem !important;
  }
}

/* Sidebar Active State (Desktop) */
.dashboard-sidebar nav a.active {
  background: rgba(255, 107, 0, 0.1);
  color: var(--accent-color);
  border-right: 3px solid var(--accent-color);
  font-weight: 600;
  padding-left: 2.25rem;
}

/* ==========================================================================
   Overlay Cards (Cinematic)
   ========================================================================== */
.overlay-card {
  position: relative;
  height: 380px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 1px 1px rgba(255,255,255,0.15);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.overlay-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 1px 1px rgba(255,255,255,0.2);
}
.overlay-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s ease;
}
.overlay-card:hover img {
  transform: scale(1.05);
}
.overlay-card-content {
  position: relative;
  z-index: 2;
  background: linear-gradient(to top, rgba(11,27,50,0.95) 0%, rgba(11,27,50,0.6) 50%, transparent 100%);
  padding: 3rem 1.5rem 1.5rem 1.5rem;
  color: #fff;
}
.overlay-card .badge {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 0.5rem;
  display: inline-block;
}
.overlay-card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.25rem 0;
  text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}
.overlay-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin: 0;
  text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

/* ==========================================================================
   Featured Product Cards Styling (Glassmorphic)
   ========================================================================== */
.featured-product-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 100%) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 1px 1px rgba(255,255,255,0.15) !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  cursor: pointer !important;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
  padding: 0 !important;
  position: relative !important;
}
.featured-product-card:hover {
  border-color: rgba(255, 107, 0, 0.3) !important;
  transform: translateY(-8px) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 107, 0, 0.15), inset 0 1px 0 rgba(255,255,255,0.2) !important;
}

.featured-product-card .image-container {
  height: 280px;
  background: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  position: relative;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
}
.featured-product-card .image-container::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.featured-product-card .image-container img {
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  position: relative;
}
.featured-product-card:hover .image-container img {
  transform: scale(1.08) translateY(-5px);
}

.featured-product-card .image-container .no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  font-size: 1rem;
}

.featured-product-card .info-container {
  padding: 2.25rem 2rem 2.5rem 2rem !important;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to top, rgba(11,27,50,0.8) 0%, transparent 100%);
}

.featured-product-card .badge {
  display: inline-block !important;
  padding: 0.35rem 0.85rem !important;
  background: rgba(255, 107, 0, 0.1) !important;
  color: var(--accent-color) !important;
  border-radius: 50px !important;
  border: 1px solid rgba(255, 107, 0, 0.2) !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem !important;
}

.featured-product-card h3 {
  margin: 0 0 0.5rem 0 !important;
  font-size: 1.6rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  line-height: 1.25 !important;
}

.featured-product-card .model-text {
  font-size: 0.95rem !important;
  color: rgba(255,255,255,0.5) !important;
  margin-bottom: 0.85rem !important;
  font-family: var(--font-family) !important;
}

.featured-product-card .price-text {
  font-size: 1.45rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  margin-top: auto !important;
  margin-bottom: 0 !important;
  text-shadow: 0 2px 10px rgba(255, 107, 0, 0.3);
}

/* Glassmorphic Showcase Modal */
.glass-showcase-modal {
  max-width: 1200px !important;
  width: 95% !important;
  padding: 0 !important;
  border-radius: 32px !important;
  background: rgba(20, 25, 30, 0.45) !important;
  backdrop-filter: blur(40px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(40px) saturate(150%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 0 20px rgba(255,255,255,0.05) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

.glass-showcase-modal .close-modal {
  position: absolute; right: 2rem; top: 2rem;
  background: rgba(255,255,255,0.1); border-radius: 50%;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  color: #fff; z-index: 10; cursor: pointer; transition: all 0.3s ease;
  font-size: 1.5rem; border: 1px solid rgba(255,255,255,0.1);
}
.glass-showcase-modal .close-modal:hover { background: rgba(255,255,255,0.2); transform: scale(1.1); }

/* Global Modal Overlay Styles */
.modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.active, .modal-overlay.show {
  opacity: 1; pointer-events: auto;
}
.modal-overlay .modal-content {
  background: var(--bg-main); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--border-radius); width: 90%; max-height: 90vh;
  overflow-y: auto; box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transform: translateY(20px); transition: transform 0.3s;
}
.modal-overlay.active .modal-content, .modal-overlay.show .modal-content {
  transform: translateY(0);
}

.showcase-modal-split {
  display: flex;
  flex-direction: column;
}
@media (min-width: 900px) {
  .showcase-modal-split { flex-direction: row; min-height: 70vh; }
}

.showcase-modal-left {
  flex: 0.8;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}
.showcase-modal-left::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 107, 0, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.image-glow-ring {
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  z-index: 0;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.prod-modal-img-style {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 450px;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  background: #ffffff !important;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.showcase-modal-right {
  flex: 1;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: rgba(0,0,0,0.2);
  border-left: 1px solid rgba(255,255,255,0.05);
  overflow-y: auto;
  max-height: 90vh;
}
.showcase-brand-category {
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
#prod-modal-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.1;
}

.showcase-section {
  margin-top: 2.5rem;
}
.showcase-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.showcase-value {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1rem;
  background: rgba(255,255,255,0.05);
}
.showcase-value-small {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.showcase-footer {
  margin-top: auto;
  padding-top: 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.showcase-price {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-family-headline);
  line-height: 1;
}
.showcase-cta {
  padding: 1.25rem 2.5rem !important;
  font-size: 1.1rem !important;
  border-radius: 50px !important;
  background: #fff !important;
  box-shadow: 0 4px 15px rgba(255,255,255,0.05) !important;
  border: none !important;
  color: #0B1B32 !important;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 600;
}
.showcase-cta:hover {
  background: var(--accent-color) !important;
  color: #fff !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4), 0 0 15px rgba(255, 107, 0, 0.2) !important;
}

/* Glassmorphic Nav Buttons */
.showcase-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.showcase-nav-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-50%) scale(1.1);
}
.showcase-nav-btn.prev-btn { left: 1rem; }
.showcase-nav-btn.next-btn { right: 1rem; }

/* ==========================================================================
   Project Fullscreen Modal
   ========================================================================== */
.project-fullscreen-modal {
  width: 90%;
  max-width: 1200px;
  height: 80vh;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
}

.project-fullscreen-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.marquee-item .overlay-card-content {
  background: linear-gradient(to top, rgba(11,27,50,0.95) 0%, rgba(11,27,50,0.7) 40%, transparent 100%);
}

.project-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 40%, transparent 100%);
  padding: 4rem 3rem 2rem 3rem;
  color: #fff;
}

@media (max-width: 768px) {
  .project-fullscreen-modal {
    height: 70vh;
  }
  .project-overlay-content {
    padding: 3rem 1.5rem 1.5rem 1.5rem;
  }
  .project-overlay-content h2 {
    font-size: 1.8rem !important;
  }
}

/* ==========================================================================
   Infinite Marquee Scroller
   ========================================================================== */
.marquee-container {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  padding: 1rem 0 3rem 0;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.marquee-track {
  display: inline-flex;
  gap: 2rem;
  animation: scrollMarquee 40s linear infinite;
  padding-left: 2rem;
}
.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  width: 450px;
  flex: 0 0 auto;
  white-space: normal;
}
.marquee-item .overlay-card {
  height: 450px;
}
.marquee-item-sm {
  width: 350px;
  flex: 0 0 auto;
  white-space: normal;
}
.marquee-item-sm .overlay-card {
  height: 350px;
}
.marquee-item-lg {
  width: 400px;
  flex: 0 0 auto;
  white-space: normal;
}
.marquee-item-lg .overlay-card {
  height: 320px;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); }
}

@media (max-width: 768px) {
  .marquee-item { width: 320px; }
  .marquee-item .overlay-card { height: 350px; }
  .marquee-item-sm { width: 280px; }
  .marquee-item-sm .overlay-card { height: 300px; }
  .marquee-item-lg { width: 300px; }
  .marquee-item-lg .overlay-card { height: 260px; }
}

/* ==========================================================================
   Bento Gallery Grid
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  grid-auto-rows: 300px;
  grid-auto-flow: dense;
}

.bento-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.bento-item .overlay-card {
  width: 100%;
  height: 100%;
  border-radius: 24px;
}

@media (min-width: 992px) {
  .col-span-2 {
    grid-column: span 2;
  }
  .row-span-2 {
    grid-row: span 2;
  }
}

/* Hide Scrollbar Utility */
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ==========================================================================
   Toast Notifications
   ========================================================================== */
#toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}
.toast {
  background: var(--bg-alt);
  color: var(--text-main);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  font-family: var(--font-family-base, 'Inter', sans-serif);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 250px;
  max-width: 400px;
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
  pointer-events: auto;
}
.toast.show {
  transform: translateX(0);
}
.toast.hide {
  opacity: 0;
  transform: translateX(120%);
}
.toast-success { border-left: 4px solid #10b981; }
.toast-error { border-left: 4px solid #ef4444; }
.toast-info { border-left: 4px solid #3b82f6; }


/* ==========================================================================
   Storytelling & Scroll Animations
   ========================================================================== */

/* Scroll-driven animations */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes scroll-fade-up {
      from { opacity: 0; transform: translateY(50px) scale(0.95); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    @keyframes scroll-slide-left {
      from { opacity: 0; transform: translateX(-50px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes scroll-slide-right {
      from { opacity: 0; transform: translateX(50px); }
      to { opacity: 1; transform: translateX(0); }
    }

    .scroll-reveal {
      animation: scroll-fade-up auto linear both;
      animation-timeline: view();
      animation-range: entry 10% cover 40%;
    }
    .scroll-reveal-left {
      animation: scroll-slide-left auto linear both;
      animation-timeline: view();
      animation-range: entry 10% cover 40%;
    }
    .scroll-reveal-right {
      animation: scroll-slide-right auto linear both;
      animation-timeline: view();
      animation-range: entry 10% cover 40%;
    }
  }
}

/* Fallback for browsers without native scroll timeline */
.scroll-fallback-hidden { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.scroll-fallback-hidden.scroll-fallback-visible { opacity: 1; transform: translateY(0); }

/* Storytelling Layouts */
.story-container { display: flex; flex-direction: column; gap: 8rem; padding: 2rem 0; }
.story-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .story-split { grid-template-columns: 1fr 1fr; gap: 6rem; }
  .story-split:nth-child(even) .story-content { order: 2; }
  .story-split:nth-child(even) .story-media { order: 1; }
}

.story-media { 
  position: relative; 
  border-radius: 24px; 
  overflow: hidden; 
  box-shadow: 0 20px 50px rgba(0,0,0,0.5); 
  border: 1px solid rgba(255,255,255,0.05); 
  aspect-ratio: 4/3; 
  background: var(--bg-alt);
}
.story-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.story-split:hover .story-media img { transform: scale(1.05); }

.story-content h3 { font-size: clamp(2rem, 3vw, 2.5rem); margin-bottom: 1rem; color: #fff; font-weight: 500; }
.story-content p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; margin-bottom: 1.5rem; }
.story-content .badge { 
  display: inline-block; padding: 0.35rem 0.85rem; background: rgba(255, 107, 0, 0.1); 
  color: var(--accent-color); border-radius: 50px; font-size: 0.75rem; 
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; 
}

/* Vertical Timeline (For Services/About) */
.vertical-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 2rem;
}
.vertical-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(255, 107, 0, 0.5), rgba(255, 107, 0, 0.05));
}
.timeline-item {
  position: relative;
  padding-bottom: 5rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -2.35rem;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}
.timeline-content {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
}

/* Horizontal Scroll Utilities */
.horizontal-scroll-wrapper {
  width: 100%;
  position: relative;
  padding: 1rem 0;
}
.horizontal-scroll-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding-bottom: 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-color) rgba(255,255,255,0.05);
}
.horizontal-scroll-container::-webkit-scrollbar {
  height: 6px;
}
.horizontal-scroll-container::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
}
.horizontal-scroll-container::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 10px;
}
.horizontal-scroll-item {
  scroll-snap-align: start;
  flex: 0 0 85%;
  min-width: 280px;
}
@media (min-width: 768px) {
  .horizontal-scroll-item { flex: 0 0 calc(50% - 1rem); }
}
@media (min-width: 1024px) {
  .horizontal-scroll-item { flex: 0 0 calc(33.333% - 1rem); }
}

/* Interactive Tabs */
.tabs-container {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .tabs-container {
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
  }
}
.tab-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tab-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  text-align: left;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-family-headline);
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tab-btn:hover {
  background: rgba(255,255,255,0.02);
  color: var(--text-main);
}
.tab-btn.active {
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.2);
  color: var(--accent-color);
}
.tab-content {
  display: none;
  animation: fadeUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.tab-content.active {
  display: block;
}

/* Premium Sleek Tabs */
.premium-tabs {
  display: flex;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 1.5rem;
  overflow-x: auto;
}
.premium-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-family-headline);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.premium-tab:hover {
  color: #fff;
}
.premium-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.premium-tab.active-filter {
  color: #fff;
}
.premium-tab.active-filter::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.active { color: var(--accent-color); font-weight: 600; opacity: 1; }

/* -------------------------------------
   SCROLL ANIMATIONS (IntersectionObserver)
------------------------------------- */
.scroll-animate {
  opacity: 0;
  will-change: transform, opacity;
}

/* Fade Up */
.scroll-fade-up {
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Slide Right */
.scroll-slide-right {
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-slide-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* Zoom In */
.scroll-zoom-in {
  transform: scale(0.9);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-zoom-in.in-view {
  opacity: 1;
  transform: scale(1);
}

/* Stagger Delays */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* 3D Tilt Utilities */
.hover-tilt {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hover-tilt:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) scale(1.02);
  z-index: 10;
}

@keyframes pulseIcon {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

/* ==========================================================================
   Skeleton Loaders (Perceived Performance)
   ========================================================================== */
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.skeleton {
  background: rgba(255, 255, 255, 0.03);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.0) 0px, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.0) 100%);
  background-size: 400px 100%;
  animation: shimmer 1.5s infinite linear;
  border-radius: 8px;
}
