/* ===========================================
   GILCHRIST LAW FIRM — Main Stylesheet
   =========================================== */

/* --- CSS Variables --- */
:root {
  --primary-dark: #0d1b2a;
  --primary: #1a2e4a;
  --primary-light: #243d5e;
  --gold: #c9a84c;
  --gold-light: #f0c040;
  --gold-dark: #9a7a2a;
  --gold-gradient: linear-gradient(135deg, #c9a84c 0%, #f0c040 50%, #c9a84c 100%);
  --white: #ffffff;
  --off-white: #f8f6f0;
  --light: #e8e4d9;
  --gray-light: #f1f1f1;
  --gray: #6b7280;
  --dark: #0f0f0f;
  --text: #2c3e50;
  --text-light: #566573;
  --border: rgba(201, 168, 76, 0.3);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 10px 40px rgba(201, 168, 76, 0.3);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ===========================================
   PRELOADER
   =========================================== */
#preloader {
  position: fixed; inset: 0;
  background: var(--primary-dark);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.scale-symbol {
  font-size: 5rem; color: var(--gold);
  display: block; margin-bottom: 1rem;
  animation: scaleFloat 2s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(201,168,76,0.6));
}
@keyframes scaleFloat {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-20px) rotate(8deg); }
}
.preloader-text {
  font-family: var(--font-heading); color: var(--white);
  font-size: 1.4rem; letter-spacing: 0.5em; margin-bottom: 2rem;
}
.preloader-bar { width: 280px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; margin: 0 auto; }
.preloader-progress { height: 100%; background: var(--gold-gradient); border-radius: 2px; animation: loadBar 2.5s ease forwards; }
@keyframes loadBar { from { width: 0; } to { width: 100%; } }

/* ===========================================
   NAVIGATION
   =========================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.4rem 0; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(20px);
  padding: 0.7rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.8rem; flex-shrink: 0; }
.logo-icon { font-size: 2.2rem; color: var(--gold); filter: drop-shadow(0 0 12px rgba(201,168,76,0.5)); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; color: var(--white); letter-spacing: 0.15em; }
.logo-sub { font-size: 0.58rem; color: var(--gold); letter-spacing: 0.35em; text-transform: uppercase; }
.nav-menu { flex: 1; display: flex; justify-content: center; }
.nav-links { display: flex; align-items: center; gap: 0.3rem; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  color: rgba(255,255,255,0.85); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.5rem 1rem; border-radius: 4px;
  display: flex; align-items: center; gap: 0.3rem; transition: var(--transition);
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--gold); }
.nav-links > li > a .fa-chevron-down { font-size: 0.6rem; transition: transform 0.3s; }
.nav-links > li:hover > a .fa-chevron-down { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute; top: calc(100% + 1rem); left: 0;
  background: rgba(13,27,42,0.98); border: 1px solid var(--border);
  border-radius: 10px; padding: 0.5rem; min-width: 220px;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all 0.3s ease; box-shadow: 0 20px 60px rgba(0,0,0,0.4); z-index: 100;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 0.6rem 1rem; color: rgba(255,255,255,0.7); font-size: 0.83rem; border-radius: 6px; transition: var(--transition); }
.dropdown-menu a:hover { color: var(--gold); background: rgba(201,168,76,0.1); padding-left: 1.4rem; }

/* Mega Menu */
.mega-menu { min-width: 520px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; padding: 1.5rem; }
.mega-col h4 { color: var(--gold); font-family: var(--font-heading); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.8rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }

/* Nav CTA */
.nav-cta { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.nav-phone { color: var(--gold); font-size: 0.82rem; font-weight: 700; display: flex; align-items: center; gap: 0.4rem; }
.nav-phone:hover { color: var(--gold-light); }
.btn-consultation {
  background: var(--gold-gradient); color: var(--primary-dark);
  padding: 0.6rem 1.3rem; border-radius: 4px; font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: var(--shadow-gold); transition: var(--transition);
}
.btn-consultation:hover { transform: translateY(-2px); box-shadow: 0 15px 50px rgba(201,168,76,0.5); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  background: var(--primary-dark); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(ellipse at 15% 85%, rgba(201,168,76,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(26,46,74,0.6) 0%, transparent 55%),
    linear-gradient(180deg, rgba(13,27,42,0.4) 0%, rgba(13,27,42,0.75) 100%);
}
.hero-3d-shapes { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; animation: floatShape 12s ease-in-out infinite; }
.shape-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(201,168,76,0.08), transparent); top: -150px; right: -100px; animation-delay: 0s; }
.shape-2 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(26,46,74,0.3), transparent); bottom: -100px; left: -80px; animation-delay: -4s; }
.shape-3 { width: 250px; height: 250px; background: radial-gradient(circle, rgba(201,168,76,0.06), transparent); top: 40%; left: 5%; animation-delay: -8s; }
@keyframes floatShape {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
  33% { transform: translateY(-30px) scale(1.05) rotate(120deg); }
  66% { transform: translateY(20px) scale(0.96) rotate(240deg); }
}

/* Hero Content */
.hero-content { position: relative; z-index: 4; text-align: center; max-width: 950px; padding: 0 2rem; }
.hero-badge {
  display: inline-block; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold); padding: 0.45rem 1.6rem; border-radius: 50px;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.5rem;
  animation: fadeSlideDown 0.8s ease 0.5s both;
}
.hero-title {
  font-family: var(--font-heading); font-size: clamp(3.2rem, 9vw, 7.5rem);
  font-weight: 900; line-height: 1; margin-bottom: 0.6rem;
  animation: fadeSlideUp 0.8s ease 0.7s both;
}
.hero-title .line-1 { display: block; color: var(--white); letter-spacing: 0.05em; }
.hero-title .line-2 { display: block; color: var(--gold); letter-spacing: 0.08em; text-shadow: 0 0 80px rgba(201,168,76,0.4); }
.hero-subtitle {
  font-family: var(--font-accent); font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  color: rgba(255,255,255,0.65); font-style: italic; letter-spacing: 0.25em;
  margin-bottom: 1.2rem; animation: fadeSlideUp 0.8s ease 0.9s both;
}
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.6); max-width: 660px;
  margin: 0 auto 2.5rem; line-height: 1.85;
  animation: fadeSlideUp 0.8s ease 1.1s both;
}
.hero-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; animation: fadeSlideUp 0.8s ease 1.3s both; }

/* 3D Button Primary */
.btn-3d-gold {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2.6rem; background: var(--gold-gradient); color: var(--primary-dark);
  font-weight: 800; font-size: 0.88rem; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 4px; overflow: hidden; transition: var(--transition);
  box-shadow: 0 6px 0 #7a5f1a, var(--shadow-gold);
}
.btn-3d-gold:hover { transform: translateY(-3px); box-shadow: 0 9px 0 #7a5f1a, 0 20px 60px rgba(201,168,76,0.5); }
.btn-3d-gold:active { transform: translateY(2px); box-shadow: 0 3px 0 #7a5f1a; }
.btn-3d-gold .btn-shine { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent); opacity: 0; transition: opacity 0.3s; }
.btn-3d-gold:hover .btn-shine { opacity: 1; }

/* Button Secondary */
.btn-3d-outline {
  display: inline-flex; align-items: center; padding: 1rem 2.6rem;
  border: 2px solid rgba(255,255,255,0.35); color: var(--white);
  font-weight: 600; font-size: 0.88rem; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 4px; backdrop-filter: blur(10px); background: rgba(255,255,255,0.04);
  transition: var(--transition);
}
.btn-3d-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); transform: translateY(-2px); }

/* Hero Stats Bar */
.hero-stats {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
  background: rgba(255,255,255,0.06); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 14px;
  padding: 1.5rem 1rem; animation: fadeSlideUp 0.8s ease 1.5s both;
}
.hero-stat { text-align: center; padding: 0 2.5rem; }
.hero-stat-num { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-stat-suffix { font-size: 1.5rem; color: var(--gold); font-weight: 700; }
.hero-stat-label { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.3rem; }
.stat-sep { width: 1px; height: 48px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* Hero Scroll */
.hero-scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 4; animation: fadeSlideUp 1s ease 2s both; }
.scroll-inner { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.35); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; }
.scroll-bar { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(201,168,76,0.8), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

/* Animations */
@keyframes fadeSlideDown { from { opacity: 0; transform: translateY(-25px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ===========================================
   TICKER BAR
   =========================================== */
.ticker-bar { display: flex; align-items: center; overflow: hidden; background: var(--gold); }
.ticker-label {
  flex-shrink: 0; background: var(--primary-dark); color: var(--gold);
  font-weight: 900; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.75rem 1.5rem; white-space: nowrap;
}
.ticker-track { flex: 1; overflow: hidden; }
.ticker-text {
  display: inline-block; white-space: nowrap;
  font-size: 0.82rem; font-weight: 700; color: var(--primary-dark);
  animation: tickerRoll 35s linear infinite; padding: 0.75rem 0;
}
@keyframes tickerRoll { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

/* ===========================================
   SECTION COMMONS
   =========================================== */
section { padding: 5.5rem 0; }
.section-tag {
  display: inline-block; color: var(--gold); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 0.7rem;
}
.section-tag::before { content: '— '; }
.section-tag::after { content: ' —'; }
.section-title { font-family: var(--font-heading); font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; color: var(--primary-dark); line-height: 1.2; margin-bottom: 1rem; }
.section-title.light { color: var(--white); }
.gold-text { color: var(--gold); }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 600px; margin: 0 auto; line-height: 1.75; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.gold-bar { width: 55px; height: 3px; background: var(--gold-gradient); margin: 1rem 0; border-radius: 2px; }
.gold-bar.center { margin: 1rem auto; }

/* ===========================================
   ABOUT PREVIEW
   =========================================== */
.about-section { background: var(--white); padding: 6rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

/* Image Stack */
.about-image-wrapper { position: relative; }
.image-stack { position: relative; height: 560px; }
.img-main {
  position: absolute; top: 0; left: 0; right: 90px; bottom: 90px;
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow);
  background: linear-gradient(135deg, #1a2e4a 0%, #0d1b2a 100%);
  display: flex; align-items: center; justify-content: center;
}
.img-main-content {
  width: 100%; height: 100%; position: relative; overflow: hidden;
}
.img-main-content img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.img-main-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(13,27,42,0.38) 0%, rgba(13,27,42,0.15) 100%);
}
.img-main-icon { font-size: 6rem; opacity: 0.25; }
.img-main-label {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: rgba(13,27,42,0.85); border-left: 3px solid var(--gold);
  color: var(--gold); font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700;
  padding: 0.5rem 1rem; border-radius: 0 6px 6px 0;
}
.img-secondary {
  position: absolute; bottom: 0; right: 0; width: 250px; height: 250px;
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow);
  background: linear-gradient(135deg, #c9a84c 0%, #9a7a2a 100%);
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
}
.img-secondary img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-floating-badge {
  position: absolute; top: 45%; right: 25px; transform: translateY(-50%);
  background: var(--white); border-radius: 14px; padding: 1.2rem 1.8rem;
  box-shadow: 0 10px 50px rgba(0,0,0,0.18); display: flex; align-items: center; gap: 1rem; z-index: 10;
  border: 1px solid var(--light); animation: badgePulse 4s ease-in-out infinite;
}
@keyframes badgePulse { 0%, 100% { transform: translateY(-50%); } 50% { transform: translateY(calc(-50% - 6px)); } }
.badge-icon-lg { font-size: 2rem; color: var(--gold); }
.badge-stat strong { display: block; font-family: var(--font-heading); font-size: 2rem; color: var(--primary-dark); line-height: 1; }
.badge-stat span { font-size: 0.72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; }

/* About Content */
.about-content { padding-right: 1rem; }
.about-lead { font-size: 1.12rem; color: var(--primary); font-weight: 500; line-height: 1.85; margin-bottom: 1rem; }
.about-features { margin: 1.8rem 0 2rem; display: flex; flex-direction: column; gap: 0.9rem; }
.feature-row { display: flex; align-items: center; gap: 0.9rem; font-size: 0.95rem; }
.feature-row i { color: var(--gold); font-size: 1.05rem; flex-shrink: 0; }
.about-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Buttons */
.btn-gold {
  display: inline-block; background: var(--gold-gradient); color: var(--primary-dark);
  padding: 0.9rem 2rem; border-radius: 4px; font-weight: 700; font-size: 0.84rem;
  letter-spacing: 0.08em; text-transform: uppercase; box-shadow: var(--shadow-gold);
  transition: var(--transition);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 15px 40px rgba(201,168,76,0.45); }
.btn-outline-dark {
  display: inline-block; border: 2px solid var(--primary); color: var(--primary);
  padding: 0.9rem 2rem; border-radius: 4px; font-weight: 600; font-size: 0.84rem;
  letter-spacing: 0.08em; text-transform: uppercase; transition: var(--transition);
}
.btn-outline-dark:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

/* ===========================================
   PRACTICE AREAS
   =========================================== */
.practice-section { background: var(--off-white); padding: 6rem 0; }
.practice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }

/* 3D Flip Card */
.practice-card { perspective: 1000px; cursor: pointer; }
.card-inner {
  position: relative; width: 100%; height: 290px;
  transform-style: preserve-3d; transition: transform 0.75s cubic-bezier(0.4,0,0.2,1);
  border-radius: 14px;
}
.practice-card:hover .card-inner { transform: rotateY(180deg); }
.card-front, .card-back {
  position: absolute; inset: 0; border-radius: 14px;
  backface-visibility: hidden; -webkit-backface-visibility: hidden; overflow: hidden;
}
.card-front {
  background: var(--primary-dark); border: 1px solid var(--light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  padding: 1.5rem; text-align: left; transition: box-shadow 0.3s; overflow: hidden;
}
.card-front-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
  transition: transform 0.6s ease;
  z-index: 0;
}
.practice-card:hover .card-front-img { transform: scale(1.07); }
.card-front-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.35) 55%, rgba(13,27,42,0.1) 100%);
}
.card-front-body { position: relative; z-index: 2; }
.card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 0.8rem; transition: var(--transition);
  box-shadow: 0 4px 15px rgba(201,168,76,0.4); color: var(--primary-dark);
}
.practice-card:hover .card-icon { transform: scale(1.08); }
.card-front h3 { font-family: var(--font-heading); font-size: 1rem; color: var(--white); margin-bottom: 0.4rem; }
.card-front p { font-size: 0.76rem; color: rgba(255,255,255,0.65); line-height: 1.55; }
.card-back {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
  transform: rotateY(180deg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 2rem; text-align: center;
  border: 1px solid rgba(201,168,76,0.25);
}
.card-back h3 { font-family: var(--font-heading); font-size: 1rem; color: var(--gold); margin-bottom: 0.8rem; }
.card-back p { font-size: 0.79rem; color: rgba(255,255,255,0.78); line-height: 1.65; margin-bottom: 1.3rem; }
.card-cta {
  display: inline-block; background: var(--gold-gradient); color: var(--primary-dark);
  padding: 0.5rem 1.2rem; border-radius: 4px; font-size: 0.74rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; transition: var(--transition);
}
.card-cta:hover { transform: scale(1.06); }
.practice-cta-bar { text-align: center; margin-top: 3rem; }

/* ===========================================
   STATISTICS SECTION
   =========================================== */
.stats-section {
  background: linear-gradient(145deg, var(--primary-dark) 0%, #0a1628 100%);
  padding: 5rem 0; position: relative; overflow: hidden;
}
.stats-section::before {
  content: '⚖'; position: absolute; font-size: 35rem;
  color: rgba(255,255,255,0.015); right: -5%; top: 50%; transform: translateY(-50%);
  pointer-events: none;
}
.stats-section::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.07) 0%, transparent 60%);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; z-index: 1; text-align: center; }
.stat-block { padding: 2.5rem 1rem; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-block:last-child { border-right: none; }
.stat-icon-big { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.stat-value { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 700; color: var(--white); line-height: 1; display: flex; align-items: flex-start; justify-content: center; }
.stat-value sup { font-size: 1.5rem; color: var(--gold); margin-top: 0.5rem; }
.stat-value .counter { display: inline; }
.stat-block p { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.6rem; }

/* ===========================================
   ATTORNEYS SECTION
   =========================================== */
.attorneys-section { background: var(--white); padding: 6rem 0; }
.attorneys-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
.attorney-card {
  background: var(--white); border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07); border: 1px solid var(--light);
  transition: var(--transition);
}
.attorney-card:hover { transform: translateY(-10px); box-shadow: 0 30px 80px rgba(0,0,0,0.14); }
.attorney-photo {
  height: 270px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.attorney-avatar { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 5rem; position: relative; }
.attorney-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform 0.5s ease; }
.attorney-card:hover .attorney-photo img { transform: scale(1.06); }
.attorney-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.9) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.attorney-overlay-info { color: var(--white); }
.attorney-overlay-info .at-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; }
.attorney-overlay-info .at-role { font-size: 0.78rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; }
.attorney-body { padding: 1.5rem; }
.attorney-specialties { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.spec-tag {
  background: rgba(201,168,76,0.1); color: var(--gold-dark);
  padding: 0.22rem 0.65rem; border-radius: 50px; font-size: 0.7rem; font-weight: 600;
  border: 1px solid rgba(201,168,76,0.22);
}
.attorney-bio { font-size: 0.84rem; color: var(--gray); line-height: 1.6; margin-bottom: 1.2rem; }
.atty-card-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; font-weight: 700; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.08em; transition: gap 0.3s; }
.atty-card-link:hover { gap: 0.7rem; color: var(--gold); }
.attorney-social { display: flex; gap: 0.5rem; }
.attorney-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--off-white); border: 1px solid var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; color: var(--gray); transition: var(--transition);
}
.attorney-social a:hover { background: var(--gold); color: var(--primary-dark); border-color: var(--gold); }
.attorneys-cta { text-align: center; }

/* ===========================================
   TESTIMONIALS
   =========================================== */
.testimonials-section { background: var(--off-white); padding: 6rem 0; }
.testimonials-wrapper { position: relative; overflow: hidden; }
.testimonials-slider { display: flex; transition: transform 0.55s ease; }
.testimonial-slide { min-width: 100%; padding: 0 1rem; }
.testimonial-card {
  background: var(--white); border-radius: 18px; padding: 3rem;
  max-width: 820px; margin: 0 auto; box-shadow: 0 10px 50px rgba(0,0,0,0.08);
  border: 1px solid var(--light); position: relative;
}
.t-quote-badge {
  position: absolute; top: -22px; left: 3rem; width: 52px; height: 52px;
  background: var(--gold-gradient); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-dark); font-size: 1.3rem; font-weight: 900;
  box-shadow: var(--shadow-gold);
}
.t-stars { display: flex; gap: 0.3rem; color: var(--gold); margin-bottom: 1rem; }
.t-text { font-family: var(--font-accent); font-size: 1.18rem; font-style: italic; color: var(--text); line-height: 1.85; margin-bottom: 1.5rem; }
.t-author { display: flex; align-items: center; gap: 1rem; border-top: 1px solid var(--light); padding-top: 1rem; }
.t-avatar {
  width: 52px; height: 52px; border-radius: 50%; background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-dark); font-size: 1.2rem; font-weight: 700; flex-shrink: 0;
}
.t-author-name { font-family: var(--font-heading); color: var(--primary-dark); font-size: 1rem; font-weight: 700; }
.t-author-sub { font-size: 0.8rem; color: var(--gray); }

/* Controls */
.testimonials-controls { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-top: 2.5rem; }
.t-btn {
  width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--gold);
  background: transparent; color: var(--gold); font-size: 0.9rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.t-btn:hover { background: var(--gold); color: var(--primary-dark); }
.t-dots { display: flex; gap: 0.5rem; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--light); cursor: pointer; transition: var(--transition); }
.t-dot.active { background: var(--gold); width: 26px; border-radius: 4px; }

/* ===========================================
   CASE RESULTS
   =========================================== */
.results-section { background: var(--primary-dark); padding: 6rem 0; position: relative; overflow: hidden; }
.results-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 0% 100%, rgba(201,168,76,0.1) 0%, transparent 55%),
              radial-gradient(ellipse at 100% 0%, rgba(26,46,74,0.4) 0%, transparent 55%);
}
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; z-index: 1; }
.result-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 14px; padding: 2.2rem; transition: var(--transition); backdrop-filter: blur(10px);
}
.result-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(201,168,76,0.5); transform: translateY(-6px); }
.result-amount { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700; color: var(--gold); margin-bottom: 0.3rem; }
.result-type { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1rem; }
.result-desc { font-size: 0.88rem; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 1.2rem; }
.result-tag {
  display: inline-block; background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3); color: var(--gold);
  padding: 0.3rem 0.8rem; border-radius: 4px; font-size: 0.72rem; font-weight: 700;
}

/* ===========================================
   WHY CHOOSE US
   =========================================== */
.why-section { background: var(--white); padding: 6rem 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-features { display: flex; flex-direction: column; gap: 1.8rem; }
.why-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.why-icon-box {
  width: 58px; height: 58px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.14), rgba(201,168,76,0.04));
  border: 1px solid rgba(201,168,76,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: var(--gold); transition: var(--transition);
}
.why-item:hover .why-icon-box { background: var(--gold-gradient); color: var(--primary-dark); transform: scale(1.08); }
.why-item-text h4 { font-family: var(--font-heading); font-size: 1.08rem; color: var(--primary-dark); margin-bottom: 0.35rem; }
.why-item-text p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* 3D Visual Card */
.why-visual-card {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 22px; padding: 3rem;
  transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
  box-shadow: 30px 30px 60px rgba(0,0,0,0.3), -5px -5px 20px rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.22); transition: transform 0.5s ease;
}
.why-visual-card:hover { transform: perspective(1000px) rotateY(-2deg) rotateX(1deg); }
.vc-title { font-family: var(--font-heading); font-size: 1.6rem; color: var(--white); margin-bottom: 0.4rem; }
.vc-sub { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 2.2rem; }
.vc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.vc-stat { background: rgba(255,255,255,0.05); border-radius: 10px; padding: 1.2rem; border: 1px solid rgba(255,255,255,0.05); }
.vc-num { font-family: var(--font-heading); font-size: 1.9rem; color: var(--gold); font-weight: 700; }
.vc-label { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 0.2rem; }
.vc-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.vc-tag { background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); color: var(--gold); padding: 0.3rem 0.8rem; border-radius: 4px; font-size: 0.72rem; }

/* ===========================================
   NEWS / BLOG
   =========================================== */
.news-section { background: var(--off-white); padding: 6rem 0; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.news-card {
  background: var(--white); border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07); border: 1px solid var(--light);
  transition: var(--transition);
}
.news-card:hover { transform: translateY(-8px); box-shadow: 0 25px 70px rgba(0,0,0,0.13); }
.news-img { height: 220px; position: relative; overflow: hidden; }
.news-img-bg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 4rem; transition: transform 0.5s ease; }
.news-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.news-card:hover .news-img-bg { transform: scale(1.08); }
.news-card:hover .news-img img { transform: scale(1.08); }
.news-cat {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold-gradient); color: var(--primary-dark);
  padding: 0.3rem 0.8rem; border-radius: 4px; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.news-body { padding: 1.5rem; }
.news-meta { font-size: 0.75rem; color: var(--gray); margin-bottom: 0.7rem; display: flex; gap: 1rem; }
.news-title { font-family: var(--font-heading); font-size: 1.1rem; color: var(--primary-dark); margin-bottom: 0.8rem; line-height: 1.4; transition: color 0.3s; }
.news-card:hover .news-title { color: var(--gold); }
.news-excerpt { font-size: 0.84rem; color: var(--gray); line-height: 1.6; margin-bottom: 1rem; }
.news-link { font-size: 0.8rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; display: flex; align-items: center; gap: 0.4rem; transition: gap 0.3s; }
.news-card:hover .news-link { gap: 0.7rem; }

/* ===========================================
   CONTACT SECTION
   =========================================== */
.contact-section { background: var(--white); padding: 6rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-family: var(--font-heading); font-size: 1.9rem; color: var(--primary-dark); margin-bottom: 1rem; }
.contact-info p { color: var(--text-light); line-height: 1.75; margin-bottom: 2.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-row { display: flex; gap: 1rem; align-items: flex-start; }
.c-icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-dark); font-size: 1.1rem; flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}
.c-text strong { display: block; font-family: var(--font-heading); font-size: 0.9rem; color: var(--primary-dark); margin-bottom: 0.2rem; }
.c-text span, .c-text a { font-size: 0.93rem; color: var(--text-light); display: block; line-height: 1.55; }
.c-text a:hover { color: var(--gold); }

/* Map Embed Area */
.map-container {
  margin-top: 2rem; border-radius: 14px; overflow: hidden;
  height: 220px; border: 2px solid var(--light); position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex; align-items: center; justify-content: center;
}
.map-placeholder { text-align: center; color: rgba(255,255,255,0.6); }
.map-placeholder i { font-size: 3rem; color: var(--gold); margin-bottom: 0.8rem; display: block; }
.map-placeholder p { font-size: 0.88rem; }
.map-placeholder a { color: var(--gold); text-decoration: underline; }

/* Contact Form */
.contact-form-box {
  background: var(--off-white); border-radius: 18px; padding: 2.8rem;
  box-shadow: 0 10px 50px rgba(0,0,0,0.07); border: 1px solid var(--light);
}
.form-heading { font-family: var(--font-heading); font-size: 1.6rem; color: var(--primary-dark); margin-bottom: 0.4rem; }
.form-sub { font-size: 0.84rem; color: var(--gray); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 0.45rem; text-transform: uppercase; letter-spacing: 0.08em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.85rem 1rem; border: 2px solid var(--light); border-radius: 8px;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--text);
  background: var(--white); transition: var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,168,76,0.1); }
.form-group textarea { height: 125px; resize: vertical; }
.form-group select option { background: var(--white); color: var(--text); }
.btn-submit {
  width: 100%; padding: 1rem; background: var(--gold-gradient); color: var(--primary-dark);
  border: none; border-radius: 8px; font-size: 0.9rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
  transition: var(--transition); box-shadow: var(--shadow-gold); font-family: var(--font-body);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 15px 40px rgba(201,168,76,0.4); }
.form-note { font-size: 0.76rem; color: var(--gray); text-align: center; margin-top: 0.8rem; }

/* ===========================================
   FOOTER
   =========================================== */
.footer { background: var(--dark); }
.footer-top { padding: 5rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-brand-desc { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.75; margin: 1.2rem 0 2rem; max-width: 290px; }
.footer-social { display: flex; gap: 0.7rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; color: rgba(255,255,255,0.45); transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--primary-dark); transform: translateY(-3px); }
.footer-col h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--white); margin-bottom: 1.4rem; padding-bottom: 0.8rem; position: relative; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--gold); }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 0.4rem; transition: var(--transition); }
.footer-col ul li a::before { content: '›'; color: var(--gold); font-size: 1rem; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 0.3rem; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 1rem; }
.footer-contact-row i { color: var(--gold); margin-top: 0.15rem; flex-shrink: 0; font-size: 0.9rem; }
.footer-contact-row span, .footer-contact-row a { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.55; }
.footer-contact-row a:hover { color: var(--gold); }
.footer-bottom {
  padding: 1.5rem 0; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.3); transition: color 0.3s; }
.footer-legal a:hover { color: var(--gold); }

/* ===========================================
   FLOATING ELEMENTS
   =========================================== */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 50px; height: 50px; background: var(--gold-gradient); color: var(--primary-dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; border: none;
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: var(--transition); box-shadow: var(--shadow-gold); z-index: 500;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* Cookie Banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(13,27,42,0.98); border-top: 2px solid var(--gold);
  padding: 1.2rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  z-index: 800; transform: translateY(100%); transition: transform 0.5s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 0.84rem; color: rgba(255,255,255,0.65); }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.8rem; flex-shrink: 0; }
.btn-accept-cookie {
  background: var(--gold-gradient); color: var(--primary-dark);
  border: none; padding: 0.5rem 1.2rem; border-radius: 4px;
  font-size: 0.8rem; font-weight: 700; cursor: pointer;
}
.btn-decline-cookie {
  background: transparent; color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.2); padding: 0.5rem 1.2rem;
  border-radius: 4px; font-size: 0.8rem; cursor: pointer;
}

/* ===========================================
   PAGE HEADER (inner pages)
   =========================================== */
.page-header {
  background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 10rem 0 5rem; text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.page-header h1 { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 900; color: var(--white); position: relative; z-index: 1; }
.page-header .gold-accent { color: var(--gold); }
.page-header p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-top: 0.8rem; position: relative; z-index: 1; }
.breadcrumb { display: flex; justify-content: center; gap: 0.8rem; margin-top: 1.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.4); position: relative; z-index: 1; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1200px) {
  .practice-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-phone { display: none; }
}
@media (max-width: 992px) {
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .image-stack { height: 420px; }
  .attorneys-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-block:nth-child(2n) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .news-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-menu.open {
    display: flex; position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(13,27,42,0.98); backdrop-filter: blur(20px);
    padding: 2rem; flex-direction: column; align-items: flex-start;
    border-top: 1px solid var(--border); max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .nav-links { flex-direction: column; width: 100%; gap: 0; }
  .nav-links > li > a { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); width: 100%; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border: none; box-shadow: none; padding: 0 0 0 1rem; }
  .mega-menu { grid-template-columns: 1fr; min-width: unset; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .stat-sep { width: 50%; height: 1px; }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .attorneys-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cookie-banner { flex-direction: column; }
}
@media (max-width: 480px) {
  .practice-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  section { padding: 3.5rem 0; }
  .hero-title { font-size: 2.8rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
