/* ============================================================
   wpc.css — Dedicated stylesheet for WPC-cladding.html
   Matches Galaxy Graphics & LED design system (newgal.css / glass.css)
   Font      : Montserrat (inherited from newgal.css)
   Brand     : #59005c / #7a1bb9 / #97019c (purple)
   Accent    : #ffb300 / #ffd24d (gold)
   Nature    : #4a7c3f / #6ab04c (WPC green accent for wood feel)
   ============================================================ */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --brand-dark:    #59005c;
  --brand-mid:     #7a1bb9;
  --brand-light:   #97019c;
  --brand-pale:    #f8f0ff;
  --accent-gold:   #ffb300;
  --accent-light:  #ffd24d;
  --wpc-brown:     #7c5230;   /* warm wood accent */
  --wpc-green:     #4a7c3f;   /* eco/nature accent */
  --wpc-tan:       #f5ede0;   /* warm off-white bg */
  --text-dark:     #222222;
  --text-mid:      #444444;
  --text-muted:    #666666;
  --text-light:    #f2e9f7;
  --bg-white:      #ffffff;
  --bg-light:      #faf8ff;
  --bg-warm:       #fdf8f2;   /* warm tint for WPC sections */
  --border:        #e8ddf5;
  --border-warm:   #e8d8c4;
  --shadow-sm:     0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-md:     0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg:     0 20px 50px rgba(0, 0, 0, 0.14);
  --radius:        8px;
  --radius-lg:     18px;
}

/* ============================================================
   FLOATING CONTACT BUTTONS
   Matches glass.css / newgal.css floating-contact pattern
   ============================================================ */
.floating-contact {
  position: fixed;
  bottom: 24px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.whatsapp-btn,
.phone-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-md);
}

.whatsapp-btn {
  background: #25d366;
}

.phone-btn {
  background: var(--brand-dark);
}

.whatsapp-btn:hover,
.phone-btn:hover {
  transform: scale(1.12);
  box-shadow: var(--shadow-lg);
}


/* ============================================================
   WPC HERO SECTION
   Mirrors glass.css .hero-section exactly
   ============================================================ */
.wpc-hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #111;
}

.wpc-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('wpc/wpc-fluted-panels-tv-unit-wall-design-modern-living-room.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 8s ease;
}

.wpc-hero-section:hover .wpc-hero-bg {
  transform: scale(1.04);
}

/* Overlay — mirrors .slide::after in newgal.css */
.wpc-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.30) 100%
  );
}

/* Content — mirrors glass.css .hero-content */
.wpc-hero-content {
  position: relative;
  z-index: 2;
  left: 8%;
  bottom: 0;
  padding: 0 0 14% 0;
  max-width: 720px;
  color: #fff;
}

/* Eyebrow pill — mirrors glass.css .hero-eyebrow */
.wpc-hero-eyebrow {
  display: block;
  width: fit-content;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(255, 179, 0, 0.12);
  border: 1px solid rgba(255, 179, 0, 0.38);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
}

/* H1 — mirrors glass.css .hero-title */
.wpc-hero-title {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 14px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.55);
}

/* Purple underline — mirrors glass.css .hero-title::after */
.wpc-hero-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--brand-dark);
  margin-top: 14px;
  border-radius: 3px;
}

.wpc-hero-title span {
  color: #d9b3ff;
}

/* Subtitle */
.wpc-hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin-bottom: 32px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
  line-height: 1.65;
}

/* CTA — mirrors glass.css .hero-cta / newgal.css .hero-btn */
.wpc-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--brand-dark);
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.3s, transform 0.3s;
}

.wpc-hero-cta:hover {
  background: var(--brand-mid);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .wpc-hero-section  { min-height: 70vh; }
  .wpc-hero-content  { left: 20px; right: 20px; padding-bottom: 20%; }
  .wpc-hero-title    { font-size: 26px; }
  .wpc-hero-subtitle { font-size: 14px; }
}


/* ============================================================
   SHARED SECTION UTILITIES
   ============================================================ */

/* Container — matches all newgal.css max-width wrappers */
.wpc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Eyebrow mini-title — mirrors glass.css .section-label */
.wpc-mini-title {
  display: block;
  width: fit-content;
  margin: 0 auto 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-light);
}

/* Centred heading block */
.section-center {
  text-align: center;
  margin-bottom: 50px;
}

.section-center h2 {
  font-size: 34px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 14px;
}

.section-center h2 span {
  color: var(--brand-light);
  font-weight: 600;
}

/* Supporting paragraph under centred heading */
.section-desc {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

/* Scroll-reveal — mirrors glass.css .gl-reveal */
.gl-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.gl-reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.gl-delay-1 { transition-delay: 0.12s; }
.gl-delay-2 { transition-delay: 0.26s; }
.gl-delay-3 { transition-delay: 0.40s; }
.gl-delay-4 { transition-delay: 0.54s; }
.gl-delay-5 { transition-delay: 0.68s; }

@media (max-width: 768px) {
  .section-center h2 { font-size: 24px; }
  .section-desc      { font-size: 14px; }
  .wpc-mini-title    { margin-left: 0; }
}


/* ============================================================
   INTRO SECTION
   Mirrors glass.css .intro-section / .intro-container
   ============================================================ */
.wpc-intro-section {
  padding: 90px 20px;
  background: var(--bg-white);
}

/* Left text + right highlight box — 2-col grid */
.wpc-intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 42px;
}

/* Heading wrap above the grid */
.wpc-heading-wrap {
  text-align: center;
  margin-bottom: 10px;
}

.wpc-heading-wrap h2 {
  font-size: 34px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.3;
  margin-top: 10px;
}

.wpc-heading-wrap h2 span {
  color: var(--brand-light);
  font-weight: 600;
}

/* Text column */
.wpc-intro-text p {
  font-size: 15.5px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 18px;
}

/* Highlight box — branded card (mirrors .expertise-card dark) */
.wpc-highlight-box {
  background: linear-gradient(145deg, var(--brand-dark), #3d0042);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: #fff;
  position: sticky;
  top: 100px;
}

.wpc-highlight-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 22px;
  color: var(--accent-gold);
  letter-spacing: 0.3px;
}

.wpc-highlight-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wpc-highlight-box ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(242, 233, 247, 0.9);
  line-height: 1.6;
}

/* Gold tick bullet */
.wpc-highlight-box ul li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--accent-gold)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2359005c' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
    center / 12px no-repeat;
  border-radius: 50%;
}

/* CTA inside highlight box — mirrors .footer-btn */
.wpc-btn {
  display: inline-block;
  padding: 13px 30px;
  background: var(--accent-gold);
  color: var(--brand-dark);
  border-radius: 40px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background 0.3s, transform 0.3s;
}

.wpc-btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

@media (max-width: 960px) {
  .wpc-intro-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .wpc-highlight-box { position: static; }
  .wpc-intro-section { padding: 60px 20px; }
  .wpc-heading-wrap h2 { font-size: 24px; }
}


/* ============================================================
   WHY WPC SECTION
   Mirrors glass.css dark services section pattern
   ============================================================ */
.why-wpc-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, var(--brand-dark), #3b0040);
  position: relative;
  overflow: hidden;
}

/* Glow blob — mirrors glass.css .services-section::before */
.why-wpc-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(151, 1, 156, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.why-wpc-section .wpc-container { position: relative; z-index: 1; }

/* Override centred heading colour on dark bg */
.why-wpc-section .section-center h2 {
  color: #fff;
}

.why-wpc-section .wpc-mini-title {
  color: var(--accent-gold);
}

.why-wpc-section .section-desc {
  color: rgba(242, 233, 247, 0.78);
}

/* 4-col grid — mirrors .expertise-grid */
.why-wpc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 50px;
}

/* Card — mirrors glass.css .service-card */
.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(242, 233, 247, 0.13);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  background: rgba(151, 1, 156, 0.18);
  border-color: rgba(242, 233, 247, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

/* Emoji icon area */
.why-icon {
  font-size: 38px;
  margin-bottom: 16px;
  line-height: 1;
}

.why-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-card p {
  font-size: 13.5px;
  color: rgba(242, 233, 247, 0.72);
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .why-wpc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .why-wpc-grid    { grid-template-columns: 1fr; }
  .why-wpc-section { padding: 60px 20px; }
}


/* ============================================================
   DESIGN OPTIONS SECTION
   Mirrors glass.css .design-section / .finishes-grid
   ============================================================ */
.wpc-design-section {
  padding: 90px 20px;
  background: var(--bg-warm);
}

/* 3-col grid (6 cards = 2 rows × 3) */
.design-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

/* Card — mirrors glass.css .finish-card */
.design-card {
  background: var(--bg-white);
  border: 1px solid var(--border-warm);
  border-top: 4px solid var(--brand-mid);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.design-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

/* Alternate top border colours for variety */
.design-card:nth-child(2) { border-top-color: var(--accent-gold); }
.design-card:nth-child(3) { border-top-color: var(--wpc-green); }
.design-card:nth-child(4) { border-top-color: var(--wpc-brown); }
.design-card:nth-child(5) { border-top-color: var(--brand-light); }
.design-card:nth-child(6) { border-top-color: var(--brand-dark); }

.design-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.design-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

@media (max-width: 960px) {
  .design-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .design-grid       { grid-template-columns: 1fr; }
  .wpc-design-section { padding: 60px 20px; }
}


/* ============================================================
   APPLICATIONS SECTION
   Mirrors glass.css .coverage-section / .systems-list
   ============================================================ */
.wpc-applications-section {
  padding: 90px 20px;
  background: var(--bg-white);
}

/* 3-col grid */
.application-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

/* Card — mirrors glass.css .system-item left-border style */
.app-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand-mid);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.app-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

/* Alternating accent borders */
.app-box:nth-child(2)  { border-left-color: var(--accent-gold); }
.app-box:nth-child(3)  { border-left-color: var(--wpc-green); }
.app-box:nth-child(4)  { border-left-color: var(--wpc-brown); }
.app-box:nth-child(5)  { border-left-color: var(--brand-light); }
.app-box:nth-child(6)  { border-left-color: var(--brand-dark); }

.app-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.app-box p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 960px) {
  .application-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .application-grid           { grid-template-columns: 1fr; }
  .wpc-applications-section   { padding: 60px 20px; }
}


/* ============================================================
   PROCESS SECTION
   Exactly mirrors glass.css process pattern (circle + line)
   ============================================================ */
.wpc-process-section {
  padding: 90px 20px;
  background: var(--bg-light);
  text-align: center;
}

.wpc-process-section .section-center {
  margin-bottom: 60px;
}

/* Flex row of steps + connectors */
.process-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

/* Step — mirrors glass.css .process-step */
.process-step {
  width: 175px;
  text-align: center;
}

/* Number span — mirrors glass.css .step-num / newgal.css .circle */
.process-step span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--brand-dark);
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 16px;
  animation: wpcPulse 2s infinite;
}

/* Connector line — mirrors glass.css .step-line / newgal.css .line */
.process-connector {
  width: 70px;
  height: 2px;
  background: #cdbdff;
  margin-top: 35px;
  flex-shrink: 0;
}

.process-step h3 {
  font-size: 13px;
  font-weight: 700;
  color: #2d1a5a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  padding: 0 6px;
}

.process-step p {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  padding: 0 6px;
}

/* Pulse — mirrors glass.css @keyframes glPulse */
@keyframes wpcPulse {
  0%   { box-shadow: 0 0 0 0 rgba(146, 1, 151, 0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(106, 61, 240, 0); }
  100% { box-shadow: 0 0 0 0 rgba(106, 61, 240, 0); }
}

/* Fade-up on steps — mirrors glass.css @keyframes glFadeUp */
@keyframes wpcFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.process-step:nth-child(1) { animation: wpcFadeUp 0.7s 0.1s ease forwards; opacity: 0; }
.process-step:nth-child(3) { animation: wpcFadeUp 0.7s 0.3s ease forwards; opacity: 0; }
.process-step:nth-child(5) { animation: wpcFadeUp 0.7s 0.5s ease forwards; opacity: 0; }
.process-step:nth-child(7) { animation: wpcFadeUp 0.7s 0.7s ease forwards; opacity: 0; }
.process-step:nth-child(9) { animation: wpcFadeUp 0.7s 0.9s ease forwards; opacity: 0; }

@media (max-width: 992px) {
  .process-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .process-connector {
    width: 2px;
    height: 36px;
    margin: 8px auto;
  }
  .process-step { width: 260px; }
  .wpc-process-section { padding: 60px 20px; }
}


/* ============================================================
   FAQ SECTION
   Mirrors glass.css .systems-section / .system-item
   ============================================================ */
.wpc-faq-section {
  padding: 90px 20px;
  background: var(--bg-white);
}

/* 2-col grid */
.faq-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 50px;
}

/* Card — mirrors glass.css .system-item */
.faq-item {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand-mid);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.faq-item:nth-child(2) { border-left-color: var(--accent-gold); }
.faq-item:nth-child(3) { border-left-color: var(--wpc-green); }
.faq-item:nth-child(4) { border-left-color: var(--brand-light); }

.faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-item p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .faq-wrapper     { grid-template-columns: 1fr; }
  .wpc-faq-section { padding: 60px 20px; }
}


/* ============================================================
   CTA / CONTACT SECTION
   Mirrors glass.css .cta-banner exactly
   ============================================================ */
#contact {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--brand-mid), var(--brand-dark));
  text-align: center;
}

#contact h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

#contact p {
  font-size: 16px;
  color: rgba(242, 233, 247, 0.85);
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Primary CTA — mirrors glass.css .cta-btn / newgal.css .footer-btn */
.wpc-cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent-gold);
  color: var(--brand-dark);
  border-radius: 40px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-decoration: none;
  margin: 6px 8px;
  transition: background 0.3s, transform 0.3s;
}

.wpc-cta-btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.wpc-cta-btn.outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}

.wpc-cta-btn.outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  #contact h2 { font-size: 26px; }
  #contact     { padding: 60px 20px; }
}


/* ============================================================
   GLOBAL RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 480px) {
  .wpc-intro-section,
  .why-wpc-section,
  .wpc-design-section,
  .wpc-applications-section,
  .wpc-process-section,
  .wpc-faq-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .wpc-container {
    padding: 0 12px;
  }
}