/* ═══════════════════════════════════════════════════════════
   MGlobal Impex — Products & Solutions Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* Main layout wrapper */
.pns-main {
  background: var(--c-bg);
  color: var(--c-text);
  overflow-x: hidden;
  position: relative;
}

/* Background gradient details */
.pns-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 80% 15%, rgba(0, 210, 255, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 15% 85%, rgba(255, 211, 0, 0.02) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════
   HERO SECTION (WITH SILHOUETTE FLOAT ANIMATION)
   ══════════════════════════════════════════════════════════ */
.pns-hero {
  position: relative;
  padding: 9rem 0 6rem;
  background: #0b1012; /* Deep Charcoal theme base */
  overflow: hidden;
  text-align: center;
}

/* Floating silhouette background icons */
.pns-hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
}

.pns-shape {
  position: absolute;
  color: rgba(0, 210, 255, 0.2);
  font-size: 3.5rem;
  animation: floatSilhouette 12s infinite ease-in-out;
}

.pns-shape:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.pns-shape:nth-child(2) { top: 60%; left: 80%; animation-delay: 3s; font-size: 4rem; }
.pns-shape:nth-child(3) { top: 75%; left: 15%; animation-delay: 6s; font-size: 2.8rem; }
.pns-shape:nth-child(4) { top: 15%; right: 15%; animation-delay: 9s; font-size: 3.2rem; }

@keyframes floatSilhouette {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-20px) rotate(15deg) scale(1.1); }
  100% { transform: translateY(0) rotate(0deg) scale(1); }
}

.pns-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 16, 18, 0.5) 0%, #0b1012 100%);
  z-index: 2;
}

.pns-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pns-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--c-text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.pns-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #00d2ff 0%, #0096ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pns-hero .pns-lead {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.75;
  color: var(--c-text-muted);
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.pns-hero .pns-subtext {
  font-size: 0.92rem;
  color: #00d2ff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════════
   INTERACTIVE SECTORS LAYOUT (TABS & BENTO GRID)
   ══════════════════════════════════════════════════════════ */
.sectors-section {
  padding: 6rem 0;
  position: relative;
  z-index: 3;
}

.sectors-tabs-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 992px) {
  .sectors-tabs-container {
    grid-template-columns: 320px 1fr;
  }
}

/* Vertical Tab Buttons column */
.sectors-tab-list {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  gap: 1rem;
  padding-bottom: 1rem;
}

@media (min-width: 992px) {
  .sectors-tab-list {
    flex-direction: column;
    overflow-x: visible;
    padding-bottom: 0;
    position: sticky;
    top: 120px;
  }
}

.sector-tab-btn {
  flex: 0 0 auto;
  background: rgba(18, 26, 29, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--c-glass-border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  text-align: left;
  cursor: pointer;
  color: var(--c-text-muted);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 260px;
}

@media (min-width: 992px) {
  .sector-tab-btn {
    width: 100%;
  }
}

.sector-tab-btn i {
  font-size: 1.4rem;
  color: var(--c-text-muted);
  transition: color 0.3s ease;
  width: 24px;
  text-align: center;
}

.sector-tab-btn-content {
  display: flex;
  flex-direction: column;
}

.sector-tab-btn span.tab-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-text);
}

.sector-tab-btn span.tab-tagline {
  font-size: 0.76rem;
  color: var(--c-text-muted);
  margin-top: 2px;
}

.sector-tab-btn:hover {
  border-color: rgba(0, 210, 255, 0.2);
  background: rgba(0, 210, 255, 0.02);
  transform: translateY(-2px);
}

.sector-tab-btn.active {
  background: rgba(0, 210, 255, 0.06);
  border-color: rgba(0, 210, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 210, 255, 0.08);
  transform: translateY(0);
}

.sector-tab-btn.active i {
  color: #00d2ff;
}

.sector-tab-btn.active span.tab-title {
  color: #00d2ff;
}

/* Tab contents area */
.sectors-tab-content-wrapper {
  background: rgba(18, 26, 29, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--c-glass-border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  min-height: 480px;
}

.sector-pane {
  display: none;
  animation: paneFadeIn 0.5s ease forwards;
}

.sector-pane.active {
  display: block;
}

@keyframes paneFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.pane-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .pane-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Image container side */
.pane-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .pane-visual {
    height: 100%;
    min-height: 320px;
  }
}

.pane-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pane-visual:hover img {
  transform: scale(1.05);
}

.pane-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 16, 18, 0.7) 0%, transparent 60%);
  pointer-events: none;
}

/* Text and information side */
.pane-info {
  display: flex;
  flex-direction: column;
}

.pane-info h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 1rem;
}

.pane-info p.pane-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--c-text-muted);
  margin-bottom: 1.5rem;
}

/* Showcase tags list */
.pane-supplies-box {
  margin-bottom: 1.5rem;
}

.pane-supplies-box strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #00d2ff;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.pane-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pane-supply-tag {
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  color: var(--c-text-muted);
  transition: all 0.2s ease;
}

.pane-supply-tag:hover {
  background: rgba(0, 210, 255, 0.05);
  border-color: rgba(0, 210, 255, 0.2);
  color: var(--c-text);
}

/* Benefits list */
.pane-benefits-box {
  margin-bottom: 2rem;
}

.pane-benefits-box strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #00d2ff;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.pane-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pane-benefits-list li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--c-text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pane-benefits-list li i {
  color: #00d2ff;
  margin-top: 3px;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.pane-info .btn-wrap {
  margin-top: auto;
  display: flex;
  gap: 1rem;
}

/* ══════════════════════════════════════════════════════════
   CTA BANNER SECTION
   ══════════════════════════════════════════════════════════ */
.pns-cta-section {
  padding: 4rem 0;
  position: relative;
  z-index: 3;
}

.pns-cta-box {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.08) 0%, rgba(0, 75, 127, 0.12) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 210, 255, 0.2);
  border-radius: 20px;
  padding: 4.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 210, 255, 0.05);
}

.pns-cta-box h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 1.25rem;
}

.pns-cta-box p {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   FAQ ACCORDION SECTION
   ══════════════════════════════════════════════════════════ */
.pns-faq-section {
  padding: 5rem 0 7rem;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.pns-faq-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3.5rem;
}

.pns-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pns-acc-item {
  background: rgba(18, 26, 29, 0.4);
  border: 1px solid var(--c-glass-border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pns-acc-item.open {
  border-color: rgba(0, 210, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 210, 255, 0.05);
}

.pns-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 1.75rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--c-text);
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  transition: color 0.2s;
}

.pns-acc-trigger:hover {
  color: #00d2ff;
}

.pns-acc-trigger i {
  color: #00d2ff;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.pns-acc-item.open .pns-acc-trigger i {
  transform: rotate(180deg);
}

.pns-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.75rem;
}

.pns-acc-body p {
  font-size: 0.94rem;
  color: var(--c-text-muted);
  line-height: 1.75;
  padding-bottom: 1.5rem;
  margin: 0;
}

.pns-acc-item.open .pns-acc-body {
  max-height: 500px;
}

