/* Arbarie Création — Dark Theme Artistique */
@charset "UTF-8";

:root {
  --bg: #000000;            /* fond noir pur */
  --surface: #1A1A1A;       /* surfaces gris très foncé */
  --text: #FFFFFF;          /* texte principal blanc pur */
  --muted: #CBD5E1;         /* texte secondaire gris très clair */
  --primary: #3B82F6;       /* bleu vibrant */
  --primary-600: #2563EB;   /* bleu plus foncé */
  --primary-700: #1D4ED8;   /* bleu très foncé */
  --primary-50: rgba(59, 130, 246, 0.1);  /* teinte bleue transparente */
  --accent: #8B5CF6;        /* violet pour accents */
  --accent-cyan: #06B6D4;   /* cyan pour variété */
  --border: #2A2A2A;        /* bordures gris foncé */
  --radius: 10px;
  --glow-blue: rgba(59, 130, 246, 0.5);
  --glow-purple: rgba(139, 92, 246, 0.3);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: #000000;
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
}

/* Touches de couleur qui apparaissent de temps en temps */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0) 0%, rgba(59, 130, 246, 0) 100%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0) 0%, rgba(139, 92, 246, 0) 100%),
    radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0) 0%, rgba(6, 182, 212, 0) 100%);
  background-size: 400% 400%;
  animation: colorPulse 15s ease-in-out infinite;
}

@keyframes colorPulse {
  0%, 100% {
    background:
      radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0) 0%, rgba(59, 130, 246, 0) 50%),
      radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0) 0%, rgba(139, 92, 246, 0) 50%),
      radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0) 0%, rgba(6, 182, 212, 0) 50%);
  }
  25% {
    background:
      radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0) 50%),
      radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0) 0%, rgba(139, 92, 246, 0) 50%),
      radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0) 0%, rgba(6, 182, 212, 0) 50%);
  }
  50% {
    background:
      radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0) 0%, rgba(59, 130, 246, 0) 50%),
      radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, rgba(139, 92, 246, 0) 50%),
      radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0) 0%, rgba(6, 182, 212, 0) 50%);
  }
  75% {
    background:
      radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0) 0%, rgba(59, 130, 246, 0) 50%),
      radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0) 0%, rgba(139, 92, 246, 0) 50%),
      radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.08) 0%, rgba(6, 182, 212, 0) 50%);
  }
}

/* Étoiles scintillantes dans le fond */
@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

body .stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

body .stars::before,
body .stars::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow:
    100px 200px 0 0 rgba(255, 255, 255, 0.8),
    300px 100px 0 0 rgba(59, 130, 246, 0.6),
    500px 300px 0 0 rgba(139, 92, 246, 0.6),
    700px 150px 0 0 rgba(255, 255, 255, 0.7),
    900px 400px 0 0 rgba(6, 182, 212, 0.5),
    200px 500px 0 0 rgba(255, 255, 255, 0.6),
    600px 50px 0 0 rgba(59, 130, 246, 0.7),
    800px 600px 0 0 rgba(139, 92, 246, 0.5),
    400px 350px 0 0 rgba(255, 255, 255, 0.8),
    1000px 250px 0 0 rgba(6, 182, 212, 0.6);
  animation: twinkle 3s ease-in-out infinite;
}

body .stars::after {
  animation-delay: 1.5s;
  box-shadow:
    150px 250px 0 0 rgba(255, 255, 255, 0.7),
    350px 150px 0 0 rgba(59, 130, 246, 0.5),
    550px 350px 0 0 rgba(139, 92, 246, 0.7),
    750px 200px 0 0 rgba(255, 255, 255, 0.6),
    950px 450px 0 0 rgba(6, 182, 212, 0.6),
    250px 550px 0 0 rgba(255, 255, 255, 0.5),
    650px 100px 0 0 rgba(59, 130, 246, 0.8),
    850px 650px 0 0 rgba(139, 92, 246, 0.6),
    450px 400px 0 0 rgba(255, 255, 255, 0.7),
    1050px 300px 0 0 rgba(6, 182, 212, 0.5);
}

/* Texte avec léger scintillement très subtil */
p, span, div, li {
  color: var(--text);
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Effet scintillement très léger pour les paragraphes */
@keyframes subtleGlow {
  0%, 100% {
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
  }
  50% {
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.2),
      0 0 4px rgba(59, 130, 246, 0.05);
  }
}

p {
  animation: subtleGlow 5s ease-in-out infinite;
}

/* Touches de couleur vibrantes pour les liens */
a {
  color: #60A5FA;
  transition: all 0.3s ease;
  position: relative;
}

a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3B82F6, #8B5CF6, #06B6D4);
  background-size: 200% 100%;
  animation: colorFlow 3s linear infinite;
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}

a:hover {
  color: #FFFFFF;
  text-shadow:
    0 0 10px rgba(59, 130, 246, 0.8),
    0 0 20px rgba(139, 92, 246, 0.5);
}

@keyframes colorFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Particules retirées - effet plus léger */

/* Headings - Blanc pur avec scintillement très léger */
h1, h2, h3, h4, h5, h6 {
  color: #FFFFFF;
  font-weight: 700;
}

/* Scintillement très subtil pour les titres */
@keyframes textShimmer {
  0%, 100% {
    text-shadow:
      0 0 5px rgba(255, 255, 255, 0.2),
      0 0 10px rgba(59, 130, 246, 0.1);
  }
  50% {
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.3),
      0 0 15px rgba(59, 130, 246, 0.15),
      0 0 20px rgba(139, 92, 246, 0.1);
  }
}

h1 {
  font-size: 2.5rem;
  color: #FFFFFF;
  animation: textShimmer 4s ease-in-out infinite;
}

h2 {
  font-size: 2rem;
  color: #FFFFFF;
  animation: textShimmer 5s ease-in-out infinite;
  animation-delay: 1s;
}

h3 {
  font-size: 1.5rem;
  color: #FFFFFF;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header / Nav - Dark Theme */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  position: relative;
}

.brand-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 18px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 30;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Desktop Navigation */
.site-nav {
  display: flex;
  align-items: center;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 18px;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.site-nav a:hover {
  color: var(--muted);
  background: var(--primary-50);
  box-shadow: 0 0 20px var(--glow-blue);
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.site-nav a:hover::after {
  width: 80%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
  }

  .site-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    margin: 0 0 8px 0;
    padding: 14px 16px;
    text-align: left;
    font-size: 16px;
    border-radius: 8px;
  }

  .site-nav a:last-child {
    margin-bottom: 0;
  }
}

/* Footer - Dark Theme */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 0;
  background: var(--surface);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.site-footer .container {
  padding: 40px 20px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h3 {
  color: var(--primary);
  font-size: 20px;
  margin: 0 0 12px;
}

.footer-section h4 {
  color: var(--text);
  font-size: 16px;
  margin: 0 0 16px;
  font-weight: 600;
}

.footer-section p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.footer-contact,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li,
.footer-links li {
  margin-bottom: 10px;
}

.footer-contact a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-contact a::before {
  content: '✉ ';
  margin-right: 8px;
}

.footer-contact li:has(a[href^="tel"])::before {
  margin-right: 8px;
}

.footer-contact a[href^="tel"]::before {
  content: '';
  margin-right: 0;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Layout */
.site-main .container { padding: 0; }
.site-main .container > *:not(.hero) { padding: 32px 20px; }

/* =====================================================
   Hero Section - Modern Blue Style
   ===================================================== */
.hero {
  position: relative;
  min-height: 66vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 200px 0 68px;
  /* Fond noir et blanc */
  background: linear-gradient(135deg, #000000 0%, #1A1A1A 50%, #0A0A0A 100%);
  /* Pleine largeur et collé au header */
  width: 100vw;
  margin: 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* Background Image (optionnelle) - Noir et Blanc avec overlay */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Image en noir et blanc (grayscale) */
  filter: grayscale(100%) brightness(0.4) contrast(1.1);
}

/* Overlay artistique avec couleurs qui percent */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Overlay avec blend mode pour laisser passer les couleurs */
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.85) 0%,
    rgba(30, 41, 59, 0.75) 40%,
    rgba(37, 99, 235, 0.4) 70%,
    rgba(59, 130, 246, 0.3) 100%
  );
  mix-blend-mode: multiply;
  z-index: 2;
}

/* Ajout d'un overlay de couleur vibrant */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(59, 130, 246, 0.3) 0%,
    transparent 50%
  ),
  radial-gradient(
    circle at 80% 80%,
    rgba(139, 92, 246, 0.25) 0%,
    transparent 50%
  ),
  radial-gradient(
    circle at 40% 20%,
    rgba(14, 165, 233, 0.2) 0%,
    transparent 50%
  );
  z-index: 2;
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Étoiles scintillantes dans la hero */
.hero-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-stars::before,
.hero-stars::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow:
    100px 200px 0 0 rgba(255, 255, 255, 0.9),
    300px 100px 0 0 rgba(255, 255, 255, 0.7),
    500px 300px 0 0 rgba(255, 255, 255, 0.8),
    700px 150px 0 0 rgba(255, 255, 255, 0.6),
    900px 400px 0 0 rgba(255, 255, 255, 0.7),
    200px 500px 0 0 rgba(255, 255, 255, 0.5),
    600px 50px 0 0 rgba(255, 255, 255, 0.8),
    800px 600px 0 0 rgba(255, 255, 255, 0.6),
    400px 350px 0 0 rgba(255, 255, 255, 0.9),
    1000px 250px 0 0 rgba(255, 255, 255, 0.7),
    150px 450px 0 0 rgba(255, 255, 255, 0.6),
    850px 100px 0 0 rgba(255, 255, 255, 0.8),
    350px 550px 0 0 rgba(255, 255, 255, 0.5),
    1100px 350px 0 0 rgba(255, 255, 255, 0.7),
    450px 150px 0 0 rgba(255, 255, 255, 0.8),
    650px 500px 0 0 rgba(255, 255, 255, 0.6),
    950px 550px 0 0 rgba(255, 255, 255, 0.7),
    250px 250px 0 0 rgba(255, 255, 255, 0.5),
    550px 400px 0 0 rgba(255, 255, 255, 0.8),
    750px 50px 0 0 rgba(255, 255, 255, 0.6);
  animation: twinkle 3s ease-in-out infinite;
}

.hero-stars::after {
  animation-delay: 1.5s;
  box-shadow:
    125px 275px 0 0 rgba(255, 255, 255, 0.8),
    375px 175px 0 0 rgba(255, 255, 255, 0.6),
    575px 375px 0 0 rgba(255, 255, 255, 0.7),
    775px 225px 0 0 rgba(255, 255, 255, 0.5),
    975px 475px 0 0 rgba(255, 255, 255, 0.8),
    275px 575px 0 0 rgba(255, 255, 255, 0.6),
    675px 125px 0 0 rgba(255, 255, 255, 0.7),
    875px 675px 0 0 rgba(255, 255, 255, 0.5),
    475px 425px 0 0 rgba(255, 255, 255, 0.8),
    1075px 325px 0 0 rgba(255, 255, 255, 0.6),
    225px 525px 0 0 rgba(255, 255, 255, 0.7),
    925px 175px 0 0 rgba(255, 255, 255, 0.5),
    425px 625px 0 0 rgba(255, 255, 255, 0.8),
    1175px 425px 0 0 rgba(255, 255, 255, 0.6),
    525px 225px 0 0 rgba(255, 255, 255, 0.7),
    725px 575px 0 0 rgba(255, 255, 255, 0.5),
    1025px 625px 0 0 rgba(255, 255, 255, 0.8),
    325px 325px 0 0 rgba(255, 255, 255, 0.6),
    625px 475px 0 0 rgba(255, 255, 255, 0.7),
    825px 125px 0 0 rgba(255, 255, 255, 0.5);
}

/* Formes Géométriques Artistiques avec couleurs vibrantes */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.shape-triangle-1 {
  position: absolute;
  bottom: -50px;
  right: -100px;
  width: 700px;
  height: 700px;
  opacity: 0.6;
  animation: float 20s infinite ease-in-out;
  filter: blur(1px);
}

.shape-triangle-2 {
  position: absolute;
  top: -80px;
  left: 60%;
  width: 500px;
  height: 500px;
  opacity: 0.5;
  animation: float 15s infinite ease-in-out reverse;
  filter: blur(1px);
}

/* Animation avec rotation et mouvement plus fluides */
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(20px, -30px) rotate(5deg) scale(1.03);
  }
  50% {
    transform: translate(0, -50px) rotate(10deg) scale(1.06);
  }
  75% {
    transform: translate(-20px, -30px) rotate(5deg) scale(1.03);
  }
}

/* Banderole Défilante - Dark Theme Vibrant */
.hero-banner-scroll {
  position: absolute;
  top: 15%;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(59, 130, 246, 0.3);
  border-bottom: 2px solid rgba(139, 92, 246, 0.3);
  box-shadow:
    0 0 30px rgba(59, 130, 246, 0.3),
    0 0 60px rgba(139, 92, 246, 0.2),
    inset 0 0 30px rgba(59, 130, 246, 0.1);
  z-index: 4;
  overflow: hidden;
  transform: rotate(-3deg);
}

.banner-track {
  display: flex;
  gap: 80px;
  animation: scroll 20s linear infinite;
  white-space: nowrap;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.banner-text {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #60A5FA, #A78BFA, #60A5FA);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
  padding: 0 20px;
  line-height: 60px;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Contenu Hero - Dark Theme */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1000px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  color: #FFFFFF;
  text-align: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  max-width: 640px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  /* Titre avec effet lumineux */
  color: #FFFFFF;
  text-shadow:
    0 0 40px rgba(59, 130, 246, 0.3),
    0 0 20px rgba(139, 92, 246, 0.2);
}

.hero-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: clamp(18px, 2.2vw, 22px);
  margin: 0;
  font-weight: 600;
  text-align: center;
  /* Gradient vibrant pour le sous-titre */
  background: linear-gradient(135deg, #60A5FA, #A78BFA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle-icon {
  width: 24px;
  height: 24px;
  stroke: #60A5FA;
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.5));
}

.hero-tagline {
  font-size: clamp(15px, 1.9vw, 19px);
  font-style: italic;
  color: rgba(203, 213, 225, 0.92);
  margin: 0;
  text-align: center;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-cta {
  margin-top: 6px;
  display: flex;
  justify-content: center;
}

.btn-hero-primary {
  display: inline-block;
  padding: 16px 42px;
  background: linear-gradient(135deg, #3B82F6, #8B5CF6);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 17px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow:
    0 0 30px rgba(59, 130, 246, 0.5),
    0 10px 40px rgba(139, 92, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::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;
}

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

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #2563EB, #7C3AED);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 40px rgba(59, 130, 246, 0.7),
    0 15px 50px rgba(139, 92, 246, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    min-height: 60vh;
    padding: 70px 0 52px;
  }

  .hero-inner {
    gap: clamp(12px, 4vw, 22px);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 54vh;
    padding: 64px 0 36px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-inner {
    gap: clamp(12px, 5vw, 20px);
  }

  .hero h1 {
    font-size: clamp(26px, 7vw, 36px);
    margin-bottom: 0;
    line-height: 1.18;
  }

  .hero-banner-scroll {
    height: 48px;
    top: 11%;
  }

  .banner-text {
    font-size: 13px;
    letter-spacing: 2px;
    line-height: 48px;
  }

  .banner-track {
    gap: 48px;
  }

  .shape-triangle-1,
  .shape-triangle-2 {
    width: 280px;
    height: 280px;
  }

  .hero-subtitle {
    gap: 9px;
    font-size: 17px;
  }

  .hero-tagline {
    font-size: 15px;
  }

  .btn-hero-primary {
    padding: 14px 26px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }

  .hero-cta {
    width: 100%;
    margin-top: 4px;
  }
}

/* =====================================================
   Portfolio & Services
   ===================================================== */
.portfolio-services {
  position: relative;
  padding: 56px 0 68px;
}

.portfolio-services .container {
  position: relative;
  z-index: 1;
}

.portfolio-services-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.portfolio-column,
.services-column {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 28px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(10px);
}

.column-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.strip-title {
  font-size: clamp(24px, 4vw, 36px);
  margin: 0;
}

.strip-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
  letter-spacing: 0.03em;
}

.strip-link:hover {
  color: var(--primary-600);
}

.empty-state {
  margin: 0;
  font-size: 15px;
  color: rgba(148, 163, 184, 0.85);
}

.portfolio-card-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.5);
}

.portfolio-card-image {
  position: relative;
  width: 100%;
  padding-top: 65%;
  border-radius: 16px;
  overflow: hidden;
  background: #0f172a;
}

.portfolio-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.portfolio-card-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #E2E8F0;
}

.home-services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.home-service-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 52px rgba(15, 23, 42, 0.55);
}

.home-service-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(139, 92, 246, 0.25));
  font-size: 22px;
  filter: drop-shadow(0 6px 16px rgba(59, 130, 246, 0.35));
}

.home-service-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #F8FAFC;
}

.home-service-card-description {
  margin: 0;
  color: rgba(203, 213, 225, 0.9);
  line-height: 1.6;
  font-size: 15px;
}

.home-service-card-link {
  margin-top: auto;
  align-self: flex-start;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.home-service-card-link:hover {
  color: var(--primary-600);
}

@media (max-width: 1024px) {
  .portfolio-services-grid {
    grid-template-columns: 1fr;
  }

  .home-services-list {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .portfolio-services {
    padding: 36px 0 48px;
  }

  .portfolio-column,
  .services-column {
    padding: 20px 18px;
    border-radius: 22px;
    gap: 18px;
  }

  .column-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .portfolio-card-list {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
  }

  .home-services-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* Legacy styles for compatibility */
.cta-row { display: flex; justify-content: center; gap: 12px; }

/* Sections */
.section { padding: 24px 0; }
.section-title {
  margin: 0 0 20px;
  font-size: 32px;
  color: var(--text);
  text-align: center;
  font-weight: 700;
}

/* Service Cards */
.service-card {
  transition: all 0.3s ease;
  position: relative;
}

.service-card .service-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.service-icon {
  font-size: 48px;
  text-align: center;
  margin-bottom: 16px;
  filter: grayscale(0.3);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  filter: grayscale(0);
  transform: scale(1.1);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary);
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 16px;
}

.service-cta {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.service-card:hover .service-cta {
  transform: translateX(5px);
}

/* Service Detail Page */
.service-detail {
  max-width: 900px;
  margin: 0 auto;
}

.service-detail-header {
  margin-bottom: 40px;
  text-align: center;
}

.back-link {
  display: inline-block;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 20px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.back-link:hover {
  color: var(--primary);
  transform: translateX(-5px);
}

.service-detail-header h1 {
  font-size: clamp(28px, 5vw, 42px);
  margin: 0 0 16px;
  color: var(--text);
}

.service-lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.service-detail-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.service-detail-content h2 {
  color: var(--text);
  font-size: 24px;
  margin: 32px 0 16px;
}

.service-detail-content h2:first-child {
  margin-top: 0;
}

.service-detail-content h3 {
  color: var(--text);
  font-size: 20px;
  margin: 24px 0 12px;
}

.service-detail-content p {
  margin: 16px 0;
  color: var(--muted);
}

.service-detail-content ul,
.service-detail-content ol {
  margin: 16px 0;
  padding-left: 24px;
  color: var(--muted);
}

.service-detail-content li {
  margin: 8px 0;
  line-height: 1.6;
}

.service-detail-content a {
  color: var(--primary);
  text-decoration: underline;
}

.service-detail-content a:hover {
  color: var(--primary-600);
}

.service-detail-cta {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: var(--radius);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.service-detail-cta h2 {
  margin: 0 0 12px;
  font-size: 24px;
  color: var(--text);
}

.service-detail-cta p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
}

@media (max-width: 768px) {
  .service-detail-content {
    padding: 24px;
  }

  .service-detail-cta {
    padding: 24px;
  }
}

/* Cards / Grid */
.grid { display: grid; gap: 16px; }
.services-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.card:hover {
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
  border-color: var(--primary);
}
.card h3 { margin-top: 0; color: var(--text); }
.card p { margin-bottom: 0; color: var(--muted); }

/* Buttons - Dark Theme */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 4px 15px var(--glow-blue);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-600), var(--accent));
  box-shadow: 0 6px 25px var(--glow-blue);
  transform: translateY(-2px);
}

/* Contact */
.contact-cards { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 800px) { .contact-cards { grid-template-columns: 1fr 1fr; } }
.contact-list { list-style: none; padding-left: 0; margin: 0; }
.contact-list li { margin: 8px 0; }
.contact-list a { color: var(--primary); text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

.form .form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.form label { color: var(--text); font-weight: 600; }
.form input, .form textarea {
  background: rgba(30, 41, 59, 0.5);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  transition: all 0.3s ease;
}
.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--glow-blue), 0 0 20px var(--glow-blue);
  background: rgba(30, 41, 59, 0.7);
}
.form-actions { margin-top: 8px; }

.alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 12px; }
.alert.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.5);
  color: #6EE7B7;
}

/* Links */
a { color: var(--primary); }
a:hover { opacity: 0.9; }

/* Portfolio & Gallery Filters */
.portfolio-filters,
.gallery-filters {
  text-align: center;
  margin-bottom: 30px;
}

.filter-btn {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  margin: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: var(--primary-50);
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--glow-blue);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px var(--glow-blue);
}

.gallery-grid {
  column-count: 1;
  column-gap: 16px;
}

@media (min-width: 600px) {
  .gallery-grid { column-count: 2; }
}

@media (min-width: 900px) {
  .gallery-grid { column-count: 3; }
}

@media (min-width: 1200px) {
  .gallery-grid { column-count: 4; }
}

.gallery-item {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 16px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery-item:hover {
  transform: translateY(-2px);
}

.gallery-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  margin: 0 0 4px;
  font-size: 16px;
  color: #fff;
}

.gallery-overlay p {
  margin: 0 0 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}

.gallery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  color: #60A5FA;
  border: 1px solid rgba(59, 130, 246, 0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  cursor: zoom-out;
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: zoom 0.3s;
}

@keyframes zoom {
  from { transform: translate(-50%, -50%) scale(0.8); }
  to { transform: translate(-50%, -50%) scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
}

.lightbox-close:hover {
  color: #ccc;
}

/* Project Detail */
.project-detail {
  max-width: 900px;
  margin: 0 auto;
}

.project-category {
  color: var(--muted);
  font-size: 14px;
  margin: -10px 0 20px;
}

.project-description {
  margin-bottom: 30px;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.project-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s;
}

.project-image img:hover {
  transform: scale(1.02);
}

.card-image {
  margin: -18px -18px 12px -18px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary-50);
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 15px var(--glow-blue);
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  transition: transform 0.2s, box-shadow 0.2s;
}

.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.portfolio-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.portfolio-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.portfolio-overlay {
  padding: 16px;
}

.portfolio-overlay h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--text);
}

.portfolio-category,
.portfolio-category-badge {
  display: inline-block;
  background: var(--primary-50);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.portfolio-description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 8px 0;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

/* Portfolio Detail */
.portfolio-detail-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.portfolio-detail-images img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s;
}

.portfolio-detail-images img:hover {
  transform: scale(1.02);
}

/* Admin Styles */
.admin-section {
  max-width: 1200px;
  margin: 0 auto;
}

.admin-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.admin-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.admin-card:hover {
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.admin-card h3 {
  margin-top: 0;
  color: var(--text);
}

.admin-table {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.admin-table table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  background: var(--primary-50);
  color: var(--text);
  text-align: left;
  padding: 12px;
  font-weight: 600;
  border-bottom: 2px solid var(--border);
}

.admin-table td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

.no-image {
  display: inline-block;
  width: 80px;
  height: 60px;
  background: var(--border);
  color: var(--muted);
  font-size: 11px;
  text-align: center;
  line-height: 60px;
  border-radius: 6px;
}

.admin-actions {
  white-space: nowrap;
}

.btn-small {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  margin-right: 8px;
}

.btn-edit {
  background: var(--primary);
  color: #fff;
}

.btn-edit:hover {
  background: var(--primary-600);
}

.btn-delete {
  background: #DC2626;
  color: #fff;
}

.btn-delete:hover {
  background: #B91C1C;
}

.admin-form {
  max-width: 700px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="number"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(30, 41, 59, 0.5);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--glow-blue), 0 0 20px var(--glow-blue);
  background: rgba(30, 41, 59, 0.7);
}

.form-group small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.existing-images {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.existing-image img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.alert-success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.5);
  color: #6EE7B7;
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.alert-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #FCA5A5;
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

/* Tables - Dark Theme */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

table thead {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
  border-bottom: 2px solid var(--primary);
}

table th {
  padding: 14px 16px;
  text-align: left;
  color: var(--text);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}

table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

table tbody tr {
  transition: all 0.2s ease;
}

table tbody tr:hover {
  background: var(--primary-50);
  box-shadow: inset 0 0 20px var(--glow-blue);
}

table tbody tr:last-child td {
  border-bottom: none;
}

/* Scrollbar Dark Theme */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 6px;
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--primary-600), var(--accent));
}

/* Animations de chargement */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card,
.admin-card,
.portfolio-item {
  animation: fadeInUp 0.6s ease-out;
}

/* Selection de texte personnalisée */
::selection {
  background: var(--primary);
  color: #FFFFFF;
  text-shadow: none;
}

::-moz-selection {
  background: var(--primary);
  color: #FFFFFF;
  text-shadow: none;
}
