/* =============================================
   V8 - Alon Lev Law Firm
   Gold-on-Dark Luxury Theme
   Inspired by yshaymoyal style, uniquely composed
   ============================================= */

/* --- Google Font --- */
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --gold-light: #DFBE3E;
  --gold-mid: #B89E39;
  --gold-dark: #876D26;
  --gold-glow: rgba(223, 190, 62, 0.25);
  --dark-bg: #1a1a1a;
  --dark-bg-alt: #272629;
  --dark-card: #2F2F2F;
  --dark-surface: #333333;
  --white: #FFFFFF;
  --off-white: #E5E5E5;
  --text-gray: #AAAAAA;
  --text-dark: #484848;
  --error-red: #FF7C7C;
  --transition-warm: #FFBC7D;

  --font-main: 'Assistant', sans-serif;
  --radius-card: 24px 15px 0px 0px;
  --radius-arch: 109px 109px 0px 0px;
  --radius-btn: 30px;
  --radius-input: 9px;

  --shadow-deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
  --shadow-natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
  --shadow-gold: 0 4px 30px rgba(223, 190, 62, 0.15);

  --max-width: 1140px;
  --transition-speed: 0.5s;
  --spring-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-main);
  background: var(--dark-bg);
  color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 0.95;
  color: var(--gold-mid);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.3rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.3rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  color: var(--off-white);
}

::selection {
  background: var(--gold-dark);
  color: var(--white);
}

/* --- Page Transition Overlay --- */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--transition-warm);
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.page-transition.active {
  opacity: 1;
}

/* --- Gold Shimmer Keyframes --- */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(223, 190, 62, 0.4); }
  50% { box-shadow: 0 0 20px 10px rgba(223, 190, 62, 0); }
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  30% { transform: translate(3%, -15%); }
  50% { transform: translate(-10%, 5%); }
  70% { transform: translate(8%, -5%); }
  90% { transform: translate(-3%, 10%); }
}

/* --- Gold Particle Effect (CSS-only) --- */
@keyframes particle-float {
  0% { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
  20% { opacity: 1; transform: translateY(-20px) translateX(10px) scale(1); }
  80% { opacity: 0.5; }
  100% { transform: translateY(-100px) translateX(-20px) scale(0); opacity: 0; }
}

.gold-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.gold-particles::before,
.gold-particles::after,
.gold-particles span::before,
.gold-particles span::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: particle-float 4s ease-in-out infinite;
}

.gold-particles::before {
  right: 15%;
  bottom: 30%;
  animation-delay: 0s;
}

.gold-particles::after {
  right: 45%;
  bottom: 50%;
  animation-delay: 1s;
  width: 3px;
  height: 3px;
}

.gold-particles span {
  position: absolute;
  inset: 0;
}

.gold-particles span::before {
  right: 70%;
  bottom: 20%;
  animation-delay: 2s;
  width: 5px;
  height: 5px;
}

.gold-particles span::after {
  right: 30%;
  bottom: 70%;
  animation-delay: 3s;
  width: 2px;
  height: 2px;
}

/* --- Grain Overlay --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}

/* --- Reveal Animation Classes --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--spring-ease), transform 0.8s var(--spring-ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--spring-ease), transform 0.8s var(--spring-ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--spring-ease), transform 0.8s var(--spring-ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--spring-ease), transform 0.8s var(--spring-ease);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Section Tag (small label above titles) --- */
.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
  padding-right: 1.5rem;
}

.section-tag::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
}

/* --- Section Spacing --- */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-dark {
  background: var(--dark-bg-alt);
}

.section-darker {
  background: var(--dark-card);
}

/* --- Gold Divider --- */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  margin: 1.5rem 0;
  border-radius: 2px;
}

.gold-divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184, 158, 57, 0.15);
  transition: all 0.4s ease;
}

.header.scrolled {
  background: rgba(26, 26, 26, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-mid);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-gray);
  letter-spacing: 1px;
}

/* Desktop Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-desktop a {
  color: var(--off-white);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 1rem;
  left: 1rem;
  height: 2px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--spring-ease);
}

.nav-desktop a:hover {
  color: var(--gold-light);
}

.nav-desktop a:hover::after {
  transform: scaleX(1);
}

.nav-desktop a.active {
  color: var(--gold-light);
}

.nav-desktop a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-right: 1rem;
}

.nav-cta a {
  background: transparent;
  color: var(--gold-mid) !important;
  border: 2px double var(--gold-dark);
  border-radius: var(--radius-btn);
  padding: 0.5rem 1.5rem !important;
  font-weight: 600 !important;
  transition: all 0.5s ease !important;
}

.nav-cta a:hover {
  background: var(--gold-light);
  color: var(--dark-bg) !important;
  border-color: var(--gold-light);
  transform: scale(1.05);
}

.nav-cta a::after {
  display: none;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--gold-light);
  transition: all 0.3s ease;
  display: block;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.98);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  color: var(--off-white);
  font-size: 1.5rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-mobile a:hover {
  color: var(--gold-light);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.92) 0%,
    rgba(39, 38, 41, 0.85) 50%,
    rgba(26, 26, 26, 0.75) 100%
  );
  z-index: 1;
}

/* Decorative gold diagonal lines */
.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.hero-decor::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 1px;
  height: 200%;
  background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
  opacity: 0.15;
  transform: rotate(-25deg);
}

.hero-decor::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 10%;
  width: 1px;
  height: 200%;
  background: linear-gradient(to bottom, transparent, var(--gold-mid), transparent);
  opacity: 0.1;
  transform: rotate(-25deg);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  color: var(--gold-mid);
  margin-bottom: 1.5rem;
  line-height: 0.9;
  /* Gold shimmer text effect */
  background: linear-gradient(
    120deg,
    var(--gold-dark) 0%,
    var(--gold-light) 25%,
    var(--gold-mid) 50%,
    var(--gold-light) 75%,
    var(--gold-dark) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s linear infinite;
}

.hero-text p {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--off-white);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(184, 158, 57, 0.2);
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-top: 0.25rem;
  display: block;
}

/* Hero image side */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  width: 380px;
  height: 480px;
  border-radius: var(--radius-arch);
  overflow: hidden;
  border: 3px solid var(--gold-dark);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.4) 0%, transparent 40%);
}

/* Decorative floating badge */
.hero-badge {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: var(--dark-card);
  border: 2px double var(--gold-dark);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 4s ease-in-out infinite;
  z-index: 4;
}

.hero-badge .badge-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge .badge-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--dark-bg);
}

.hero-badge .badge-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

.hero-badge .badge-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-gray);
}

/* =============================================
   PAGE HERO (subpages)
   ============================================= */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  overflow: hidden;
  background: var(--dark-bg-alt);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.7) 0%,
    rgba(39, 38, 41, 0.9) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
}

.page-hero-content h1 {
  margin-bottom: 1rem;
  color: var(--gold-mid);
}

.page-hero-content p {
  font-size: 1.2rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--text-gray);
}

.breadcrumb span {
  color: var(--gold-mid);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-main);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--text-dark);
  color: var(--gold-mid);
  font-size: 1.1rem;
  padding: 0.9rem 2.5rem;
  border: 3px double var(--gold-dark);
  border-radius: var(--radius-btn);
}

.btn-primary:hover {
  color: var(--white);
  border-color: var(--white);
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-mid);
  font-size: 1rem;
  padding: 0.8rem 2rem;
  border: 2px double var(--gold-dark);
  border-radius: var(--radius-btn);
}

.btn-secondary:hover {
  background: var(--gold-light);
  color: var(--dark-bg);
  border-color: var(--gold-light);
  transform: scale(1.05);
}

.btn-gold {
  background: var(--gold-light);
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-input);
  border: none;
}

.btn-gold:hover {
  background: var(--gold-mid);
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(223, 190, 62, 0.3);
}

.btn-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--dark-bg-alt);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.5s var(--spring-ease), box-shadow 0.5s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 54px 54px 0 0;
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--gold-mid);
}

.card-body p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* =============================================
   PRACTICE AREA CARDS (with Lottie)
   ============================================= */
.area-card {
  background: var(--dark-bg-alt);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.5s var(--spring-ease), box-shadow 0.5s ease;
  position: relative;
}

.area-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.area-card-icon {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-bg-alt) 100%);
  position: relative;
  overflow: hidden;
}

.area-card-icon::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.area-card-icon lottie-player,
.area-card-icon dotlottie-player {
  width: 80px;
  height: 80px;
}

.area-card-icon svg {
  width: 56px;
  height: 56px;
  fill: var(--gold-light);
}

.area-card-body {
  padding: 1.5rem;
}

.area-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--gold-mid);
}

.area-card-body p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.area-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: gap 0.3s ease;
}

.area-card-link:hover {
  gap: 0.8rem;
}

/* =============================================
   GRID LAYOUTS
   ============================================= */
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

/* =============================================
   TEAM MEMBER CARDS
   ============================================= */
.team-card {
  position: relative;
  background: var(--dark-bg-alt);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.5s var(--spring-ease);
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card-photo {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-arch);
}

.team-card-info {
  padding: 1.5rem;
  text-align: center;
}

.team-card-info h3 {
  font-size: 1.3rem;
  color: var(--gold-mid);
  margin-bottom: 0.25rem;
}

.team-card-info .role {
  font-size: 0.9rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.team-card-info .motto {
  font-size: 0.85rem;
  color: var(--text-gray);
  font-style: italic;
}

/* =============================================
   TIMELINE (Wins)
   ============================================= */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  right: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-dark), var(--gold-light), var(--gold-dark));
  transform: translateX(50%);
}

.timeline-item {
  position: relative;
  width: 45%;
  padding: 1.5rem;
  background: var(--dark-bg-alt);
  border-radius: 16px;
  margin-bottom: 2rem;
  border: 1px solid rgba(184, 158, 57, 0.15);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.timeline-item:hover {
  transform: translateY(-3px);
  border-color: var(--gold-dark);
}

.timeline-item:nth-child(odd) {
  margin-right: auto;
  margin-left: 55%;
}

.timeline-item:nth-child(even) {
  margin-left: auto;
  margin-right: 55%;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 2rem;
  width: 14px;
  height: 14px;
  background: var(--gold-light);
  border-radius: 50%;
  border: 3px solid var(--dark-bg);
}

.timeline-item:nth-child(odd)::before {
  right: auto;
  left: -38px;
}

.timeline-item:nth-child(even)::before {
  left: auto;
  right: -38px;
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
  background: var(--dark-card);
  display: inline-block;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.timeline-category {
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-item h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* =============================================
   REVIEW CARDS
   ============================================= */
.review-card {
  background: var(--dark-bg-alt);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(184, 158, 57, 0.1);
  transition: transform 0.4s ease, border-color 0.4s ease;
  position: relative;
}

.review-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-dark);
}

.review-card::before {
  content: '\201D';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--gold-dark);
  opacity: 0.3;
  line-height: 1;
  font-family: serif;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-light);
}

.review-text {
  font-size: 1rem;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.review-author {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-mid);
}

/* =============================================
   ARTICLE CARDS
   ============================================= */
.article-card {
  background: var(--dark-bg-alt);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.4s var(--spring-ease), box-shadow 0.4s ease;
  border: 1px solid rgba(184, 158, 57, 0.08);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.article-card-header {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.article-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(223, 190, 62, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.article-date {
  font-size: 0.8rem;
  color: var(--text-gray);
}

.article-card-body {
  padding: 1rem 1.5rem 1.5rem;
}

.article-card-body h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.article-card-body p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: gap 0.3s ease;
}

.article-read-more:hover {
  gap: 0.8rem;
  color: var(--white);
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-section {
  background: var(--dark-card);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 700px;
}

.contact-form .full-width {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-main);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-input);
  background: var(--white);
  color: var(--text-dark);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  direction: rtl;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(223, 190, 62, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23484848' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L2 5h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 1rem center;
}

.contact-form .btn-gold {
  width: 100%;
  justify-content: center;
  font-size: 1.1rem;
  padding: 1rem;
  cursor: pointer;
}

/* Contact Info sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(223, 190, 62, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--gold-light);
}

.contact-info-text h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.contact-info-text p {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.contact-info-text a {
  color: var(--gold-light);
  font-size: 0.95rem;
}

/* Map */
.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(184, 158, 57, 0.15);
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
  filter: grayscale(0.6) brightness(0.7);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark-bg);
  border-top: 1px solid rgba(184, 158, 57, 0.15);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1rem;
  color: var(--gold-mid);
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  color: var(--text-gray);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color 0.3s ease, padding-right 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-right: 0.5rem;
}

.footer-contact p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: var(--gold-light);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-gray);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(184, 158, 57, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--gold-light);
  transform: scale(1.1);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: var(--gold-light);
}

.footer-social a:hover svg {
  fill: var(--dark-bg);
}

/* =============================================
   FLOATING ELEMENTS
   ============================================= */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.float-btn-whatsapp {
  background: #25D366;
}

.float-btn-phone {
  background: var(--gold-light);
}

.float-btn svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

.float-btn-phone svg {
  fill: var(--dark-bg);
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--dark-card);
  border: 1px solid rgba(184, 158, 57, 0.3);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold-dark);
  border-color: var(--gold-light);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-light);
  transform: rotate(180deg);
}

/* =============================================
   ADVANTAGES / FEATURES
   ============================================= */
.advantage-card {
  padding: 2rem;
  background: var(--dark-bg-alt);
  border-radius: 16px;
  border: 1px solid rgba(184, 158, 57, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 0;
  background: var(--gold-light);
  transition: height 0.5s var(--spring-ease);
}

.advantage-card:hover::before {
  height: 100%;
}

.advantage-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
}

.advantage-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-dark);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.advantage-card h3 {
  font-size: 1.3rem;
  color: var(--gold-mid);
  margin-bottom: 0.75rem;
}

.advantage-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(184, 158, 57, 0.2);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-top: 0.5rem;
  display: block;
}

/* =============================================
   SVG DECORATIVE ELEMENTS
   ============================================= */
.svg-scales {
  position: absolute;
  opacity: 0.04;
  pointer-events: none;
}

.svg-scales-left {
  right: -100px;
  top: 10%;
  width: 400px;
  height: 400px;
}

.svg-scales-right {
  left: -100px;
  bottom: 10%;
  width: 300px;
  height: 300px;
}

/* Gold Corner Decoration */
.gold-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  pointer-events: none;
}

.gold-corner-tr {
  top: 0;
  left: 0;
  border-top: 2px solid var(--gold-dark);
  border-left: 2px solid var(--gold-dark);
  opacity: 0.3;
}

.gold-corner-bl {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid var(--gold-dark);
  border-right: 2px solid var(--gold-dark);
  opacity: 0.3;
}

/* =============================================
   COUNTER ANIMATION
   ============================================= */
.counter[data-target] {
  font-variant-numeric: tabular-nums;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { margin-top: 2rem; }
  .hero-image-frame { width: 300px; height: 380px; }
  .hero-badge { left: 0; }
}

@media (max-width: 767px) {
  .section { padding: 4rem 0; }

  .header-inner { height: 70px; }
  .hero { padding-top: 70px; }
  .page-hero { padding-top: 70px; min-height: 35vh; }

  .nav-desktop { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .grid-5, .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }

  .hero-content { padding: 0 1.5rem; }
  .hero-image-frame { width: 260px; height: 320px; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .hero-badge { display: none; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-number { font-size: 2.2rem; }

  .timeline::before { right: 20px; }
  .timeline-item { width: calc(100% - 50px); margin-right: 0 !important; margin-left: auto !important; }
  .timeline-item:nth-child(even) { margin-right: 0 !important; margin-left: auto !important; }
  .timeline-item::before { right: auto !important; left: auto; }
  .timeline-item:nth-child(odd)::before { left: -38px; }
  .timeline-item:nth-child(even)::before { left: -38px; right: auto !important; }

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

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-social { justify-content: center; }

  .floating-buttons { bottom: 1.5rem; left: 1.5rem; }
  .float-btn { width: 48px; height: 48px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .container { padding: 0 1rem; }
}

/* =============================================
   CSS-ONLY GOLD SHIMMER PATTERN BACKGROUND
   ============================================= */
.shimmer-bg {
  position: relative;
  overflow: hidden;
}

.shimmer-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 200px at 20% 50%, rgba(223, 190, 62, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 80% 30%, rgba(184, 158, 57, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 300px 400px at 50% 80%, rgba(135, 109, 38, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Gold mesh gradient pattern */
.mesh-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(30deg, var(--gold-dark) 12%, transparent 12.5%, transparent 87%, var(--gold-dark) 87.5%, var(--gold-dark)),
    linear-gradient(150deg, var(--gold-dark) 12%, transparent 12.5%, transparent 87%, var(--gold-dark) 87.5%, var(--gold-dark)),
    linear-gradient(30deg, var(--gold-dark) 12%, transparent 12.5%, transparent 87%, var(--gold-dark) 87.5%, var(--gold-dark)),
    linear-gradient(150deg, var(--gold-dark) 12%, transparent 12.5%, transparent 87%, var(--gold-dark) 87.5%, var(--gold-dark)),
    linear-gradient(60deg, var(--gold-mid) 25%, transparent 25.5%, transparent 75%, var(--gold-mid) 75%, var(--gold-mid)),
    linear-gradient(60deg, var(--gold-mid) 25%, transparent 25.5%, transparent 75%, var(--gold-mid) 75%, var(--gold-mid));
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
  pointer-events: none;
}

/* =============================================
   ABOUT PAGE SPECIFIC
   ============================================= */
.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--off-white);
}

.about-highlight {
  color: var(--gold-mid);
  font-weight: 600;
}

.about-closing {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-mid);
  border-right: 3px solid var(--gold-light);
  padding-right: 1.5rem;
  margin-top: 2rem;
  line-height: 1.6;
}

/* =============================================
   TEAM PAGE SPECIFIC
   ============================================= */
.team-detail {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: start;
}

.team-detail:nth-child(even) {
  direction: ltr;
}

.team-detail:nth-child(even) .team-detail-content {
  direction: rtl;
}

.team-detail-photo {
  border-radius: var(--radius-arch);
  overflow: hidden;
  border: 3px solid var(--gold-dark);
  position: relative;
}

.team-detail-photo img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: top;
}

.team-detail-content h2 {
  margin-bottom: 0.5rem;
}

.team-detail-role {
  font-size: 1rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-detail-motto {
  font-size: 1rem;
  color: var(--text-gray);
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-right: 1rem;
  border-right: 3px solid var(--gold-dark);
}

.team-detail-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.team-detail-list {
  margin-top: 1.5rem;
}

.team-detail-list li {
  padding: 0.4rem 0;
  padding-right: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-gray);
}

.team-detail-list li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  background: var(--gold-dark);
  border-radius: 50%;
}

@media (max-width: 767px) {
  .team-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .team-detail:nth-child(even) { direction: rtl; }
  .team-detail-photo { max-width: 300px; margin: 0 auto; }
  .team-detail-motto { border-right: none; padding-right: 0; }
  .team-detail-list li { padding-right: 1.5rem; text-align: right; }
}

/* =============================================
   PRACTICE AREAS PAGE - DETAILED
   ============================================= */
.area-detail {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(184, 158, 57, 0.1);
}

.area-detail:last-child {
  border-bottom: none;
}

.area-detail-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.area-detail-icon {
  width: 80px;
  height: 80px;
  background: rgba(223, 190, 62, 0.08);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.area-detail-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--gold-light);
}

.area-detail h2 {
  margin-bottom: 0.25rem;
}

.area-detail .subtitle {
  font-size: 1rem;
  color: var(--gold-dark);
}

.area-detail-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}

.area-detail-body p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.area-services h4 {
  color: var(--gold-mid);
  margin-bottom: 1rem;
}

.area-services li {
  padding: 0.5rem 0;
  padding-right: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--off-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.area-services li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 1rem;
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
}

.area-closing {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(223, 190, 62, 0.05);
  border-radius: 12px;
  border-right: 3px solid var(--gold-dark);
}

.area-closing p {
  color: var(--gold-mid);
  font-weight: 500;
}

@media (max-width: 767px) {
  .area-detail-body { grid-template-columns: 1fr; }
  .area-detail-header { flex-direction: column; text-align: center; }
}

/* =============================================
   MINI CTA SECTION (for sub-pages)
   ============================================= */
.mini-cta {
  background: linear-gradient(135deg, var(--dark-bg-alt) 0%, var(--dark-card) 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mini-cta h2 {
  margin-bottom: 1rem;
}

.mini-cta p {
  color: var(--text-gray);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.mini-cta .btn-primary {
  font-size: 1.2rem;
  padding: 1rem 3rem;
}

/* =============================================
   GOOGLE RATING BADGE
   ============================================= */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--dark-bg-alt);
  border: 1px solid rgba(184, 158, 57, 0.2);
  border-radius: 16px;
  padding: 1.5rem 2rem;
}

.google-badge-rating {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.google-badge-info {
  display: flex;
  flex-direction: column;
}

.google-badge-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.25rem;
}

.google-badge-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-light);
}

.google-badge-text {
  font-size: 0.85rem;
  color: var(--text-gray);
}

/* =============================================
   WINS PAGE - ALTERNATE LAYOUT
   ============================================= */
.wins-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.win-card {
  background: var(--dark-bg-alt);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(184, 158, 57, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.win-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  transform: scaleX(0);
  transition: transform 0.5s var(--spring-ease);
}

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

.win-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
}

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