:root {
  --bg: #121212;
  --bg-soft: #1a1a1a;
  --card: rgba(26, 26, 26, 0.9);
  --accent: #c93530;
  --accent-hover: #e03d38;
  --text: #ffffff;
  --muted: #a0a0a0;
  --border-soft: rgba(255, 255, 255, 0.1);
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.6);
  --nav-height: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  background: #121212;
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-height);
}

body.no-scroll {
  overflow: hidden;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; }

.gradient-orb {
  position: fixed;
  pointer-events: none;
  opacity: 0.25;
  mix-blend-mode: screen;
  filter: blur(80px);
  z-index: -1;
}
.gradient-orb.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  top: -150px;
  left: -100px;
}
.gradient-orb.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #333, transparent 70%);
  bottom: -200px;
  right: -100px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 90;
  backdrop-filter: blur(18px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(18, 18, 18, 0.9);
  border-bottom: 1px solid var(--border-soft);
  padding-block: 0.2rem;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: var(--nav-height);
  padding-inline: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.nav-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-mark {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark span {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(201, 53, 48, 0.4);
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}
.nav-logo-mark img {
  height: 100%;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.nav-logo-mark img.logo-sticky {
  position: absolute;
  opacity: 0;
}

.nav.scrolled .nav-logo-mark img.logo-normal {
  display: none;
}

.nav.scrolled .nav-logo-mark img.logo-sticky {
  position: static;
  opacity: 1;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

@media (max-width: 1280px) {
  .nav-brand {
    display: none;
  }
}

.nav-brand-title {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.98rem;
  white-space: nowrap;
  color: var(--text);
}
.nav-brand-sub {
  font-size: 0.73rem;
  color: var(--muted);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .nav-center {
    display: none;
  }
}
.nav-link {
  color: var(--muted);
  position: relative;
  transition: color 0.18s ease;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transition: width 0.2s ease;
}
.nav-link:hover {
  color: var(--text);
}
.nav-link:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  gap: 0.45rem;
  cursor: pointer;
  background: transparent;
  color: var(--text);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; }
.btn-primary {
  border: none;
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 10px 25px rgba(201, 53, 48, 0.35);
  font-weight: 600;
}
.btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(201, 53, 48, 0.45);
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  padding: 0.25rem;
  margin-left: 0.25rem;
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
.nav-toggle-icon {
  width: 22px;
  height: 22px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-toggle-icon span {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.nav-toggle-icon span:nth-child(1) { top: 5px; }
.nav-toggle-icon span:nth-child(2) { top: 10px; }
.nav-toggle-icon span:nth-child(3) { top: 15px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(1) {
  top: 10px; transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(3) {
  top: 10px; transform: rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--bg-soft);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid var(--border-soft);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.6);
}
.nav-mobile-inner {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.nav-close {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
}
.nav-close:hover { color: var(--text); }
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 1.05rem;
}
.nav-mobile-links a { 
  padding: 0.75rem 0; 
  color: var(--muted); 
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: all 0.2s;
}
.nav-mobile-links a:hover { color: var(--text); padding-left: 0.5rem; }
.nav-mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.nav-mobile.show { right: 0; }

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  z-index: 95;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.page-shell {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.hero {
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201, 53, 48, 0.3);
  background: rgba(201, 53, 48, 0.05);
  margin-bottom: 1.2rem;
}
.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(201, 53, 48, 0.6);
}
.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.9rem;
  font-weight: 800;
}
.hero-title span.highlight {
  color: var(--accent);
}
.hero-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 33rem;
  margin-bottom: 1.25rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.pill {
  font-size: 0.8rem;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 2rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-meta-badge {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #ffffff;
  white-space: nowrap;
}

.hero-metrics {
  border-radius: 24px;
  background: #1a1a1a;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
}
.hero-metrics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.chip {
  font-size: 0.75rem;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201, 53, 48, 0.4);
  background: rgba(201, 53, 48, 0.1);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.hero-metrics-title {
  font-size: 0.9rem;
  color: var(--muted);
}
.hero-metrics-main {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.metric-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.metric-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.metric-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}
.metric-tag {
  font-size: 0.7rem;
  color: var(--accent);
  margin-top: 0.2rem;
  font-weight: 500;
}
.hero-metrics-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.hero-metrics-footer span.emphasis { color: var(--text); }

.section {
  padding-block: 4rem;
  border-top: 1px solid var(--border-soft);
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
}
.section-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.section-title {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
  font-weight: 700;
}
.section-subtitle {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 26rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.card-soft {
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  padding: 2rem;
}

.card-soft p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.why-list {
  display: grid;
  gap: 0.7rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.84rem;
  color: var(--text);
}

.why-bullet {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-bullet::after {
  content: "✓";
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
}

.why-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.why-text-block p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-feature-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.why-feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
  transform: translateY(-5px);
}

.why-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(201, 53, 48, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

.why-feature-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.why-feature-info p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.why-visual {
  position: sticky;
  top: 100px;
  background: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-soft);
  border-radius: 32px;
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.why-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}

.why-main-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
}

.why-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--accent);
  color: #fff;
  padding: 1.5rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  box-shadow: 0 15px 35px rgba(201, 53, 48, 0.4);
}

.why-badge-count {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.why-badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .why-main-img {
    height: 450px;
  }
}

@media (max-width: 640px) {
  .why-features {
    grid-template-columns: 1fr;
  }
  
  .why-main-img {
    height: 350px;
  }
}

.card-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  object-fit: cover;
  border: 1px solid var(--border-soft);
  display: block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  border-radius: 24px;
  background: #1a1a1a;
  border: 1px solid var(--border-soft);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.service-card .card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-soft);
}

.service-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.service-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  transition: all 0.2s;
}

.service-footer:hover {
  color: var(--accent-hover);
}

.service-chip {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  font-weight: 500;
}

/* Blog card content classes */
.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
  gap: 0.75rem;
}
.article-meta svg { vertical-align: middle; margin-right: 3px; }

.article-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-top: 0.25rem;
}

.article-excerpt {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  -webkit-line-clamp: 2;
  -moz-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
}
.service-chip {
  font-size: 0.7rem;
  border-radius: var(--radius-pill);
  padding: 0.15rem 0.6rem;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.contact-clients {
  display: grid;
  grid-template-columns: 1.6fr 1.1fr;
  gap: 2.5rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.contact-card {
  border-radius: 24px;
  background: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-soft);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.input, .select, .textarea {
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.select option {
  background: #1a1a1a;
  color: var(--text);
}

/* Global select styling for accessibility */
select option {
  background-color: #1a1a1a;
  color: #ffffff;
}

.textarea {
  min-height: 120px;
  resize: vertical;
}

.input:focus, .select:focus, .textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(201, 53, 48, 0.15);
}

.clients-card {
  border-radius: 24px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.clients-description {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.logo-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 0.75rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.2s;
}

.logo-pill:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: var(--accent);
}

@media (max-width: 992px) {
  .contact-clients {
    grid-template-columns: 1fr;
  }
  
  .contact-card {
    padding: 2rem;
  }
}

@media (max-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-meta {
  display: grid;
  gap: 0.4rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-soft);
}
.contact-meta-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}
.contact-meta span.label {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-meta span.value { color: var(--text); font-weight: 500; }

.clients-card {
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  padding: 1.05rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.clients-description { font-size: 0.86rem; color: var(--muted); line-height: 1.6; }
.client-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}
.logo-pill {
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--muted);
  transition: all 0.2s ease;
}
.logo-pill:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--muted);
  color: var(--text);
}

#main-content {
  position: relative;
  z-index: 2;
  background: var(--bg);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7);
  min-height: 100vh;
}

footer {
  border-top: 1px solid var(--border-soft);
  background: #0a0a0a;
  padding-top: 5rem;
  padding-bottom: 2rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-logo-link:hover {
  opacity: 0.8;
}

.footer-logo-mark {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo-mark img {
  height: 100%;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.footer-brand-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.footer-brand-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.footer-brand-sub {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
  max-width: 360px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-group-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
  color: var(--text);
  font-weight: 700;
  opacity: 0.8;
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: var(--muted);
  font-size: 0.88rem;
  transition: all 0.2s ease;
  line-height: 1.2;
}

.footer-link:hover {
  color: var(--text);
  transform: translateX(3px);
}

.footer-bottom {
  max-width: 1400px;
  margin: 4rem auto 0;
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-bottom-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-credits {
  font-size: 0.78rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social {
  display: flex;
  gap: 0.85rem;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 15px;
  height: 15px;
}

@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 768px) {
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-bottom-info {
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-credits {
    border-left: none;
    padding-left: 0;
  }
}

/* --- Hero Slider --- */
.hero-slider-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-slider {
  width: 100%;
  position: relative;
  min-height: 85vh; /* adjust based on content */
  display: flex;
  align-items: center;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.7) 40%, rgba(10,10,10,0.3) 100%);
  z-index: 1;
}

.slide .page-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 0;
}

.slide .hero {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.slider-btn.prev {
  left: 2rem;
}

.slider-btn.next {
  right: 2rem;
}

.slider-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.05);
}

.slider-btn svg {
  width: 24px;
  height: 24px;
}

.slider-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.5rem;
  background: rgba(0,0,0,0.3);
  padding: 0.5rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.indicator {
  position: relative;
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-preview-widget {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 25;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.slider-preview-widget.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.preview-thumb {
  width: 72px;
  height: 48px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-image 0.5s ease;
}

.preview-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-right: 1.5rem;
}

.preview-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
}

.preview-slide-title {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
}

.dismiss-preview {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.dismiss-preview:hover {
  color: var(--text);
}

.indicator-preview {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  margin-bottom: 20px;
  width: 140px;
  height: 80px;
  background-size: cover;
  background-position: center;
  border: 2px solid white;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  pointer-events: none;
}

.indicator-preview::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: white transparent transparent transparent;
}

.indicator:hover .indicator-preview {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.6);
}

.indicator.active {
  background: var(--accent);
  width: 48px;
}

@media (max-width: 768px) {
  .slider-preview-widget,
  .slider-btn {
    display: none;
  }
}

/* --- Media Queries --- */

@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .nav-center { display: none; }
  .nav-right { gap: 0.4rem; }
  .btn { padding-inline: 0.8rem; }
  .btn span.btn-label { display: none; }
  .nav-toggle { display: inline-flex; }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .contact-clients { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
}

@media (max-width: 840px) {
  .hero { 
    grid-template-columns: minmax(0, 1fr); 
    text-align: center; 
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .hero-eyebrow, .hero-badges, .hero-ctas, .hero-meta { justify-content: center; }
  .hero-subtitle { margin-inline: auto; max-width: 600px; }
  
  /* Reduce clutter on small screens */
  .hero-metrics, .hero-meta, .hero-badges { display: none; }
  
  .slide .hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 640px) {
  .nav-right .btn { display: none; }
  .nav-inner { padding-inline: 1rem; }
  .page-shell { padding-inline: 1.25rem; }
  
  .services-grid { grid-template-columns: 1fr; }
  
  .contact-grid { grid-template-columns: 1fr; }
  
  .footer-nav { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .hero-metrics-main { grid-template-columns: minmax(0, 1fr); }
  .client-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* --- About Page Components --- */

.banner-header-wrap {
  height: auto;
  min-height: 450px;
}
.banner-header {
  height: 450px;
  position: relative;
}
.banner-shell {
  height: 100%;
  padding-bottom: 0;
}
.banner-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.timeline-list {
  position: relative;
  border-left: 2px solid var(--border-subtle);
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.timeline-item {
  position: relative;
}
.timeline-marker {
  position: absolute;
  left: -2.4rem;
  top: 0.2rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(201, 53, 48, 0.2);
}
.timeline-year {
  font-weight: 800;
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}
.timeline-title {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.timeline-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.value-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.value-name {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 1.5rem;
}
.lead-card {
  grid-column: span 3;
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(145deg, rgba(26,26,26,1) 0%, rgba(34,34,34,1) 100%);
  border-color: var(--border-strong);
}
.team-meta {
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.team-name {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.team-desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .grid-2-col, .team-grid {
    grid-template-columns: 1fr;
  }
  .lead-card {
    grid-column: span 1;
  }
}

/* --- Iconography --- */

.card-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.service-card .card-icon {
  margin-bottom: 1rem;
}

.value-card .card-icon {
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.social-icon {
  color: var(--muted);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 100%;
  height: 100%;
}

/* --- Services Page Components --- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-tile {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-tile:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.feature-tile .card-icon {
  margin-bottom: 1.25rem;
  padding: 12px;
  background: rgba(201, 53, 48, 0.05);
  border-radius: 12px;
}

.feature-title {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.feature-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.stats-cta {
  margin-top: 4rem;
  background: linear-gradient(145deg, rgba(26,26,26,1) 0%, rgba(34,34,34,1) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    flex-direction: column;
    gap: 2rem;
  }
  .stat-value {
    font-size: 2rem;
  }
}

/* --- Media Center Components --- */

.media-tabs {
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border-soft);
}

.media-tabs-list {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  padding: 0;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 0;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  color: var(--text);
}

.tab-btn.active {
  color: var(--accent);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(201, 53, 48, 0.4);
}

.tab-panel {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.article-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.article-title {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.article-excerpt {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.resource-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.resource-item {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.resource-item:hover {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.02);
}

.resource-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.resource-name {
  font-weight: 600;
  color: var(--text);
  font-size: 1.05rem;
}

.resource-desc {
  font-size: 0.9rem;
  color: var(--muted);
}

.resource-action {
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .media-tabs-list {
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 5px;
  }
  .resource-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

/* --- Contact Page Components --- */

.contact-grid-main {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--accent);
}

.info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.info-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.info-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--muted);
}

.info-content {
  color: var(--text);
  line-height: 1.6;
  font-size: 0.95rem;
}

.hours-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.info-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-soft);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.info-pill strong {
  color: var(--text);
}

/* --- FAQ Accordion --- */

.faq-section {
  margin-top: 5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 2rem auto 0;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--border-strong);
}

.faq-header {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.faq-toggle {
  width: 20px;
  height: 20px;
  color: var(--muted);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-item.active {
  border-color: var(--accent);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.01);
}

.faq-item.active .faq-content {
  max-height: 500px;
}

.faq-body {
  padding: 0 2rem 1.5rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .contact-grid-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-info-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-info-stack {
    grid-template-columns: 1fr;
  }
  .faq-header {
    padding: 1.25rem 1.5rem;
  }
  .faq-question {
    font-size: 1rem;
  }
}

/* --- Consignment Nomination Components --- */

.nomination-portal {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

.portal-main {
  display: flex;
  flex-direction: column;
}

.form-section-head {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-soft);
  margin: 1.5rem 0 1.25rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--accent);
}

.form-section-head:first-child {
  margin-top: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--muted);
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

.account-card {
  position: sticky;
  top: 100px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.account-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.account-meta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.account-link {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.account-link:hover {
  color: var(--accent);
}

@media (max-width: 1240px) {
  .nomination-portal {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .account-card {
    position: static;
    margin-top: 2rem;
    max-width: 600px;
  }
}

@media (max-width: 992px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Quote Page Components --- */

.quote-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-step-title {
  margin: 2.5rem 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-soft);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-step-title:first-of-type {
  margin-top: 0;
}

.form-step-title span {
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.quote-submit-bar {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: center;
}

.quote-success-msg {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.quote-success-msg.show {
  display: flex;
  animation: fadeIn 0.4s ease forwards;
}

/* --- Legal & Policy Pages --- */

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 4rem;
  line-height: 1.8;
  color: var(--muted);
}

.legal-card h2 {
  color: var(--text);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  margin-bottom: 1.5rem;
}

.legal-card ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.legal-card li {
  margin-bottom: 0.75rem;
}

.legal-card strong {
  color: var(--text);
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.sitemap-group-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.sitemap-link-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sitemap-link {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.sitemap-link:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .legal-card {
    padding: 2.5rem 1.5rem;
  }
  .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* --- GDPR UI Components --- */

#gdpr-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-soft);
  z-index: 10000;
  transition: transform 0.4s ease-in-out;
  transform: translateY(100%);
  padding: 0;
  height: auto;
  max-height: 80vh;
  overflow-y: auto;
}

#gdpr-banner.show {
  transform: translateY(0);
}

.gdpr-banner-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
}

.gdpr-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .gdpr-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
}

.gdpr-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.gdpr-text a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 500;
}

.gdpr-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

@media (min-width: 768px) {
  .gdpr-btns {
    flex-direction: row;
    gap: 1rem;
    width: auto;
    flex-shrink: 0;
  }
}

.gdpr-btns .btn {
  width: 100%;
}

@media (min-width: 768px) {
  .gdpr-btns .btn {
    width: auto;
  }
}

#gdpr-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#gdpr-modal.show {
  display: flex;
  opacity: 1;
}

.gdpr-modal-card {
  background: #1a1a1a;
  border: 1px solid var(--border-soft);
  width: 90%;
  max-width: 600px;
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s ease;
  max-height: 90vh;
  overflow-y: auto;
}

#gdpr-modal.show .gdpr-modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: var(--muted); cursor: pointer;
}

@media (max-width: 992px) {
  .gdpr-btns .btn {
    width: 100%;
  }
  .gdpr-modal-card {
    padding: 2rem 1.5rem;
  }
}

/* ============================================================
   ARTICLE DETAIL VIEW
   ============================================================ */
.article-container {
  margin-top: -5rem;
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 3.5rem;
  border-radius: var(--radius-lg);
}

.article-header-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-soft);
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.btn-back svg { width: 16px; }
.btn-back:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border-color: rgba(255,255,255,0.25);
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.article-byline svg { width: 14px; vertical-align: middle; margin-right: 4px; }
.article-category-pill {
  padding: 0.25rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(201, 53, 48, 0.12);
  border: 1px solid rgba(201, 53, 48, 0.3);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-body {
  font-size: 1.125rem;
  line-height: 1.85;
  color: #c8c8c8;
  margin-bottom: 3rem;
}
.article-body p { margin-bottom: 1.25rem; }
.article-body h2 { font-size: 1.5rem; color: var(--text); margin: 2rem 0 0.75rem; }
.article-body h3 { font-size: 1.25rem; color: var(--text); margin: 1.75rem 0 0.6rem; }
.article-body strong { color: var(--text); font-weight: 600; }
.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(201,53,48,0.06);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--muted);
}
.article-body img {
  width: 100%;
  border-radius: 12px;
  margin: 1.5rem 0;
  object-fit: cover;
}

/* ============================================================
   ARTICLE PHOTO GALLERY
   ============================================================ */
.article-gallery-section {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-soft);
}

.article-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.article-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  background: var(--bg-soft);
}
.article-gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.article-gallery-item:hover img { transform: scale(1.04); }
.article-gallery-item figcaption {
  padding: 0.6rem 0.9rem;
  font-size: 0.8rem;
  color: var(--muted);
  background: rgba(0,0,0,0.5);
  position: absolute;
  bottom: 0; left: 0; right: 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.article-gallery-item:hover figcaption { transform: translateY(0); }

/* Lightbox expand */
.article-gallery-item.lightbox-active {
  position: fixed;
  inset: 0;
  z-index: 1000;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.92);
  cursor: zoom-out;
}
.article-gallery-item.lightbox-active img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  aspect-ratio: unset;
  object-fit: contain;
  border-radius: 8px;
}
.article-gallery-item.lightbox-active figcaption {
  transform: translateY(0);
  position: fixed;
  bottom: 2rem;
  text-align: center;
  font-size: 1rem;
  color: #fff;
  background: transparent;
}

.article-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.article-footer p {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

/* ============================================================
   BLOG LIST CARD ENHANCEMENTS
   ============================================================ */
.blog-card { position: relative; }

/* Blog list card overrides */
.blog-card {
  position: relative;
  padding: 0;          /* remove all card padding, we add it below content */
  overflow: hidden;    /* ensure image clips to border-radius */
}
.blog-card .article-meta,
.blog-card .article-title,
.blog-card .article-excerpt,
.blog-card .service-footer {
  padding: 0 1rem;
}
.blog-card .article-meta { padding-top: 1rem; }
.blog-card .service-footer { padding-bottom: 1rem; }

.blog-card-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  text-decoration: none;
}
.blog-card-img-wrap .card-img {
  height: 220px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 0;
  border: none;
  transition: transform 0.4s ease;
}
.blog-card-img-wrap:hover .card-img { transform: scale(1.05); }

.card-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,53,48,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.blog-card-img-wrap:hover .card-img-overlay { opacity: 1; }

.article-title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.article-title a:hover { color: var(--accent); }

.read-more-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}
.read-more-link:hover { opacity: 0.75; }

/* ============================================================
   GALLERY MASONRY GRID
   ============================================================ */
.gallery-masonry {
  columns: 3;
  column-gap: 1.25rem;
  padding: 2rem 0;
}
.gallery-figure {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.gallery-figure img {
  width: 100%;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease;
}
.gallery-figure:hover img { transform: scale(1.03); }
.gallery-figure figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.5rem 0.8rem;
  font-size: 0.8rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #ddd;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-figure:hover figcaption { opacity: 1; }

@media (max-width: 768px) {
  .gallery-masonry { columns: 2; }
  .article-container { padding: 2rem 1.5rem; }
  .article-header-meta { flex-direction: column; align-items: flex-start; }
  .article-gallery-grid { grid-template-columns: 1fr 1fr; }
  .article-footer { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .article-gallery-grid { grid-template-columns: 1fr; }
}

/* Client Logos Section */
.clients-section {
  /* background: linear-gradient(135deg, var(--bg-soft) 0%, rgba(26, 26, 26, 0.8) 100%); */
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.clients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-soft), transparent);
  opacity: 0.3;
}

.clients-scroll-container {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 3rem 0;
  margin: 0 -2rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.clients-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.clients-scroll-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}

.clients-scroll-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: background 0.3s ease;
}

.clients-scroll-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

.clients-scroll-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 2rem;
  min-width: fit-content;
}


.client-logo-item {
  flex-shrink: 0;
  width: 180px;
  height: 110px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  backdrop-filter: blur(10px);
}

.client-logo-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.02));
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.client-logo-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 10px 20px rgba(201, 53, 48, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.client-logo-item:hover::before {
  opacity: 1;
}

.client-logo-img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0.7) contrast(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.client-logo-item:hover .client-logo-img {
  filter: brightness(1) contrast(1.1) saturate(1.1);
  transform: scale(1.05);
}

.client-logo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

.clients-scroll-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.875rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.clients-scroll-indicator:hover {
  opacity: 1;
}

.scroll-text {
  font-weight: 500;
  letter-spacing: 0.5px;
}

.clients-scroll-indicator svg {
  transition: transform 0.3s ease;
}

.clients-scroll-indicator:hover svg {
  transform: translateX(3px);
}

/* World Map Styles */
.world-map-container {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(16, 16, 16, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.world-map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.world-map-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.world-map-image svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.world-map-leaflet {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.leaflet-container {
  font-family: system-ui, -apple-system, sans-serif;
}

.leaflet-control-zoom {
  border: none !important;
  background: rgba(26, 26, 26, 0.9) !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  overflow: hidden !important;
}

.leaflet-control-zoom a {
  color: var(--text) !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  width: 36px !important;
  height: 36px !important;
  line-height: 34px !important;
  text-align: center !important;
  background: rgba(26, 26, 26, 0.8) !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  transition: all 0.3s ease !important;
}

.leaflet-control-zoom a:last-child {
  border-bottom: none !important;
}

.leaflet-control-zoom a:hover {
  background: var(--accent) !important;
  color: white !important;
  transform: scale(1.05) !important;
}

.leaflet-control-zoom a:active {
  transform: scale(0.95) !important;
}

.leaflet-control-attribution {
  background: rgba(26, 26, 26, 0.8) !important;
  color: var(--muted) !important;
  font-size: 0.7rem !important;
  padding: 2px 4px !important;
  border-radius: 3px !important;
}

/* Partner logo highlight styles */
.logo-pill {
  cursor: pointer;
  transition: all 0.3s ease;
}

.logo-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 53, 48, 0.2);
}

.logo-pill.highlighted {
  background: linear-gradient(135deg, var(--accent), #d64545) !important;
  color: white !important;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(201, 53, 48, 0.4);
  border-color: var(--accent) !important;
}

/* Map marker highlight styles */
.partner-marker-highlighted {
  animation: markerPulse 1.5s ease-in-out infinite;
}

@keyframes markerPulse {
  0% {
    r: 8;
    fill-opacity: 0.5;
    stroke-width: 2;
  }
  50% {
    r: 15;
    fill-opacity: 0.8;
    stroke-width: 3;
  }
  100% {
    r: 8;
    fill-opacity: 0.5;
    stroke-width: 2;
  }
}

/* Shipping route styles */
.shipping-route {
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

/* Connection line highlight */
.connection-highlighted {
  stroke: #c93530 !important;
  stroke-width: 4 !important;
  opacity: 1 !important;
  animation: connectionGlow 2s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(201, 53, 48, 0.8));
}

@keyframes connectionGlow {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(201, 53, 48, 0.8));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(201, 53, 48, 1));
  }
}

/* Partner instruction styling */
.partner-instruction {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, rgba(201, 53, 48, 0.1), rgba(14, 165, 233, 0.1));
  border: 1px solid rgba(201, 53, 48, 0.2);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text);
  animation: instructionPulse 3s ease-in-out infinite;
}

.instruction-icon {
  background: var(--accent);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(201, 53, 48, 0.3);
}

.instruction-text {
  color: var(--text);
  font-weight: 500;
  opacity: 0.9;
}

@keyframes instructionPulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(201, 53, 48, 0.1);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 53, 48, 0.2);
  }
}

.map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  pointer-events: none;
  z-index: 10;
}

.map-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.map-subtitle {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 400;
  letter-spacing: 0.5px;
}


/* Blog Post Portal Layout */
.blog-post-portal {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  margin-top: 2rem;
}

.blog-post-portal .portal-main {
  min-width: 0;
}

.blog-post-portal .portal-sidebar {
  position: sticky;
  top: 2rem;
  height: fit-content;
}

/* Blog Post Content */
.blog-post-content {
  margin-top: 2rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4,
.blog-post-content h5,
.blog-post-content h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 600;
}

.blog-post-content h1 { font-size: 2rem; }
.blog-post-content h2 { font-size: 1.75rem; }
.blog-post-content h3 { font-size: 1.5rem; }
.blog-post-content h4 { font-size: 1.25rem; }
.blog-post-content h5 { font-size: 1.1rem; }
.blog-post-content h6 { font-size: 1rem; }

.blog-post-content p {
  margin-bottom: 1.5rem;
  color: var(--text);
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.blog-post-content li {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.blog-post-content blockquote {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--accent);
  background: rgba(201, 53, 48, 0.05);
  font-style: italic;
}

.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.blog-post-content code {
  background: var(--muted);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
}

.blog-post-content pre {
  background: var(--muted);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin: 2rem 0;
}

@media (max-width: 1024px) {
  .blog-post-portal {
    grid-template-columns: 1fr;
  }
  
  .blog-post-portal .portal-sidebar {
    position: static;
    order: -1;
  }
}

@media (max-width: 768px) {
  .blog-post-content {
    font-size: 1rem;
  }
  
  .blog-post-content h1 { font-size: 1.75rem; }
  .blog-post-content h2 { font-size: 1.5rem; }
  .blog-post-content h3 { font-size: 1.25rem; }
}

/* Media Portal Layout */
.media-portal {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  margin-top: 2rem;
}

.portal-main {
  min-width: 0;
}

.portal-sidebar {
  position: sticky;
  top: 2rem;
  height: fit-content;
}

/* Tab Navigation */
.media-tabs-list {
  display: flex;
  border-bottom: 2px solid var(--border-soft);
  position: relative;
}

.tab-btn {
  background: none;
  border: none;
  padding: 1rem 1.5rem;
  color: var(--muted);
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
}

.tab-btn:hover {
  color: var(--text);
}

.tab-btn.active {
  color: var(--accent);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

/* Tab Panels */
.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.blog-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border-soft);
}

.blog-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.blog-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.blog-card-content {
  padding: 1rem 1.5rem;
  flex-grow: 1;
}

.blog-post-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.9rem;
}

.blog-card-footer {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border-soft);
}

.blog-read-more {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: inline-block;
}

.blog-read-more:hover {
  color: var(--accent-hover);
}

/* Photo Gallery */
.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.photo-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.photo-item:hover {
  transform: scale(1.02);
}

.photo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.photo-item:hover .photo-overlay {
  transform: translateY(0);
}

.photo-title {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.photo-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Resources */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.resource-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.resource-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(201, 53, 48, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
  font-size: 0.7rem;
}

.resource-content {
  flex-grow: 1;
}

.resource-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.resource-description {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.resource-download {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.resource-download:hover {
  color: var(--accent-hover);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .media-portal {
    grid-template-columns: 1fr;
  }
  
  .portal-sidebar {
    position: static;
    order: -1;
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .media-tabs-list {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .tab-btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .blog-grid,
  .photo-gallery-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .resource-card {
    flex-direction: column;
    text-align: center;
  }
  
  .blog-card {
    padding: 1rem;
  }
}

/* Lazy Loading */
.lazy-image {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.lazy-image.loaded {
    opacity: 1;
}

.lazy-image.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal.from-left {
    transform: translateX(-50px);
}

.scroll-reveal.from-right {
    transform: translateX(50px);
}

.scroll-reveal.from-left.revealed,
.scroll-reveal.from-right.revealed {
    transform: translateX(0);
}

.scroll-reveal.scale {
    transform: scale(0.9);
}

.scroll-reveal.scale.revealed {
    transform: scale(1);
}

/* Staggered animations */
.scroll-reveal.stagger-1 { transition-delay: 0.1s; }
.scroll-reveal.stagger-2 { transition-delay: 0.2s; }
.scroll-reveal.stagger-3 { transition-delay: 0.3s; }
.scroll-reveal.stagger-4 { transition-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 768px) {
  .clients-section {
    padding: 3rem 0;
  }
  
  .client-logo-item {
    width: 160px;
    height: 100px;
    padding: 1rem;
  }
  
  .client-logo-img {
    max-height: 60px;
  }
  
  .world-map-container {
    height: 250px;
  }
  
  .map-title {
    font-size: 1.25rem;
  }
  
  .map-subtitle {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .clients-scroll-container {
    margin: 0 -1rem;
  }
  
  .clients-scroll-track {
    padding: 0 1rem;
    gap: 1rem;
  }
  
  .client-logo-item {
    width: 140px;
    height: 90px;
    padding: 0.75rem;
  }
  
  .client-logo-img {
    max-height: 50px;
  }
}
