/* ==========================================================================
   XM EQUIPAMENTS - MINIMALIST DARK THEME & PARALLAX CSS
   Dominio: www.equipaments.es | Mao, Menorca
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-black: #050505;
  --bg-surface: #0c0c0e;
  --bg-card: #121214;
  --bg-card-hover: #18181c;
  --text-white: #ffffff;
  --text-muted: #8e8e93;
  --text-dim: #5c5c62;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.22);
  --accent-white: #f5f5f7;
  --accent-glow: rgba(255, 255, 255, 0.06);
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 92px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-black);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-white);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

p {
  color: var(--text-muted);
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease, transform 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background-color: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo svg,
.brand-logo img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.brand-logo:hover svg,
.brand-logo:hover img {
  transform: scale(1.03);
}

.brand-title {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}

.brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--text-white);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.04em;
}

.lang-btn:hover {
  color: var(--text-white);
}

.lang-btn.active {
  background-color: var(--text-white);
  color: var(--bg-black);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle svg {
  width: 26px;
  height: 26px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  border: 1px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--text-white);
  color: var(--bg-black);
}

.btn-primary:hover {
  background-color: #e5e5ea;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--text-white);
  border-color: var(--border-subtle);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

/* ==========================================================================
   HERO SECTION WITH PARALLAX
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-parallax-bg {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  z-index: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.75) 0%,
    rgba(5, 5, 5, 0.6) 40%,
    rgba(5, 5, 5, 0.85) 75%,
    var(--bg-black) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding-top: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 10px #fff;
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero-title span {
  display: block;
  background: linear-gradient(180deg, #ffffff 30%, #999999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.6;
  color: #c7c7cc;
  max-width: 680px;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

/* Stats Ribbon */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  margin-bottom: 64px;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 650px;
}

/* ==========================================================================
   COLLECTIONS GRID
   ========================================================================== */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}

.collection-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--transition-smooth), border-color 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
}

.collection-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.collection-card.col-6 {
  grid-column: span 6;
}

.collection-card.col-4 {
  grid-column: span 4;
}

.collection-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #000;
}

.collection-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}

.collection-card:hover .collection-img-wrap img {
  transform: scale(1.05);
}

.collection-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 9999px;
  text-transform: uppercase;
}

.collection-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.collection-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.collection-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

.collection-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.collection-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.collection-card:hover .collection-link svg {
  transform: translateX(4px);
}

/* ==========================================================================
   INSTAGRAM PORTFOLIO FEED
   ========================================================================== */
.instagram-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.ig-profile-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 20px 28px;
  margin-bottom: 40px;
}

.ig-profile-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ig-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  padding: 2.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.ig-user-meta h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.ig-user-stats {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ig-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: transform 0.4s var(--transition-smooth), border-color 0.3s ease;
}

.ig-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
}

.ig-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition-smooth);
}

.ig-card:hover img {
  transform: scale(1.06);
}

.ig-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(4px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ig-card:hover .ig-card-overlay {
  opacity: 1;
}

.ig-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ig-card-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: 9999px;
}

.ig-card-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.ig-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ig-card-title {
  font-size: 1.05rem;
  font-weight: 700;
}

.ig-card-desc {
  font-size: 0.8rem;
  color: #d1d1d6;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ig-card-cta {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.service-title {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SHOWROOM SECTION
   ========================================================================== */
.showroom-wrapper {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
  align-items: center;
}

.showroom-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-item {
  display: flex;
  gap: 18px;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.info-text h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.info-text p {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 500;
}

.showroom-map-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.showroom-map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(92%) contrast(85%);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}

.contact-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 56px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.form-control {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #fff;
  transition: all 0.25s ease;
}

.form-control:focus {
  outline: none;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 42px;
}

select.form-control option {
  background-color: var(--bg-card);
  color: #fff;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-submit-row {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

/* ==========================================================================
   FOOTER & SEO KEYWORDS
   ========================================================================== */
.site-footer {
  background-color: var(--bg-black);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 3.2fr 1.6fr 2.4fr 2.6fr 2fr;
  gap: 32px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.92rem;
  max-width: 320px;
}

.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: #fff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-link:hover {
  color: #fff;
}

.seo-tags-block {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  margin-bottom: 48px;
}

.seo-tags-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.seo-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seo-tag {
  font-size: 0.78rem;
  color: #aaa;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* Modal Lightbox */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-backdrop.open {
  display: flex;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  max-width: 680px;
  width: 100%;
  overflow: hidden;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-subtle);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.modal-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #000;
}

.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 24px;
}

/* ==========================================================================
   RESPONSIVE QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .collection-card.col-6,
  .collection-card.col-4 {
    grid-column: span 1;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .showroom-wrapper {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 76px;
  }
  .brand-logo-only {
    height: 50px;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(25px);
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 24px;
    gap: 24px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--transition-smooth);
    border-top: 1px solid var(--border-subtle);
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link {
    font-size: 1.25rem;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .collections-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .contact-box {
    padding: 28px 20px;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .form-submit-row {
    grid-column: span 1;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .ig-profile-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .ig-profile-info {
    flex-direction: column;
  }
  .ig-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   PARALLAX BREAK SECTIONS
   ========================================================================== */
.parallax-break-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
  padding: 100px 24px;
}

.parallax-break-bg {
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  height: 150%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.parallax-break-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(5, 5, 5, 0.65) 0%, rgba(5, 5, 5, 0.9) 100%);
  z-index: 1;
}

.parallax-break-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.parallax-break-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  padding: 6px 18px;
  border-radius: 9999px;
  margin-bottom: 20px;
}

.parallax-break-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
}

.parallax-break-desc {
  font-size: 1.15rem;
  color: #d1d1d6;
  max-width: 620px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* ==========================================================================
   FLUID SCREEN & LANGUAGE TRANSITIONS
   ========================================================================== */
.lang-fade-wrapper {
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.lang-fade-wrapper.is-switching {
  opacity: 0;
  transform: translateY(8px);
}

/* AI Disclaimer & Dixisweb Designer link */
.ai-disclaimer-box {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 0.76rem;
  color: #77777e;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}

.ai-disclaimer-box svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #888;
}

.dixisweb-link {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.dixisweb-link:hover {
  color: #a1a1aa;
}

/* Standalone brand logo */
.brand-logo-only {
  height: 62px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo:hover .brand-logo-only {
  transform: scale(1.05);
}

/* ==========================================================================
   PRODUCT AREAS & TABBED CATALOG SECTION
   ========================================================================== */
.product-areas-section {
  padding-top: 60px;
  background: #000;
}

.area-tabs-nav-wrapper {
  margin-bottom: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.area-tabs-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  min-width: max-content;
  padding: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  margin: 0 auto;
  width: fit-content;
}

.area-tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #8e8e93;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 10px 22px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.area-tab-btn .tab-icon {
  font-size: 1rem;
}

.area-tab-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.area-tab-btn.active {
  background: #ffffff;
  color: #000000;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15);
}

/* Area Tab Panels */
.area-panel {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.area-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   MODERN AREA SHOWCASE HERO CARD (SPLIT EDITORIAL DESIGN)
   ========================================================================== */
.area-hero-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: linear-gradient(135deg, rgba(22, 22, 28, 0.96) 0%, rgba(14, 14, 18, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.area-hero-card:hover {
  border-color: rgba(197, 168, 128, 0.35);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55), 0 0 30px rgba(197, 168, 128, 0.08);
}

.area-hero-content {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.area-hero-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold, #c5a880);
  background: rgba(197, 168, 128, 0.12);
  border: 1px solid rgba(197, 168, 128, 0.28);
  padding: 6px 14px;
  border-radius: 9999px;
  margin-bottom: 16px;
  width: fit-content;
}

.area-hero-title {
  font-size: 1.95rem;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 14px;
}

.area-hero-subtitle {
  font-size: 0.98rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 22px;
  max-width: 580px;
}

.area-hero-card .area-partner-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.area-hero-card .tag-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 4px;
}

.area-hero-card .partner-pill {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.area-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.area-hero-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.area-hero-media {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: #15151a;
}

.area-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.area-hero-card:hover .area-hero-img {
  transform: scale(1.03);
}

.area-hero-media-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(10, 10, 14, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.03em;
}

@media (max-width: 960px) {
  .area-hero-card {
    grid-template-columns: 1fr;
  }
  .area-hero-media {
    min-height: 240px;
    max-height: 300px;
    order: -1;
  }
  .area-hero-content {
    padding: 30px 24px;
  }
  .area-hero-title {
    font-size: 1.55rem;
  }
}


.area-partner-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}

.area-partner-tags .tag-label {
  color: #88888e;
  font-weight: 600;
  margin-right: 4px;
}

.partner-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 3px 10px;
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 600;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  background: #0d0d0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  background: #141416;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-brand-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 2;
}

.product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.product-desc {
  font-size: 0.84rem;
  color: #a1a1aa;
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
}

.product-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
}

.product-specs li {
  font-size: 0.76rem;
  color: #888892;
  margin-bottom: 6px;
  position: relative;
  padding-left: 14px;
  line-height: 1.4;
}

.product-specs li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
}

.product-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.product-actions .btn {
  flex-grow: 1;
  text-align: center;
  font-size: 0.8rem;
  padding: 8px 14px;
}

.btn-wa-icon {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-grow: 0 !important;
}

.btn-wa-icon:hover {
  background: #25d366;
  color: #000000;
  border-color: #25d366;
  transform: scale(1.05);
}

/* ==========================================================================
   OFFICIAL PARTNER BRANDS (16 MARQUES)
   ========================================================================== */
.brands-section {
  padding-top: 70px;
  padding-bottom: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #060608;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.brand-card {
  background: #0d0d0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.brand-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.24);
  background: #121215;
}

.brand-logo-wrap {
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.brand-logo-wrap img {
  max-height: 44px;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.brand-card:hover .brand-logo-wrap img {
  filter: brightness(1);
  transform: scale(1.04);
}

.brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.brand-desc {
  font-size: 0.78rem;
  color: #888892;
  line-height: 1.45;
  margin: 0;
}

/* ==========================================================================
   BLOG & TECHNICAL GUIDES SECTION
   ========================================================================== */
.blog-section {
  padding-top: 70px;
  padding-bottom: 80px;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: #0c0c0e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.25);
}

.blog-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.blog-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
}

.blog-read-time {
  font-size: 0.74rem;
  color: #777780;
  font-weight: 500;
}

.blog-card-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.38;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.blog-card-excerpt {
  font-size: 0.85rem;
  color: #a1a1aa;
  line-height: 1.55;
  margin-bottom: 22px;
  flex-grow: 1;
}

.blog-card-footer {
  margin-top: auto;
}

.blog-card-footer .btn {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   BLOG GUIDE MODAL READER
   ========================================================================== */
.modal-guide-content {
  max-width: 860px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 44px;
  background: #0d0d10;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  position: relative;
}

.guide-modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 24px;
  margin-bottom: 28px;
}

.guide-modal-title {
  font-size: 1.95rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 12px 0 14px 0;
}

.guide-modal-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.82rem;
  color: #888892;
}

.guide-modal-author {
  color: #ffffff;
  font-weight: 600;
}

.guide-modal-body {
  font-size: 0.96rem;
  line-height: 1.75;
  color: #d1d1d6;
}

.guide-modal-body h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 32px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.guide-modal-body h5 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #f4f4f5;
  margin-top: 20px;
  margin-bottom: 8px;
}

.guide-modal-body p {
  margin-bottom: 16px;
}

.guide-modal-body ul, .guide-modal-body ol {
  margin: 0 0 20px 24px;
  padding: 0;
}

.guide-modal-body li {
  margin-bottom: 8px;
}

.guide-modal-body strong {
  color: #ffffff;
}

.guide-callout {
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid #ffffff;
  border-radius: 6px;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 0.92rem;
}

.guide-modal-footer {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.guide-modal-cta-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.guide-modal-cta-box h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.guide-modal-cta-box p {
  font-size: 0.88rem;
  color: #a1a1aa;
  margin-bottom: 18px;
}

.guide-modal-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==========================================================================
   RESPONSIVE STYLES FOR NEW MODULES
   ========================================================================== */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .area-hero-title {
    font-size: 1.5rem;
  }
  .area-hero-overlay {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .brands-grid {
    grid-template-columns: 1fr;
  }
  .modal-guide-content {
    padding: 24px 18px;
  }
  .guide-modal-title {
    font-size: 1.45rem;
  }
  .guide-modal-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ==========================================================================
   DEDICATED PAGES: HERO & EXECUTIVE ARCHITECTURAL LAYOUT
   ========================================================================== */
.page-hero {
  padding: 160px 0 60px;
  background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.98) 75%), #08080a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  text-align: center;
}

.page-hero .container {
  max-width: 900px;
}

.page-hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 9999px;
  color: #fff;
  margin-bottom: 20px;
}

.page-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin-bottom: 18px;
}

.page-hero-desc {
  font-size: 1.08rem;
  color: #a1a1aa;
  line-height: 1.65;
  margin: 0 auto 30px;
  max-width: 760px;
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #71717a;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.page-breadcrumb a {
  color: #a1a1aa;
  transition: color 0.2s ease;
}

.page-breadcrumb a:hover {
  color: #ffffff;
}

/* ==========================================================================
   SERVICES METHODOLOGY: 5-STEP TIMELINE & PROCESS CARDS
   ========================================================================== */
.services-steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.service-step-card {
  background: #0d0d10;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: flex-start;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-step-card:hover {
  transform: translateX(8px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.service-step-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.25);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.04em;
  padding-top: 4px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 8px;
}

.service-step-card:hover .service-step-num {
  color: #ffffff;
  border-color: #ffffff;
}

.service-step-content h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-step-content p {
  font-size: 0.95rem;
  color: #a1a1aa;
  line-height: 1.65;
  margin: 0;
}

/* Specialty Cards Grid */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.specialty-card {
  background: #0d0d10;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.specialty-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.24);
}

.specialty-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}

.specialty-icon svg {
  width: 24px;
  height: 24px;
}

.specialty-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.specialty-desc {
  font-size: 0.88rem;
  color: #a1a1aa;
  line-height: 1.55;
  margin-bottom: 0;
}

/* Quote Callout Box */
.quote-callout-box {
  background: linear-gradient(180deg, #121216 0%, #0c0c0e 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 44px;
  text-align: center;
  margin-top: 50px;
}

.quote-callout-box h3 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.quote-callout-box p {
  font-size: 1rem;
  color: #a1a1aa;
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.quote-callout-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   DEDICATED PAGES: RESPONSIVENESS
   ========================================================================== */
@media (max-width: 900px) {
  .page-hero {
    padding: 130px 0 50px;
  }
  .page-hero-title {
    font-size: 2.1rem;
  }
  .specialties-grid {
    grid-template-columns: 1fr;
  }
  .service-step-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px;
  }
  .service-step-num {
    border-bottom: none;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
    padding-left: 12px;
    padding-bottom: 0;
  }
}

@media (max-width: 600px) {
  .page-hero-title {
    font-size: 1.75rem;
  }
  .quote-callout-box {
    padding: 28px 20px;
  }
}

/* ==========================================================================
   DROPDOWN NAVIGATION MENU & DEDICATED AREA LANDING STYLES
   ========================================================================== */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-chevron {
  transition: transform 0.25s ease;
}

.nav-item-dropdown:hover .dropdown-chevron,
.nav-item-dropdown:focus-within .dropdown-chevron,
.nav-item-dropdown.is-open .dropdown-chevron,
.nav-item-dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 330px;
  background: rgba(14, 14, 16, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.04);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s;
  transition-delay: 0.18s; /* Keeps menu open for 180ms when cursor wanders off */
  z-index: 1000;
  margin-top: 6px;
}

/* Invisible hover bridge spanning from the trigger link down to the dropdown menu */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -24px;
  left: -20px;
  right: -20px;
  height: 28px;
  background: transparent;
  pointer-events: auto;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu,
.nav-item-dropdown.is-open .nav-dropdown-menu,
.nav-item-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s; /* Opens immediately */
}

.dropdown-header-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  padding: 6px 12px 8px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(3px);
}

.dropdown-item-icon {
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.dropdown-item-info {
  display: flex;
  flex-direction: column;
}

.dropdown-item-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.25;
}

.dropdown-item-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 8px 6px;
}

.dropdown-footer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s ease;
}

.dropdown-footer-link:hover {
  background: rgba(255, 255, 255, 0.09);
}

/* Mobile Dropdown styles */
@media (max-width: 991px) {
  .nav-dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    min-width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: none;
    margin-top: 8px;
    padding: 6px;
  }
  .dropdown-chevron {
    display: none;
  }
}

/* SEO Area Landing Page Styles */
.area-seo-article {
  background: rgba(18, 18, 20, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 40px;
  margin: 48px 0 64px;
}

.area-seo-article h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.area-seo-article p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.area-seo-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.seo-highlight-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 20px;
}

.seo-highlight-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.seo-highlight-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.seo-highlight-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .area-seo-article {
    padding: 24px;
  }
  .area-seo-highlights {
    grid-template-columns: 1fr;
  }
}

/* Refined Minimalist SEO Highlights & Dropdown */
.seo-highlight-num {
  font-family: var(--font-heading, 'Cinzel', serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-gold, #c5a880);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.dropdown-item {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(3px);
}


/* ==========================================================================
   BLOG HUB & ARTICLE SYSTEM (EDITORIAL ARCHITECTURAL DESIGN)
   ========================================================================== */

/* Blog Hub Controls */
.blog-hub-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.blog-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.blog-filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #8e8e93;
  font-size: 0.84rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.blog-filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.blog-filter-btn.active {
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  border-color: #ffffff;
}

.blog-search-wrap {
  width: 100%;
}

.blog-search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 0.92rem;
  color: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.blog-search-input:focus {
  border-color: var(--color-gold, #c5a880);
  background: rgba(255, 255, 255, 0.06);
}

.blog-search-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* Featured Article Card */
.blog-featured-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: linear-gradient(135deg, rgba(22, 22, 28, 0.96) 0%, rgba(14, 14, 18, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transition: border-color 0.3s ease;
}

.blog-featured-card:hover {
  border-color: rgba(197, 168, 128, 0.35);
}

.blog-featured-media {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: #15151a;
}

.blog-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(197, 168, 128, 0.9);
  color: #000000;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 9999px;
}

.blog-featured-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-cat {
  color: var(--color-gold, #c5a880);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-featured-title {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 12px 0 14px;
}

.blog-featured-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-featured-title a:hover {
  color: var(--color-gold, #c5a880);
}

.blog-featured-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

/* Blog Hub Grid */
.blog-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-hub-card {
  display: flex;
  flex-direction: column;
  background: #0d0d10;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.blog-hub-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.blog-card-img-link {
  position: relative;
  display: block;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: #18181e;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-hub-card:hover .blog-card-img {
  transform: scale(1.05);
}

.blog-card-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 10, 14, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

.blog-card-content {
  padding: 24px 20px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #8e8e93;
  margin-bottom: 10px;
}

.blog-meta-dot {
  color: rgba(255, 255, 255, 0.25);
}

.blog-card-heading {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 10px;
}

.blog-card-heading a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-heading a:hover {
  color: var(--color-gold, #c5a880);
}

.blog-card-summary {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-action {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-gold, #c5a880);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.btn-read-more:hover {
  gap: 10px;
  color: #ffffff;
}

/* Blog CTA Banner */
.blog-cta-banner {
  background: linear-gradient(135deg, rgba(30, 26, 22, 0.9) 0%, rgba(18, 16, 14, 0.95) 100%);
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-cta-content {
  max-width: 720px;
  margin: 0 auto;
}

.blog-cta-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #ffffff;
  margin: 14px 0 12px;
}

.blog-cta-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
}

.blog-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   SINGLE ARTICLE LAYOUT & STYLES
   ========================================================================== */
.article-hero {
  padding: 130px 0 40px;
  background: linear-gradient(180deg, #09090c 0%, #0d0d12 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.article-hero-inner {
  max-width: 860px;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: #88888e;
  margin-bottom: 18px;
}

.article-breadcrumb a {
  color: #88888e;
  text-decoration: none;
}

.article-breadcrumb a:hover {
  color: #ffffff;
}

.article-meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #8e8e93;
  margin-bottom: 16px;
}

.article-cat-badge {
  background: rgba(197, 168, 128, 0.15);
  border: 1px solid rgba(197, 168, 128, 0.3);
  color: var(--color-gold, #c5a880);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-main-title {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 16px;
}

.article-main-lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 24px;
}

.article-author-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-gold, #c5a880);
  color: #000000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}

.author-role {
  font-size: 0.78rem;
  color: #8e8e93;
}

.article-main-figure {
  max-width: 980px;
  margin: 36px auto 44px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.article-main-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

/* Article Layout Grid */
.article-layout-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  max-width: 1100px;
  margin-bottom: 80px;
}

.article-body-content {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.article-toc-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 36px;
}

.toc-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc-list a {
  color: var(--color-gold, #c5a880);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.toc-list a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.article-section-block {
  margin-bottom: 40px;
}

.article-section-block h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.3;
}

.article-section-block p {
  margin-bottom: 16px;
}

.article-section-block ul {
  margin: 16px 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-section-block li {
  line-height: 1.6;
}

.article-tip-box {
  background: rgba(197, 168, 128, 0.08);
  border-left: 3px solid var(--color-gold, #c5a880);
  padding: 18px 20px;
  border-radius: 0 10px 10px 0;
  margin: 24px 0;
}

.tip-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gold, #c5a880);
  margin-bottom: 6px;
}

.article-tip-box p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

/* Products in Article */
.article-products-section {
  background: #0b0b0e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px 26px;
  margin: 44px 0;
}

.products-section-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.article-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.article-product-card {
  background: #141419;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.art-prod-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.art-prod-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.art-prod-brand {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-gold, #c5a880);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.art-prod-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.art-prod-desc {
  font-size: 0.8rem;
  color: #8e8e93;
  line-height: 1.45;
  margin-bottom: 14px;
  flex-grow: 1;
}

.article-share-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.share-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.share-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-prev-next-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.prev-nav-box, .next-nav-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prev-nav-box:hover, .next-nav-box:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.nav-direction {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-gold, #c5a880);
}

.nav-art-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.35;
}

/* Sidebar */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: #0d0d10;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 26px 22px;
}

.sidebar-card.highlight {
  background: linear-gradient(135deg, rgba(30, 26, 20, 0.6) 0%, rgba(18, 16, 14, 0.8) 100%);
  border-color: rgba(197, 168, 128, 0.3);
}

.sidebar-card-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gold, #c5a880);
  margin-bottom: 8px;
  display: block;
}

.sidebar-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.sidebar-card-desc {
  font-size: 0.84rem;
  color: #8e8e93;
  line-height: 1.55;
  margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 960px) {
  .blog-featured-card {
    grid-template-columns: 1fr;
  }
  .blog-featured-media {
    min-height: 220px;
  }
  .blog-featured-content {
    padding: 28px 22px;
  }
  .blog-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-layout-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .article-main-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 640px) {
  .blog-hub-grid {
    grid-template-columns: 1fr;
  }
  .article-prev-next-nav {
    grid-template-columns: 1fr;
  }
}
