/* ═══════════════════════════════════════════════
   pages.css — Inner page styles
   Hindustan Signages — works with style.css + mobile.css
═══════════════════════════════════════════════ */

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
}
.ph-bg-about   { background: linear-gradient(135deg, #0d1a2e 0%, #1a3a5c 100%); }
.ph-bg-contact { background: linear-gradient(135deg, #0d1a2e 0%, #0d3d2e 100%); }
.ph-bg-faq     { background: linear-gradient(135deg, #0d1a2e 0%, #2e1a0d 100%); }
.ph-bg-legal   { background: linear-gradient(135deg, #0d1a2e 0%, #1a0d2e 100%); }
.ph-bg-default { background: #0d1a2e; }

.page-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(5,13,31,0.5);
}
/* Grid texture */
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(26,111,212,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(26,111,212,.06) 1px,transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
}
/* Left accent bar */
.page-hero::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--accent), var(--accent2), transparent);
  z-index: 2;
}
.page-hero-inner {
  position: relative; z-index: 3;
}
.ph-label {
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.page-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.page-breadcrumb a { color: var(--accent); text-decoration: none; }
.page-breadcrumb a:hover { text-decoration: underline; }

/* ── PAGE SECTIONS ── */
.page-section { padding: 80px 0; }
.page-section-alt { background: #f5f8ff; }

/* ── EXPERTISE GRID ── */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.expertise-card {
  background: #fff;
  border: 1px solid rgba(26,111,212,0.12);
  border-radius: 12px;
  padding: 32px 28px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.expertise-card:hover { box-shadow: 0 16px 48px rgba(26,111,212,0.1); transform: translateY(-4px); }
.expertise-icon { font-size: 36px; margin-bottom: 14px; }
.expertise-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; letter-spacing: 1px;
  color: #0d1a2e; margin-bottom: 10px;
}
.expertise-card > p {
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: #44557a;
  margin-bottom: 18px; line-height: 1.6;
}
.expertise-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.expertise-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: #44557a; line-height: 1.5;
}
.expertise-list li span { color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── ABOUT CTA BOX ── */
.about-cta-box { text-align: center; max-width: 640px; margin: 0 auto; }
.about-cta-box .section-desc { margin: 16px 0 36px; }
.cta-btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-ghost-dark {
  border: 1px solid rgba(13,26,46,0.3); color: #0d1a2e;
  padding: 13px 28px; border-radius: 50px;
  text-decoration: none; font-size: 14px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .3s;
}
.btn-ghost-dark:hover { border-color: var(--accent); color: var(--accent); background: rgba(26,111,212,0.05); }

/* ── CONTACT FORM CARD ── */
.contact-form-card {
  background: #fff;
  border: 1px solid rgba(26,111,212,0.12);
  border-radius: 16px; padding: 36px 32px;
  box-shadow: 0 8px 32px rgba(13,26,46,0.06);
}
.contact-form-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; letter-spacing: 1.5px;
  color: #0d1a2e; margin-bottom: 6px;
}
.contact-form-card > p {
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: #667799; margin-bottom: 24px;
}
.contact-wa-btn { margin-top: 20px; }
.btn-wa-large {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff;
  padding: 12px 22px; border-radius: 50px;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 0.5px;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-wa-large:hover { opacity: 0.9; transform: translateY(-2px); }

/* ── FAQ EXTRAS ── */
.faq-contact-box {
  margin-top: 24px; padding: 16px 20px;
  background: rgba(26,111,212,0.06);
  border-radius: 8px;
  border: 1px solid rgba(26,111,212,0.15);
}
.faq-contact-box p { font-family: 'Inter', sans-serif; font-size: 13px; color: #667799; margin-bottom: 6px; }
.faq-contact-box a { font-family: 'Rajdhani', sans-serif; font-size: 15px; font-weight: 700; color: var(--accent); text-decoration: none; }
.faq-contact-box a:hover { text-decoration: underline; }

/* ── LEGAL PAGES ── */
.legal-wrap { max-width: 820px; margin: 0 auto; }
.legal-meta {
  font-family: 'Inter', sans-serif; font-size: 13px; color: #667799;
  background: rgba(26,111,212,0.06);
  border: 1px solid rgba(26,111,212,0.12);
  border-radius: 8px; padding: 12px 20px; margin-bottom: 48px;
}
.legal-section {
  margin-bottom: 36px; padding-bottom: 36px;
  border-bottom: 1px solid rgba(26,111,212,0.08);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; letter-spacing: 1px;
  color: #0d1a2e; margin-bottom: 14px;
}
.legal-section p { font-family: 'Inter', sans-serif; font-size: 15px; color: #44557a; line-height: 1.8; margin-bottom: 10px; }
.legal-section ul { padding-left: 20px; margin: 10px 0; }
.legal-section ul li { font-family: 'Inter', sans-serif; font-size: 15px; color: #44557a; line-height: 1.7; margin-bottom: 8px; }
.legal-section a { color: var(--accent); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }
.legal-contact-box {
  background: #f5f8ff;
  border: 1px solid rgba(26,111,212,0.15);
  border-radius: 10px; padding: 24px 28px; margin-top: 16px;
}
.legal-contact-box p { margin-bottom: 6px; font-size: 14px; }
.legal-contact-box p:first-child { font-size: 16px; margin-bottom: 10px; }

/* ── SECTION DESC SPACING ── */
.section-desc-video { margin-bottom: 40px; }
.section-desc-wide  { margin-bottom: 48px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .expertise-grid { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 768px) {
  .page-hero { padding: 100px 0 56px; }
  .page-hero-title { font-size: 36px; }
  .page-section { padding: 56px 0; }
  .contact-form-card { padding: 24px 18px; }
  .legal-wrap { max-width: 100%; }
  .expertise-card { padding: 22px 18px; }
  .cta-btn-row { flex-direction: column; align-items: center; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-left { position: static; }
}

/* ════════════════════════════════════════════════
   GALLERY PAGE
   ════════════════════════════════════════════════ */
.ph-bg-portfolio { background: linear-gradient(135deg,#0d1a2e 0%,#1a2e0d 100%); }

.gal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

/* Gallery masonry-style grid */
.gal-grid {
  columns: 3;
  column-gap: 16px;
}
.gal-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gal-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.gal-item:hover img { transform: scale(1.05); }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,13,31,0.88) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.gal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,10,20,0.96);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox.open { display: flex; }
.lb-img-wrap { max-width: 90vw; max-height: 80vh; }
.lb-img-wrap img { max-width: 90vw; max-height: 78vh; object-fit: contain; border-radius: 8px; display: block; }
.lb-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  color: #fff; font-size: 28px;
  cursor: pointer; line-height: 1;
  opacity: 0.8;
}
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 40px;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: background 0.2s;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { background: rgba(26,111,212,0.5); }
.lb-caption {
  color: rgba(255,255,255,0.6);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  margin-top: 16px;
  text-align: center;
}

/* Gallery CTA */
.gal-cta {
  text-align: center;
  margin-top: 60px;
  padding: 48px;
  background: #f5f8ff;
  border-radius: 16px;
}
.gal-cta p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #0d1a2e;
  margin-bottom: 24px;
}

/* ════════════════════════════════════════════════
   PORTFOLIO PAGE
   ════════════════════════════════════════════════ */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.pf-card {
  background: #fff;
  border: 1px solid rgba(26,111,212,0.1);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pf-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(13,26,46,0.12);
}
.pf-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.pf-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.pf-card:hover .pf-img img { transform: scale(1.08); }
.pf-cat-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(26,111,212,0.9);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.pf-body {
  padding: 24px;
}
.pf-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #0d1a2e;
  margin-bottom: 10px;
}
.pf-body p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #44557a;
  line-height: 1.7;
  margin-bottom: 16px;
}
.pf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.pf-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(26,111,212,0.08);
  border: 1px solid rgba(26,111,212,0.2);
  padding: 3px 10px;
  border-radius: 100px;
}
.pf-enquire {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.5px;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s;
}
.pf-enquire:hover { border-color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pf-grid { grid-template-columns: repeat(2,1fr); }
  .gal-grid { columns: 2; }
}
@media (max-width: 768px) {
  .gal-grid { columns: 2; column-gap: 10px; }
  .gal-item { margin-bottom: 10px; }
  .gal-overlay { opacity: 1; }
  .pf-grid { grid-template-columns: 1fr; gap: 20px; }
  .pf-img { height: 200px; }
  .gal-filters { gap: 8px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .portfolio-filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; }
  .gal-cta { padding: 32px 20px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

/* ════════════════════════════════════════════════
   WHY CHOOSE US PAGE
   ════════════════════════════════════════════════ */
.ph-bg-why { background: linear-gradient(135deg, #0d1a2e 0%, #1a0d2e 50%, #0d1a2e 100%); }

/* Section desc helpers */
.wcu-desc-wide   { max-width: 640px; margin-bottom: 60px; }
.wcu-desc-narrow { max-width: 560px; margin-bottom: 56px; }
.wcu-desc-gap    { margin-bottom: 48px; }

/* ── Stats strip ── */
.wcu-stats-strip {
  background: linear-gradient(135deg, #0d1a2e, #1a3a5c);
  padding: 48px 0;
}
.wcu-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 0;
}
.wcu-stat { padding: 12px 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.wcu-stat:last-child { border-right: none; }
.wcu-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px; font-weight: 800;
  line-height: 1; color: #fff;
  letter-spacing: 1px;
}
.wcu-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

/* ── Reason cards ── */
.wcu-reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wcu-reason-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(26,111,212,0.1);
  border-radius: 14px;
  padding: 28px 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.wcu-reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(13,26,46,0.1);
}
.wcu-reason-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.wcu-c1 { background: #eef3fc; }
.wcu-c2 { background: #e8f5e9; }
.wcu-c3 { background: #fff3e0; }
.wcu-c4 { background: #fce4ec; }
.wcu-c5 { background: #f3e5f5; }
.wcu-c6 { background: #e0f2f1; }
.wcu-reason-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700;
  letter-spacing: 1px; color: #0d1a2e;
  margin-bottom: 8px;
}
.wcu-reason-body p {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: #44557a;
  line-height: 1.75;
}

/* ── Process steps ── */
.wcu-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
/* Connecting line */
.wcu-process-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  z-index: 0;
}
.wcu-process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
}
.wcu-step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 800;
  letter-spacing: 3px; color: var(--accent);
  margin-bottom: 8px;
}
.wcu-step-icon {
  width: 72px; height: 72px;
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(26,111,212,0.15);
}
.wcu-process-step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700;
  letter-spacing: 1px; color: #0d1a2e;
  margin-bottom: 12px;
}
.wcu-process-step p {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: #44557a; line-height: 1.75;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .wcu-reasons-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .wcu-stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .wcu-stat         { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 16px; }
  .wcu-stat:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.1); }
  .wcu-reasons-grid { grid-template-columns: 1fr; gap: 16px; }
  .wcu-process-grid { grid-template-columns: 1fr; gap: 32px; }
  .wcu-process-grid::before { display: none; }
  .wcu-process-step { padding: 0; text-align: left; display: flex; gap: 20px; align-items: flex-start; }
  .wcu-step-icon    { flex-shrink: 0; margin: 0; width: 56px; height: 56px; font-size: 22px; }
  .wcu-step-num     { margin-bottom: 4px; }
}
