/* ============================================
   CONZELT Law Offices — Main Stylesheet
   ============================================ */

:root {
  --primary: #000000;
  --primary-dark: #000000;
  --accent: #ffcd57;
  --accent-hover: #f0be3a;
  --dark-slate: #1e293b;
  --body-text: #67768e;
  --lavender-bg: #f9f6fe;
  --gray-bg: #F2F5F7;
  --white: #ffffff;
  --black: #000000;
  --footer-bg: #111111;
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.07);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.13);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-pill: 50px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: loaderSpin 0.7s linear infinite;
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

/* ============================================
   BAR COUNCIL DISCLAIMER POPUP
   ============================================ */
.bci-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.bci-overlay.hidden {
  display: none;
}

.bci-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: bciSlideIn 0.4s ease;
}

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

.bci-header {
  background: var(--primary);
  padding: 28px 32px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  text-align: center;
}

.bci-header h2 {
  color: var(--white);
  font-size: 1.2rem;
  margin: 0;
  letter-spacing: 0.5px;
}

.bci-body {
  padding: 32px;
}

.bci-body p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--dark-slate);
  margin-bottom: 14px;
}

.bci-body p:last-of-type {
  margin-bottom: 0;
}

.bci-body strong {
  color: var(--primary);
}

.bci-footer {
  padding: 0 32px 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.bci-btn {
  padding: 13px 36px;
  border-radius: var(--radius-pill);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.bci-btn-agree {
  background: var(--primary);
  color: var(--white);
}

.bci-btn-agree:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.bci-btn-disagree {
  background: transparent;
  color: var(--body-text);
  border: 2px solid rgba(0, 0, 0, 0.15);
}

.bci-btn-disagree:hover {
  border-color: rgba(0, 0, 0, 0.3);
  background: var(--gray-bg);
}

@media (max-width: 768px) {
  .bci-body { padding: 24px 20px; }
  .bci-footer { padding: 0 20px 24px; flex-direction: column; }
  .bci-btn { width: 100%; text-align: center; }
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-slate);
  line-height: 1.7;
  background: var(--gray-bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

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

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--dark-slate);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { color: var(--body-text); margin-bottom: 1rem; }

.section-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: inline-block;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-gold {
  background: var(--accent);
  color: var(--dark-slate);
}
.btn-gold:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 205, 87, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background: var(--gray-bg);
  transform: translateY(-2px);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  background: var(--primary);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: -40px;
}

.nav-logo img {
  height: 46px;
  width: auto;
}

.nav-logo span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
  display: block;
  padding: 10px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(242, 245, 247, 0.76);
  border-radius: 6px;
  transition: all var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* Dropdown */
.nav-menu .has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  vertical-align: middle;
  transition: transform var(--transition);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  border-top: 3px solid var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 12px 20px;
  font-size: 0.88rem;
  color: var(--dark-slate);
  transition: all var(--transition);
}

.dropdown a:hover {
  background: var(--lavender-bg);
  color: var(--primary);
  padding-left: 26px;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: all var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  margin-top: 76px;
  background-color: #000;
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)),
                     url('../images/Front-page.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 110px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 205, 87, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

/* Hero floating shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-shapes .shape {
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-shape-1 {
  width: 120px; height: 120px;
  top: 10%; left: 5%;
  border-color: rgba(255, 205, 87, 0.35) !important;
  animation: floatDrift1 20s infinite, spinSlow 28s linear infinite;
}
.hero-shape-2 {
  width: 80px; height: 80px;
  top: 65%; right: 6%;
  border-color: rgba(255, 255, 255, 0.28) !important;
  animation: floatDrift2 18s infinite, spinSlow 22s linear infinite reverse;
}
.hero-shape-3 {
  width: 90px; height: 90px;
  top: 20%; right: 10%;
  animation: floatDrift3 22s infinite, spinSlow 30s linear infinite;
}
.hero-shape-4 {
  width: 100px; height: 100px;
  top: 50%; left: 12%;
  border-color: rgba(180, 140, 255, 0.3) !important;
  animation: floatDrift2 24s infinite reverse, spinSlow 30s linear infinite;
}
.hero-shape-5 {
  width: 60px; height: 60px;
  top: 75%; left: 38%;
  border-color: rgba(255, 180, 100, 0.3) !important;
  animation: floatDrift1 16s infinite, spinSlow 20s linear infinite reverse;
}
.hero-shape-6 {
  width: 70px; height: 70px;
  top: 8%; right: 28%;
  border-color: rgba(100, 255, 180, 0.3) !important;
  animation: floatDrift3 21s infinite reverse, spinSlow 26s linear infinite;
}
.hero-shape-7 {
  width: 55px; height: 55px;
  top: 40%; right: 35%;
  border-color: rgba(255, 100, 150, 0.28) !important;
  animation: floatDrift1 19s infinite, spinSlow 24s linear infinite reverse;
}
.hero-shape-8 {
  width: 85px; height: 85px;
  top: 80%; left: 70%;
  border-color: rgba(255, 220, 100, 0.25) !important;
  animation: floatDrift2 23s infinite reverse, spinSlow 32s linear infinite;
}
.hero-shape-9 {
  width: 75px; height: 75px;
  top: 30%; left: 40%;
  animation: floatDrift3 25s infinite, spinSlow 28s linear infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-content .section-label {
  color: var(--accent);
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   PROCESS / THREE-STEP SECTION
   ============================================ */
.process-section {
  padding: 90px 0;
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.process-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(6, 0, 151, 0.06);
  transition: all var(--transition);
  position: relative;
}

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

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lavender-bg);
  color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.process-card h3 {
  margin-bottom: 14px;
  color: var(--dark-slate);
}

.process-card p {
  font-size: 0.93rem;
  line-height: 1.75;
}

/* ============================================
   LEGAL UPDATES / BLOG SECTION
   ============================================ */
.updates-section {
  padding: 90px 0;
  background: var(--lavender-bg);
}

.updates-header {
  max-width: 680px;
  margin-bottom: 50px;
}

.updates-header p {
  font-size: 0.95rem;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.update-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

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

.update-card-header {
  background: var(--primary);
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
}

.update-card-header::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.update-card-header h3 {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.update-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.update-card-body p {
  font-size: 0.88rem;
  line-height: 1.7;
  flex: 1;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
  margin-top: 14px;
  transition: gap var(--transition);
}

.read-more:hover { gap: 10px; }

.read-more::after {
  content: '\2192';
  font-size: 1.1rem;
}

/* ============================================
   CLIENT ENGAGEMENT SECTION
   ============================================ */
.engagement-section {
  padding: 90px 0;
  background: var(--white);
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.engagement-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(6, 0, 151, 0.08);
  background: var(--white);
  transition: all var(--transition);
}

.engagement-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(6, 0, 151, 0.15);
}

.engagement-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--lavender-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--primary);
}

.engagement-icon svg {
  width: 26px;
  height: 26px;
}

.engagement-card h3 { margin-bottom: 14px; }

.engagement-card p {
  font-size: 0.93rem;
  line-height: 1.75;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  margin-top: 76px;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 60%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 110px;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 205, 87, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

/* Video variant */
.page-hero--video {
  position: relative;
}

.page-hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.page-hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.page-hero--video .page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-content .section-label {
  color: var(--accent);
  margin-bottom: 16px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   VALUES SECTION (Why Us)
   ============================================ */
.values-section {
  padding: 90px 0;
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(6, 0, 151, 0.06);
  transition: all var(--transition);
  text-align: center;
}

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

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--lavender-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--primary);
}

.value-icon svg {
  width: 28px;
  height: 28px;
}

.value-card h3 {
  margin-bottom: 12px;
  color: var(--dark-slate);
}

.value-card p {
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ============================================
   APPROACH SECTION (Why Us)
   ============================================ */
.approach-section {
  padding: 90px 0;
  background: var(--lavender-bg);
}

.approach-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.approach-content .section-label {
  margin-bottom: 16px;
}

.approach-content h2 {
  margin-bottom: 30px;
}

.approach-quote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  color: var(--dark-slate);
  padding: 28px 36px;
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  margin-bottom: 28px;
  line-height: 1.6;
}

.approach-content p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 32px;
}

.legal-framework-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
  text-align: left;
}

.legal-framework-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
}

.legal-framework-item strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--dark-slate);
  margin-bottom: 6px;
}

.legal-framework-item span {
  font-size: 0.85rem;
  color: var(--body-text);
}

/* ============================================
   STARTUP SERVICES SECTION
   ============================================ */
.startup-services-section {
  padding: 90px 0;
  background: var(--white);
}

.startup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.startup-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(6, 0, 151, 0.06);
  transition: all var(--transition);
  position: relative;
}

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

.startup-card-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  margin-bottom: 16px;
}

.startup-card:hover .startup-card-number {
  color: var(--accent);
}

.startup-card h3 {
  margin-bottom: 12px;
  color: var(--dark-slate);
}

.startup-card p {
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ============================================
   STARTUP PILLARS SECTION
   ============================================ */
.startup-pillars-section {
  padding: 90px 0;
  background: var(--lavender-bg);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(6, 0, 151, 0.06);
  transition: all var(--transition);
  text-align: center;
}

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

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--lavender-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--primary);
}

.pillar-icon svg {
  width: 28px;
  height: 28px;
}

.pillar-card h3 {
  margin-bottom: 12px;
  color: var(--dark-slate);
}

.pillar-card p {
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ============================================
   PRACTICE AREAS SECTION
   ============================================ */
.practice-areas-section {
  padding: 90px 0;
  background: var(--lavender-bg);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.practice-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(6, 0, 151, 0.06);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

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

.practice-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--lavender-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.practice-icon svg {
  width: 26px;
  height: 26px;
}

.practice-card h3 {
  margin-bottom: 12px;
  color: var(--dark-slate);
}

.practice-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  flex: 1;
}

.practice-card .read-more {
  margin-top: 16px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 60%, #0d0d0d 100%);
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* ============================================
   FORM SECTION (Careers)
   ============================================ */
.form-section {
  padding: 90px 0;
  background: var(--white);
}

.form-wrapper {
  max-width: 750px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 44px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(6, 0, 151, 0.06);
}

.conzelt-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-slate);
}

.form-group .required {
  color: #e53e3e;
}

.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--dark-slate);
  background: var(--gray-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.form-group input[type="file"] {
  padding: 10px 12px;
  cursor: pointer;
}

.form-notice {
  margin-top: 28px;
  font-size: 0.78rem;
  color: var(--body-text);
  line-height: 1.7;
  text-align: center;
  font-style: italic;
}

/* Case form layout */
.case-form-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}

.conzelt-form textarea {
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--dark-slate);
  background: var(--gray-bg);
  resize: vertical;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.conzelt-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.file-hint {
  font-size: 0.75rem;
  color: var(--body-text);
  margin-top: 4px;
}

/* Sidebar */
.case-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(6, 0, 151, 0.06);
}

.sidebar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent);
}

.sidebar-contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.sidebar-contact-list li svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}

.sidebar-contact-list li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-contact-list li strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--dark-slate);
}

.sidebar-contact-list li span {
  font-size: 0.85rem;
  color: var(--body-text);
  line-height: 1.5;
}

.sidebar-contact-list li a {
  color: var(--primary);
}

.sidebar-contact-list li a:hover {
  text-decoration: underline;
}

.sidebar-steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 0;
}

.sidebar-steps li {
  font-size: 0.88rem;
  color: var(--body-text);
  line-height: 1.65;
  padding-left: 32px;
  position: relative;
  counter-increment: step;
}

.sidebar-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-steps li strong {
  color: var(--dark-slate);
}

@media (max-width: 992px) {
  .case-form-layout { grid-template-columns: 1fr; }
  .case-sidebar { position: static; }
}

@media (max-width: 768px) {
  .conzelt-form .form-grid { grid-template-columns: 1fr; }
  .form-wrapper { padding: 32px 24px; }
}

/* ============================================
   CONTRACTS PAGE
   ============================================ */
.contracts-section {
  padding: 90px 0;
  background: var(--lavender-bg);
}

.contracts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.contract-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(6, 0, 151, 0.06);
  transition: all var(--transition);
}

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

.contract-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  margin-bottom: 16px;
}

.contract-card:hover .contract-number {
  color: var(--accent);
}

.contract-card h3 {
  margin-bottom: 12px;
  color: var(--dark-slate);
}

.contract-card p {
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ============================================
   CIVIL PAGE SECTIONS
   ============================================ */
.civil-overview-section {
  padding: 90px 0;
  background: var(--white);
}

.civil-overview {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.civil-overview p {
  font-size: 1rem;
  line-height: 1.85;
  margin-top: 20px;
}

.civil-areas-section {
  padding: 90px 0;
  background: var(--lavender-bg);
}

.civil-sub-heading {
  font-size: 1.2rem;
  color: var(--dark-slate);
  margin-top: 40px;
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}

.civil-grid {
  display: grid;
  gap: 28px;
  margin-bottom: 36px;
}

.civil-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.civil-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.civil-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(6, 0, 151, 0.06);
  transition: all var(--transition);
}

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

.civil-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--lavender-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.civil-card-icon svg {
  width: 26px;
  height: 26px;
}

.civil-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-slate);
  margin-bottom: 12px;
}

.civil-card p {
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: 90px 0;
  background: var(--gray-bg);
}

.about-content {
  max-width: 800px;
  margin: 30px auto 0;
  text-align: center;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-services li {
  margin-bottom: 10px;
}

.footer-services a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: all var(--transition);
}

.footer-services a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  align-items: flex-start;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  color: var(--accent);
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.disclaimer {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.disclaimer p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
}

/* ============================================
   FLOATING GEOMETRIC SHAPES
   ============================================ */
.floating-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Square */
.shape-square {
  border-radius: 3px;
}

/* Ring */
.shape-ring {
  border-radius: 50%;
}

/* Triangle (outline only via SVG background) */
.shape-triangle {
  border: none !important;
  background: transparent !important;
  position: absolute;
}

/* Individual shape positions and animations */
/* --- Page floating shapes (light backgrounds) --- */
.shape-1 {
  width: 100px; height: 100px;
  top: 10%; left: 4%;
  border-color: rgba(255, 140, 0, 0.3);
  animation: floatDrift1 18s infinite, spinSlow 25s linear infinite;
}
.shape-2 {
  width: 80px; height: 80px;
  top: 22%; right: 6%;
  border-color: rgba(0, 120, 210, 0.28);
  animation: floatDrift2 22s infinite, spinSlow 30s linear infinite reverse;
}
.shape-3 {
  width: 65px; height: 65px;
  top: 42%; left: 10%;
  border-color: rgba(200, 40, 40, 0.25);
  animation: floatDrift3 16s infinite, spinSlow 20s linear infinite;
}
.shape-4 {
  width: 120px; height: 120px;
  top: 58%; right: 12%;
  border-color: rgba(110, 70, 220, 0.22);
  animation: floatDrift1 24s infinite reverse, spinSlow 35s linear infinite;
}
.shape-5 {
  width: 70px; height: 70px;
  top: 32%; left: 82%;
  animation: floatDrift2 20s infinite, spinSlow 28s linear infinite;
}
.shape-6 {
  width: 55px; height: 55px;
  top: 72%; left: 6%;
  border-color: rgba(230, 120, 0, 0.3);
  animation: floatDrift3 15s infinite, spinSlow 18s linear infinite reverse;
}
.shape-7 {
  width: 90px; height: 90px;
  top: 78%; right: 4%;
  border-color: rgba(0, 160, 190, 0.25);
  animation: floatDrift1 20s infinite, spinSlow 28s linear infinite;
}
.shape-8 {
  width: 80px; height: 80px;
  top: 52%; left: 42%;
  animation: floatDrift2 26s infinite reverse, spinSlow 32s linear infinite;
}
.shape-9 {
  width: 70px; height: 70px;
  top: 12%; left: 52%;
  border-color: rgba(50, 190, 80, 0.25);
  animation: floatDrift3 19s infinite, spinSlow 22s linear infinite reverse;
}
.shape-10 {
  width: 85px; height: 85px;
  top: 88%; left: 32%;
  border-color: rgba(200, 160, 30, 0.28);
  animation: floatDrift1 17s infinite reverse, spinSlow 24s linear infinite;
}
.shape-11 {
  width: 60px; height: 60px;
  top: 5%; left: 30%;
  border-color: rgba(180, 0, 180, 0.22);
  animation: floatDrift2 21s infinite, spinSlow 26s linear infinite;
}
.shape-12 {
  width: 110px; height: 110px;
  top: 65%; left: 55%;
  border-color: rgba(0, 100, 180, 0.2);
  animation: floatDrift3 25s infinite reverse, spinSlow 34s linear infinite reverse;
}
.shape-13 {
  width: 75px; height: 75px;
  top: 38%; right: 30%;
  animation: floatDrift1 23s infinite, spinSlow 30s linear infinite reverse;
}
.shape-14 {
  width: 50px; height: 50px;
  top: 85%; left: 70%;
  border-color: rgba(80, 200, 170, 0.28);
  animation: floatDrift2 16s infinite reverse, spinSlow 20s linear infinite;
}
.shape-15 {
  width: 95px; height: 95px;
  top: 48%; left: 75%;
  border-color: rgba(220, 80, 60, 0.2);
  animation: floatDrift1 27s infinite, spinSlow 36s linear infinite reverse;
}

@keyframes floatDrift1 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(30px, -40px); }
  50% { transform: translate(-20px, -80px); }
  75% { transform: translate(40px, -30px); }
}

@keyframes floatDrift2 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-40px, 30px); }
  50% { transform: translate(25px, -50px); }
  75% { transform: translate(-30px, -20px); }
}

@keyframes floatDrift3 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(20px, 40px); }
  50% { transform: translate(-35px, 20px); }
  75% { transform: translate(15px, -35px); }
}

@keyframes spinSlow {
  from { rotate: 0deg; }
  to { rotate: 360deg; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
}

.fade-up.visible {
  animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-up.visible:nth-child(2) { animation-delay: 0.1s; }
.fade-up.visible:nth-child(3) { animation-delay: 0.2s; }
.fade-up.visible:nth-child(4) { animation-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
  .process-grid,
  .engagement-grid { grid-template-columns: repeat(2, 1fr); }
  .updates-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .startup-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .civil-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process-grid[style*="repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; }
  .contracts-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-framework-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

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

  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    height: calc(100vh - 76px);
    background: var(--primary);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
  }

  .nav-menu.open { transform: translateX(0); }

  .nav-menu > li > a {
    padding: 14px 16px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    display: none;
  }

  .has-dropdown.active .dropdown { display: block; }

  .dropdown a {
    color: rgba(255, 255, 255, 0.7);
    padding-left: 32px;
  }

  .dropdown a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
  }

  .hero { padding: 70px 0 80px; }
  .process-grid,
  .engagement-grid { grid-template-columns: 1fr; }
  .updates-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .practice-grid { grid-template-columns: 1fr; }
  .startup-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .civil-grid-3, .civil-grid-2 { grid-template-columns: 1fr; }
  .contracts-grid { grid-template-columns: 1fr; }
  .legal-framework-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* Toggle animation */
.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); }
