/* =========================================
   StudioExtend — Explore Our Work (Static)
   ========================================= */
:root {
  --gold: #c48f3e;
  --gold-bright: #d9a24a;
  --gold-soft: #b7862f;
  --bg-dark: #0b0b0d;
  --bg-dark-2: #121216;
  --border-gold: rgba(196, 143, 62, 0.35);
}

* { box-sizing: border-box; }

html, body {
  background: var(--bg-dark);
  color: #ffffff;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  margin: 0;
}

/* ---------- HERO WRAPPER ---------- */
.hero-wrapper {
  min-height: 640px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://studioextend.com/wp-content/uploads/2026/08/bgimage.png');
  background-size: cover;
  background-position: center right;
  opacity: 0.55;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0b0b0d 0%, rgba(11,11,13,0.85) 35%, rgba(11,11,13,0.5) 60%, rgba(11,11,13,0.2) 100%);
  z-index: 1;
}

/* ---------- NAVBAR ---------- */
.logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #0b0b0d;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.logo-sub {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.nav-link-item {
  position: relative;
  color: #e6e6e6;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  padding-bottom: 6px;
  transition: color 0.2s ease;
}
.nav-link-item:hover { color: var(--gold); }
.nav-link-item.active { color: var(--gold); }
.nav-link-item.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  padding: 16px 4px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 12px;
}
.mobile-menu.open { display: block; }
.mobile-menu .nav-link-item { padding: 8px 0; }

/* ---------- BUTTONS ---------- */
.btn-gold {
  background: linear-gradient(180deg, #c48f3e 0%, #a9762a 100%);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 10px;
  border: none;
  font-size: 0.85rem;
  transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease;
  box-shadow: 0 8px 20px -8px rgba(196, 143, 62, 0.6);
  cursor: pointer;
}
.btn-gold:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(196, 143, 62, 0.7);
  color: #fff;
}

/* ---------- HERO TEXT ---------- */
.eyebrow {
  color: var(--gold);
  letter-spacing: 0.35em;
  font-size: 0.9rem;
  font-weight: 500;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  margin: 6px 0 0;
}
.gold-underline {
  width: 88px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 18px auto 22px;
}
.hero-copy {
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ---------- CHOICE CARDS ---------- */
.choice-cards-wrap { max-width: 1200px; }

.dark-card, .light-card {
  border-radius: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.dark-card {
  background: linear-gradient(180deg, #151519 0%, #101014 100%);
  border: 1px solid rgba(196, 143, 62, 0.35);
  color: #fff;
}
.dark-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -20px rgba(196, 143, 62, 0.35);
  border-color: rgba(196, 143, 62, 0.6);
}
.light-card {
  background: #ffffff;
  color: #0b0b0d;
  border: 1px solid rgba(196, 143, 62, 0.35);
}
.light-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -20px rgba(196, 143, 62, 0.5);
}

.icon-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(196, 143, 62, 0.15);
  border: 1px solid rgba(196, 143, 62, 0.4);
  display: flex; align-items: center; justify-content: center;
}
.icon-circle.light {
  background: rgba(196, 143, 62, 0.12);
  border: 1px solid rgba(196, 143, 62, 0.5);
}

.card-title {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: 1.4rem;
  margin: 0;
}
.card-title.dark { color: #0b0b0d; }
.card-sub { color: rgba(255,255,255,0.75); line-height: 1.55; }
.card-sub.dark { color: #4a4a52; }

.divider-gold {
  height: 1px;
  background: rgba(196, 143, 62, 0.28);
}

.bullet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.92rem;
}
.bullet.dark { color: #2a2a2f; margin-bottom: 10px; }
.bullet i, .bullet svg { color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }

.chip-row {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
}
.chip-row.dark { color: #4a4a52; }
.chip-row .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.chip-row .dot.dark { background: rgba(0,0,0,0.3); }

/* OR badge - desktop centered */
.or-badge {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #0b0b0d;
  border: 2px solid rgba(196, 143, 62, 0.55);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -10px rgba(196, 143, 62, 0.5);
  z-index: 4;
}

/* ---------- FEATURE STRIP ---------- */
.feature-strip {
  border: 1px solid rgba(196, 143, 62, 0.35);
  border-radius: 14px;
  background: rgba(18, 18, 22, 0.6);
  padding: 10px 20px;
  gap: 8px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 8px;
  flex: 1 1 220px;
  min-width: 200px;
}
.feature-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: rgba(196, 143, 62, 0.12);
  border: 1px solid rgba(196, 143, 62, 0.4);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon.sm { width: 44px; height: 44px; min-width: 44px; }
.feature-icon svg { width: 22px; height: 22px; }
.feature-title {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}
.feature-desc {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  margin-top: 4px;
  line-height: 1.35;
}
.feature-sep {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  align-self: center;
}

/* ---------- CTA BANNER ---------- */
.cta-wrap { max-width: 1000px; }
.cta-banner {
  background: #0b0b0d;
  border: 1px solid rgba(196, 143, 62, 0.4);
  border-radius: 14px;
}
.text-white-70 { color: rgba(255,255,255,0.75); }

.tag-interactive{display:none;}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
  .feature-sep { display: none; }
  .feature-strip { padding: 10px 12px; }
}
@media (max-width: 767.98px) {
  .hero-title { font-size: 2.4rem; }
  .card-title { font-size: 1.6rem; }
	.light-card ul{margin-left:0;}
	.dark-card p.text-center{font-size:14px;}
	.dark-card .row{display:none;}
	.dark-card button.btn-gold{padding: 2px 10px !important;}
	.light-card p.text-center{font-size:14px;}
	.light-card ul{display:none;}
	.light-card button.btn-gold{padding: 2px 10px !important;}
	.feature-item p{line-height:16px;}
	.feature-banners{padding:32px 16px;}
	.feature-item{padding:5px 8px;}
}

/* Subtle entrance animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-title, .eyebrow, .gold-underline, .hero-copy,
.dark-card, .light-card, .feature-strip, .cta-banner {
  animation: fadeUp 0.7s ease both;
}
.hero-title { animation-delay: 0.05s; }
.gold-underline { animation-delay: 0.15s; }
.hero-copy { animation-delay: 0.25s; }
.dark-card { animation-delay: 0.15s; }
.light-card { animation-delay: 0.25s; }
.feature-strip { animation-delay: 0.35s; }
.cta-banner { animation-delay: 0.45s; }


.hero-title, .eyebrow, .gold-underline, .hero-copy,
.dark-card, .light-card, .feature-strip, .cta-banner {
  animation: fadeUp 0.7s ease both;
}

/* ===========================================
   REQUEST-ACCESS PAGE STYLES
   =========================================== */
.request-hero { min-height: 480px; }
.hero-bg.request {
  position: absolute;
  inset: 0;
  background-image: url('https://studioextend.com/wp-content/uploads/2026/08/bgimage.png');
  background-size: cover;
  background-position: center right;
  opacity: 0.6;
  z-index: 0;
}
.hero-overlay.request {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0b0b0d 0%, rgba(11,11,13,0.9) 30%, rgba(11,11,13,0.55) 55%, rgba(11,11,13,0.1) 100%);
  z-index: 1;
}
.request-eyebrow { text-align: left; letter-spacing: 0.28em; font-weight: 600; }
.request-title { text-align: left; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.1; }
.request-copy { text-align: left; max-width: 520px; color: rgba(255,255,255,0.8); font-size: 1rem; margin-left: 0; }
.request-main-wrap { max-width: 1275px; margin-top: -140px; position: relative; z-index: 3; }

/* Form Title */
.form-title {
  color: #0b0b0d;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}
.gold-underline.small { width: 56px; height: 3px; background: var(--gold); border-radius: 2px; margin: 8px 0 0; }

.icon-circle.sm { width: 44px; height: 44px; }
.icon-circle.sm i, .icon-circle.sm svg { width: 20px; height: 20px; color: var(--gold); }

/* Form fields */
.form-label-dark {
  color: #1a1a1f;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.req { color: var(--gold); }
.muted-note { color: #6a6a72; font-weight: 400; font-size: 0.82rem; margin-left: 4px; }
.custom-input {
  border: 1px solid #e2e2e6;
  border-radius: 10px;
  background: #f9f9fb;
  color: #1a1a1f;
  padding: 12px 14px;
  font-size: 0.92rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.custom-input::placeholder { color: #9a9aa2; }
.custom-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 143, 62, 0.18);
  background: #fff;
}
textarea.custom-input { resize: vertical; min-height: 110px; }

/* Service checkbox chips */
.service-chip, .radio-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #e2e2e6;
  border-radius: 10px;
  background: #f9f9fb;
  color: #1a1a1f;
  font-size: 0.9rem;
  cursor: pointer;
  width: 100%;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.service-chip i, .service-chip svg,
.radio-chip i, .radio-chip svg {
  color: var(--gold);
  width: 18px; height: 18px;
}
.service-chip:hover, .radio-chip:hover {
  border-color: var(--gold);
  background: #fff;
}
.service-chip.active, .radio-chip.active {
  border-color: var(--gold);
  background: rgba(196, 143, 62, 0.08);
  color: #0b0b0d;
}

/* NDA checkbox */
.nda-check .form-check-input {
  border: 1.5px solid #c48f3e;
  cursor: pointer;
}
.nda-check .form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}
.nda-check .form-check-label {
  color: #1a1a1f;
  font-size: 0.9rem;
}

/* Sidebar dark card */
.sidebar-title {
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin: 0;
}
.sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 30px 0;
}
.sidebar-item .icon-circle {
  min-width: 44px;
}
.sidebar-item-title {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}
.sidebar-item-desc {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.5;
}
.sidebar-sep {
  height: 1px;
  background: rgba(196, 143, 62, 0.18);
}

/* Quote block */
.quote-card {
  background: rgba(196, 143, 62, 0.06);
  border: 1px solid rgba(196, 143, 62, 0.35);
  border-radius: 12px;
  padding: 20px 22px;
  position: relative;
}
.quote-mark {
  color: var(--gold);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  line-height: 0.8;
  margin-bottom: 4px;
}
.quote-text {
  color: rgba(255,255,255,0.9);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.45;
  font-style: italic;
}

/* Commit heading inside feature strip */
.commit-heading {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  /*border-bottom: 1px solid rgba(196, 143, 62, 0.18);*/
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .request-main-wrap { margin-top: -40px; }
  .request-copy { max-width: 100%; }
}

.ast-container{
	display: block !important;
	padding: 0 !important;
}