/* inner.css — NextGen Illumination inner page styles */

/* Active nav state for inner pages */
.nav-link.active { color: var(--white) !important; }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}

/* ---- PAGE HERO ---- */
.page-hero {
  background: var(--black-mid);
  padding: 176px 0 80px;
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 76px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240,165,0,0.1), transparent 70%);
}

.page-hero .section-tag { margin-bottom: 12px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
}

/* ---- SERVICES DETAIL ---- */
.service-blocks {
  display: flex;
  flex-direction: column;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.service-block:last-child { border-bottom: none; }

.service-block.flip { direction: rtl; }
.service-block.flip > * { direction: ltr; }

.block-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 6rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 4px;
}

.service-block h2 { margin-bottom: 16px; }

.service-block p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
}

.bullet-list {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bullet-list li {
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}

.bullet-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

.block-image .image-placeholder {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
}

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.about-img-wrap .image-placeholder {
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2px;
  background: var(--border);
}

.stat-box {
  background: var(--black-card);
  padding: 20px 16px;
  text-align: center;
}

.stat-big {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
}

.stat-big em {
  font-size: 1.8rem;
}

.stat-sub {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.about-text h2 { margin-bottom: 20px; }
.about-text p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.credentials-box {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 28px 32px;
  border-radius: var(--r-lg);
  margin: 32px 0;
}

.credentials-box h3 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.cred-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cred-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.about-quote {
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  margin: 32px 0;
  background: var(--gold-bg);
  border-radius: 0 var(--r) var(--r) 0;
  font-size: 1rem;
  color: var(--off-white);
  font-style: italic;
  line-height: 1.7;
}

.about-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* ---- CONTACT ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-aside h2 { margin-bottom: 10px; }
.contact-aside > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.call-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--gold);
  color: var(--black);
  padding: 24px 28px;
  border-radius: var(--r-lg);
  margin-bottom: 20px;
  transition: all 0.2s;
}

.call-card:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.call-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  line-height: 1;
}

.call-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 2px;
}

.call-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  line-height: 1;
}

.call-hours {
  font-size: 0.75rem;
  opacity: 0.65;
  margin-top: 3px;
}

.or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 20px 0;
}

.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.contact-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-details-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
}

.cd-icon { width: 22px; text-align: center; flex-shrink: 0; }

/* ---- FORM ---- */
.form-title { margin-bottom: 8px; }
.form-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.f-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.f-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.f-group input,
.f-group select,
.f-group textarea {
  background: var(--black-card);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 13px 16px;
  border-radius: var(--r);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}

.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  border-color: var(--gold);
  background: var(--black-light);
}

.f-group input::placeholder,
.f-group textarea::placeholder { color: var(--text-muted); }

.f-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f0a500' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.f-group select option { background: var(--black-card); }
.f-group textarea { resize: vertical; min-height: 130px; }

.btn-block { width: 100%; justify-content: center; }

.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* ---- RESPONSIVE INNER ---- */
@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; gap: 40px; }
  .service-block.flip { direction: ltr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 600px) {
  .f-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
}

/* Brand panel on inner pages */
.block-image .brand-panel,
.about-img-wrap .brand-panel {
  aspect-ratio: 4/3;
}

.about-img-wrap .brand-panel {
  aspect-ratio: 3/4;
}

/* Real photos on inner pages */
.block-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-lg);
  display: block;
}

.about-img-wrap .why-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r-lg);
}
