/* ============================================================
   ERAL Aluminium Industries — Custom Stylesheet
   Dark Navy + Orange + White Theme
   ============================================================ */

/* ── Hero ── */
.hero-section {
  min-height: 100vh;
  background-image: url('/hero-bg.png');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,27,63,0.94) 40%, rgba(11,27,63,0.75) 100%);
  z-index: 1;
}
.hero-pattern {
  position: absolute; inset: 0; z-index: 2;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.018) 40px,
      rgba(255,255,255,0.018) 42px
    );
}
.hero-content { position: relative; z-index: 3; }
.hero-badge {
  background: rgba(249, 115, 22, 0.2);
  border: 1px solid rgba(249,115,22,0.5);
  color: var(--orange-light);
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  text-transform: uppercase;
}
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 580px;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-stats {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 2.5rem;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 10%; height: 80%;
  width: 1px; background: rgba(255,255,255,0.15);
}
.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--orange);
  display: inline-block;
  line-height: 1;
}
.iso-stat { font-size: 2rem; }
.stat-plus {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange);
  display: inline-block;
  vertical-align: top;
  line-height: 1.1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-top: 6px;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero-scroll-indicator span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--orange));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}




/* ================= Hero Enquiry ================= */

.hero-enquiry{
  
    background: #ffffff;
    color: #1f2937;
    border-radius:15px;
    padding:35px;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
}

.hero-enquiry h3{
    color:#0b2341;
    font-weight:700;
    margin-bottom:10px;
}

.hero-enquiry p{
    color:#666;
    font-size:15px;
    margin-bottom:25px;
}

.hero-enquiry .form-control{
    height:30px;
    border-radius:5px;
    border:1px solid #ddd;
    box-shadow:none;
}

.hero-enquiry textarea.form-control{
    height:120px;
    resize:none;
}

.hero-enquiry .form-control:focus{
    border-color:#f97316;
    box-shadow:0 0 0 0.2rem rgba(249,115,22,.15);
}

.hero-enquiry .btn{
    height:52px;
    font-weight:600;
    font-size:16px;
}

.hero-enquiry textarea{
    height: 90px;
    resize: none;
}





/* ── Section Helpers ── */
.section-pad { padding: var(--section-gap) 0; }
.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 0.75rem;
}
.section-label-light {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange-light);
  display: block;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section-body { color: #4B5563; line-height: 1.85; font-size: 0.97rem; }

/* ── About ── */
.about-image-wrapper { position: relative; }
.about-img { width: 100%; height: 440px; object-fit: cover; border-radius: 8px; }
.about-experience-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--orange);
  color: #fff;
  padding: 1.2rem 1.5rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 30px rgba(249,115,22,0.4);
}
.exp-number { font-family: 'Oswald', sans-serif; font-size: 2.2rem; font-weight: 700; line-height: 1; }
.exp-text { font-size: 0.72rem; text-align: center; line-height: 1.4; text-transform: uppercase; letter-spacing: 0.05em; }
.about-badges { display: flex; flex-direction: column; gap: 0.6rem; }
.badge-check {
  font-size: 0.93rem;
  color: #1F2937;
  font-weight: 500;
  display: flex;
  align-items: center;
}

/* ── Products ── */
.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform .3s, box-shadow .3s, border-color .3s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(11,27,63,.13);
    border-color: var(--orange);
}

.product-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #fff;
}
.product-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform .4s ease;
}
.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,27,63,.25) 0%, transparent 60%);
    pointer-events: none;
}
.product-body { padding: 1.4rem 1.5rem 1.6rem; }
.product-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
}
.product-desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.btn-product {
  background: transparent;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 3px;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}
.btn-product:hover {
  background: var(--orange);
  color: #fff;
  transform: translateX(3px);
}

/* ── Services ── */
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  transition: all 0.3s;
  height: 100%;
}
.service-card:hover {
  background: rgba(249,115,22,0.12);
  border-color: rgba(249,115,22,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(249,115,22,0.15);
}
.service-icon {
  font-size: 2.4rem;
  color: var(--orange);
  margin-bottom: 1.2rem;
  display: block;
  transition: transform 0.3s;
}
.service-card:hover .service-icon { transform: scale(1.15) rotate(-5deg); }
.service-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.6rem;
}
.service-desc { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin: 0; }

/* ── Why Choose Us ── */
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.why-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(11,27,63,0.1); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 0.75rem;
  display: block;
}
.why-counter {
  font-family: 'Oswald', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--dark-navy);
  display: inline-block;
  line-height: 1;
}
.why-unit {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--orange);
  display: inline-block;
  vertical-align: top;
  line-height: 1.2;
}
.why-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  color: var(--dark-navy);
  margin: 0.5rem 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.why-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ── Infrastructure Carousel ── */
.gallery-img { height: 480px; object-fit: cover; }
.carousel-caption-custom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(11,27,63,0.9) 0%, transparent 100%);
  color: #fff;
  text-align: left;
}
.carousel-caption-custom h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.carousel-caption-custom p { font-size: 0.88rem; color: rgba(255,255,255,0.8); margin: 0; }
.carousel-prev-icon, .carousel-next-icon {
  width: 46px; height: 46px;
  background: rgba(249,115,22,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}
.carousel-prev-icon:hover, .carousel-next-icon:hover {
  background: var(--orange);
  transform: scale(1.1);
}
.carousel-control-prev { left: 16px; width: auto; }
.carousel-control-next { right: 16px; width: auto; }
.carousel-control-prev-icon, .carousel-control-next-icon { display: none; }

/* ── Testimonials ── */
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s;
  position: relative;
}
.testi-card:hover { box-shadow: 0 14px 40px rgba(11,27,63,0.1); transform: translateY(-4px); }
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; left: 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
}
.testi-stars { color: var(--orange); font-size: 0.9rem; margin-bottom: 1rem; gap: 3px; display: flex; }
.testi-text { font-size: 0.9rem; color: #374151; line-height: 1.75; margin-bottom: 1.4rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--dark-navy);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--dark-navy); }
.testi-company { font-size: 0.78rem; color: var(--text-muted); }

/* ── Contact ── */
.contact-form {}
.contact-input {
  border: 1.5px solid var(--border) !important;
  border-radius: 5px;
  padding: 0.75rem 1rem;
  font-size: 0.93rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #FAFAFA !important;
}
.contact-input:focus {
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12) !important;
  background: #fff !important;
}
.submit-btn { font-family: 'Oswald', sans-serif; font-size: 1rem; letter-spacing: 0.08em; border-radius: 5px; }
.spin { animation: spin 1s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.contact-info-block {}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.6;
}
.contact-info-item i { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.map-wrapper { border: 1px solid var(--border); }


/* ============================================================
   ERAL — About Page Extra Styles
   ============================================================ */

/* ── Page Banner ── */
.page-banner {
  min-height: 320px;
  background-image: url('/hero-bg.png');
  background-size: cover;
  background-position: center 40%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
}
.banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,27,63,0.92) 0%, rgba(26,26,26,0.88) 100%);
}
.banner-content { position: relative; z-index: 2; }
.banner-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.banner-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
}
.breadcrumb { background: transparent; padding: 0; }
.breadcrumb-item a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
}
.breadcrumb-item a:hover { color: var(--orange); }
.breadcrumb-item.active { font-size: 0.85rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ── Mini Stat Boxes ── */
.mini-stat-box {
  background: #F8F9FA;
  border: 1px solid #E5E7EB;
  border-left: 3px solid var(--orange);
  border-radius: 6px;
  padding: 1rem 1.25rem;
}
.mini-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1;
  margin-bottom: 4px;
}
.mini-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 500;
}

/* ── Mission Vision Values ── */
.mvv-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: all 0.3s;
}
.mvv-card:hover {
  background: rgba(249,115,22,0.1);
  border-color: rgba(249,115,22,0.35);
  transform: translateY(-4px);
}
.mvv-card--featured {
  border-color: var(--orange);
  background: rgba(249,115,22,0.08);
}
.mvv-icon {
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 1.25rem;
  display: block;
}
.mvv-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1rem;
}
.mvv-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin: 0;
}
.mvv-list {
  list-style: none;
  padding: 0; margin: 0;
}
.mvv-list li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.mvv-list li i { flex-shrink: 0; }

/* ── Timeline ── */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--dark-navy));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  margin-bottom: 40px;
  position: relative;
}
.timeline-right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 14px; height: 14px;
  background: var(--orange);
  border: 3px solid #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.25);
  z-index: 2;
}
.timeline-content {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 1.5rem;
  max-width: 360px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.timeline-content:hover {
  box-shadow: 0 10px 35px rgba(11,27,63,0.12);
  transform: translateY(-3px);
  border-color: var(--orange);
}
.timeline-year {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.timeline-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--dark-navy);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.timeline-text {
  font-size: 0.85rem;
  color: #6B7280;
  line-height: 1.7;
  margin: 0;
}

/* ── Certifications ── */
.cert-card {
  background: #F8F9FA;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}
.cert-card:hover {
  background: #fff;
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(249,115,22,0.12);
}
.cert-icon {
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 1rem;
  display: block;
}
.cert-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--dark-navy);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.cert-desc {
  font-size: 0.83rem;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}

/* ── Team Cards ── */
.team-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
    text-align:center;
    height:100%;
    padding-bottom:25px;
     border:3px solid transparent;
}
.team-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    border-color:#F97316;
}
.team-avatar {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--dark-navy), var(--navy-light));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  border: 2px solid var(--orange);
}
.team-name{
    margin-top:22px;
    font-size:24px;
    font-weight:600;
    color:#0B1B3F;
}
.team-role{
    color:#F97316;
    font-weight:600;
    margin:8px 0 15px;
    font-size:15px;
}
.team-bio{
    color:#666;
    font-size:15px;
    line-height:1.7;
    padding:0 22px;
    margin-bottom:20px;
}
.team-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#F97316;
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}
.team-social a:hover{
    background:#0B1B3F;
}

.team-img{
    width:100%;
    height:380px;
    overflow:hidden;
}
.team-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    display:block;
    transition:.4s;
}

.team-card:hover .team-img img{
    transform:scale(1.05);
}
/* Responsive */

@media(max-width:991px){
    .team-img{
        height:330px;
    }
}

@media(max-width:576px){
    .team-img{
        height:300px;
    }
}
/* ── CTA Strip ── */
.cta-strip {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #1A1A1A 100%);
  padding: 60px 0;
  border-top: 3px solid var(--orange);
}
.cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.cta-sub { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin: 0; }

/* ── Responsive Timeline ── */
@media (max-width: 767px) {
  .timeline::before { left: 20px; }
  .timeline-item,
  .timeline-right {
    justify-content: flex-start;
    padding-left: 55px;
    padding-right: 0;
  }
  .timeline-dot { left: 20px; }
  .timeline-content { max-width: 100%; }
}


/* ============================================================
   ERAL — Blog Page Styles
   ============================================================ */

/* ── Page Banner ── */
.page-banner {
  min-height: 300px;
  background-image: url('/hero-bg.png');
  background-size: cover;
  background-position: center 40%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0 55px;
}
.banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,27,63,0.92) 0%, rgba(26,26,26,0.88) 100%);
}
.banner-content { position: relative; z-index: 2; }
.banner-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.banner-sub { font-size: 1rem; color: rgba(255,255,255,0.7); margin: 0; }
.breadcrumb { background: transparent; padding: 0; }
.breadcrumb-item a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.breadcrumb-item a:hover { color: var(--orange); }
.breadcrumb-item.active { font-size: 0.82rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }

/* ── Filter Bar ── */
.blog-filter-bar {
  background: #fff;
  padding: 1.4rem 0;
  border-bottom: 1px solid #E5E7EB;
  position: sticky;
  top: 64px;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.blog-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.blog-search-wrap i {
  position: absolute;
  left: 1rem;
  color: #9CA3AF;
  font-size: 0.95rem;
}
.blog-search-input {
  width: 100%;
  border: 1.5px solid #D1D5DB;
  border-radius: 6px;
  padding: 0.6rem 1rem 0.6rem 2.6rem;
  font-size: 0.88rem;
  color: #111827;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.blog-search-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}

.blog-cat-tabs {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.blog-cat {
  background: transparent;
  border: 1.5px solid #D1D5DB;
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.blog-cat:hover, .blog-cat.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* ── Blog Tags ── */
.blog-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 3px;
}
.bc-cat {
  background: #FF6B00;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}
.blog-tag.industry  { background: rgba(16,185,129,0.1); color: #059669; }
.blog-tag.news      { background: rgba(139,92,246,0.1); color: #7C3AED; }
.blog-tag.tips      { background: rgba(249,115,22,0.1); color: var(--orange); }

/* ── Featured Article ── */
.featured-article {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s;
}
.featured-article:hover { box-shadow: 0 12px 40px rgba(249,115,22,0.12); }
.fa-img-wrap {
  position: relative;
  max-width: 100%;
  width: 100%;
  min-height: 100%;
  height: 340px;
  border-radius: 12px;
  overflow: hidden;
}
.fa-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  background-color: #f8f9fa;
  display: block;
  transition: transform 0.5s ease;
}
.featured-article:hover .fa-img { transform: scale(1.04); }
.fa-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
}
.fa-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.fa-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.fa-date, .fa-read {
  font-size: 0.78rem;
  color: #9CA3AF;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.fa-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.fa-excerpt { font-size: 0.9rem; color: #4B5563; line-height: 1.75; margin-bottom: 1.25rem; }
.fa-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 40px; height: 40px;
  background: rgba(249,115,22,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--orange);
  flex-shrink: 0;
}
.author-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.author-role { font-size: 0.75rem; color: #9CA3AF; }

/* ── Sort ── */
.blog-sort-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.sort-label { font-size: 0.8rem; color: #6B7280; font-weight: 600; white-space: nowrap; }
.blog-sort {
  border: 1.5px solid #D1D5DB;
  border-radius: 6px;
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  color: var(--dark-navy);
  outline: none;
  transition: border-color 0.2s;
}
.blog-sort:focus { border-color: var(--orange); }

/* ── Blog Cards ── */
.blog-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.blog-card:hover {
  border-color: var(--orange);
  box-shadow: 0 10px 35px rgba(249,115,22,0.1);
  transform: translateY(-5px);
}
.bc-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.bc-img {
  width: 100%; height: 100%;
  object-fit: cover;
  background-color: #f8f9fa;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.blog-card:hover .bc-img { transform: scale(1.06); }
.bc-cat {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 3px;
}
.bc-cat.technical { background: #2563EB; color: #fff; }
.bc-cat.industry  { background: #059669; color: #fff; }
.bc-cat.news      { background: #7C3AED; color: #fff; }
.bc-cat.tips      { background: var(--orange); color: #fff; }

.bc-body {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bc-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.bc-meta span {
  font-size: 0.73rem;
  color: #9CA3AF;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.bc-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-navy);
  line-height: 1.35;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.blog-card:hover .bc-title { color: var(--orange); }
.bc-excerpt {
  font-size: 0.82rem;
  color: #6B7280;
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}
.bc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #F3F4F6;
  padding-top: 0.75rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.bc-author {
  font-size: 0.75rem;
  color: #9CA3AF;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.bc-read-link {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
.bc-read-link:hover { gap: 0.55rem; }

/* No results */
.no-results {
  text-align: center;
  padding: 4rem 1rem;
  color: #9CA3AF;
}
.no-results i { font-size: 3rem; display: block; margin-bottom: 1rem; }
.no-results h5 { color: var(--dark-navy); margin-bottom: 0.5rem; }
.no-results p { font-size: 0.88rem; }

/* ── Sidebar ── */
.sidebar-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark-navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid #E5E7EB;
  display: flex;
  align-items: center;
}

/* Popular Posts */
.popular-posts { display: flex; flex-direction: column; gap: 0.6rem; }
.pp-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  text-decoration: none;
  padding: 0.75rem;
  border-radius: 6px;
  transition: background 0.2s;
}
.pp-item:hover { background: #FFF7ED; }
.pp-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(249,115,22,0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
}
.pp-title {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--dark-navy);
  line-height: 1.4;
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}
.pp-item:hover .pp-title { color: var(--orange); }
.pp-views { font-size: 0.72rem; color: #9CA3AF; display: flex; align-items: center; gap: 0.3rem; }

/* Topic Tags */
.topic-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.topic-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1.5px solid #D1D5DB;
  border-radius: 50px;
  padding: 0.3rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  transition: all 0.2s;
}
.topic-tag:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: #FFF7ED;
}
.topic-tag span {
  background: #F3F4F6;
  color: #9CA3AF;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem;
  border-radius: 50px;
  min-width: 18px;
  text-align: center;
}

/* Newsletter */
.newsletter-box {
  background: var(--dark-navy);
  border-radius: 10px;
  padding: 1.75rem;
}
.nl-desc { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 1rem; }
.nl-form { display: flex; flex-direction: column; gap: 0.6rem; }
.nl-input {
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.nl-input::placeholder { color: rgba(255,255,255,0.35); }
.nl-input:focus { border-color: var(--orange); }
.nl-btn {
  background: var(--orange);
  border: none;
  color: #fff;
  border-radius: 6px;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nl-btn:hover { background: #e86100; transform: translateY(-1px); }
.nl-note { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 0.6rem; margin-bottom: 0; }
.nl-success {
  color: #4ADE80;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── Bottom CTA ── */
.blog-bottom-cta {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #1A1A1A 100%);
  padding: 60px 0;
  border-top: 3px solid var(--orange);
}
.cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.cta-sub { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin: 0; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .fa-img-wrap { min-height: 260px; }
  .fa-body { padding: 2rem 1.5rem; }
  .blog-cat-tabs { justify-content: flex-start; }
}
@media (max-width: 767px) {
  .blog-filter-bar { position: static; }
  .blog-cat-tabs { justify-content: flex-start; }
  .fa-body { padding: 1.5rem; }
}


/* ============================================================
   ERAL — Contact Page Styles
   ============================================================ */

/* ── Page Banner ── */
.page-banner {
  min-height: 320px;
  background-image: url('/hero-bg.png');
  background-size: cover;
  background-position: center 40%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
}
.banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,27,63,0.92) 0%, rgba(26,26,26,0.88) 100%);
}
.banner-content { position: relative; z-index: 2; }
.banner-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.banner-sub { font-size: 1rem; color: rgba(255,255,255,0.7); margin: 0; }
.breadcrumb { background: transparent; padding: 0; }
.breadcrumb-item a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.breadcrumb-item a:hover { color: var(--orange); }
.breadcrumb-item.active { font-size: 0.85rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ── Info Cards Strip ── */
.contact-info-strip {
  background: #fff;
  padding: 60px 0;
  border-bottom: 1px solid #E5E7EB;
}
.info-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.info-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 30px rgba(249,115,22,0.1);
  transform: translateY(-4px);
}
.info-card:hover::before { transform: scaleX(1); }
.info-icon {
  width: 60px; height: 60px;
  background: rgba(249,115,22,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  margin: 0 auto 1rem;
  transition: all 0.3s;
}
.info-card:hover .info-icon {
  background: var(--orange);
  color: #fff;
}
.info-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.info-text {
  font-size: 0.85rem;
  color: #4B5563;
  line-height: 1.8;
  margin: 0;
}
.info-text a {
  color: #4B5563;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
.info-text a:hover { color: var(--orange); }
.info-sub { font-size: 0.75rem; color: #9CA3AF; font-style: italic; display: block; margin-top: 0.25rem; }

/* ── Contact Form ── */
.contact-form .form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}
.cf-input {
  border: 1.5px solid #D1D5DB;
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  color: #111827;
  background: #fff;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.cf-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
  outline: none;
}
.cf-input::placeholder { color: #9CA3AF; }
.cf-input.is-invalid { border-color: #EF4444; }

/* File upload */
.cf-file-wrap { position: relative; }
.cf-file-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 2px dashed #D1D5DB;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: #6B7280;
  transition: all 0.25s;
}
.cf-file-label:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(249,115,22,0.04);
}
.cf-file-label i { font-size: 1.4rem; color: var(--orange); flex-shrink: 0; }

/* Success message */
.cf-success {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #F0FDF4;
  border: 1.5px solid #86EFAC;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}
.cf-success i {
  font-size: 1.5rem;
  color: #22C55E;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.cf-success h6 { color: #15803D; font-size: 0.95rem; }
.cf-success p { font-size: 0.85rem; color: #166534; }

/* ── Map & Side Info ── */
.contact-map-wrap {
  border-radius: 10px;
  overflow: hidden;
  height: 280px;
  border: 1px solid #E5E7EB;
}
.contact-map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

.quick-info-box {
  background: var(--dark-navy);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.qi-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.qi-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.qi-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.75);
}
.qi-list li i { color: var(--orange); font-size: 0.95rem; flex-shrink: 0; }

/* WhatsApp CTA */
.whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #25D366;
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  text-decoration: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
}
.whatsapp-cta:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}
.whatsapp-cta > .fab { font-size: 2rem; flex-shrink: 0; }
.wa-title { font-weight: 700; font-size: 0.9rem; line-height: 1; margin-bottom: 0.2rem; }
.wa-sub { font-size: 0.75rem; opacity: 0.85; }

/* ── Branch Cards ── */
.branch-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  height: 100%;
  transition: all 0.3s;
}
.branch-card:hover {
  border-color: var(--orange);
  background: rgba(249,115,22,0.06);
  transform: translateY(-4px);
}
.branch-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}
.branch-badge.secondary { background: rgba(255,255,255,0.12); }
.branch-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.6rem;
}
.branch-addr {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.branch-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.branch-contacts a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.branch-contacts a:hover { color: var(--orange); }
.branch-contacts a i { font-size: 0.85rem; color: var(--orange); }

/* ── Responsive ── */
@media (max-width: 767px) {
  .contact-map-wrap { height: 220px; }
  .info-card { padding: 1.5rem 1rem; }
}


/* ============================================================
   ERAL — Products Page Styles
   ============================================================ */

/* ── Page Banner (same as about.css) ── */
.page-banner {
  min-height: 320px;
  background-image: url('/hero-bg.png');
  background-size: cover;
  background-position: center 40%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
}
.banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,27,63,0.92) 0%, rgba(26,26,26,0.88) 100%);
}
.banner-content { position: relative; z-index: 2; }
.banner-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.banner-sub { font-size: 1rem; color: rgba(255,255,255,0.7); margin: 0; }
.breadcrumb { background: transparent; padding: 0; }
.breadcrumb-item a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.breadcrumb-item a:hover { color: var(--orange); }
.breadcrumb-item.active { font-size: 0.85rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ── Filter Tabs ── */
.filter-section {
  background: #fff;
  padding: 1.5rem 0;
  border-bottom: 1px solid #E5E7EB;
  position: sticky;
  top: 62px;
  z-index: 99;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 1.5px solid #E5E7EB;
  color: #6B7280;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* ── Category Header ── */
.prod-category-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
}
.category-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #D1D5DB);
}
.prod-category-header .category-line:last-child {
  background: linear-gradient(to left, transparent, #D1D5DB);
}
.category-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark-navy);
  white-space: nowrap;
  padding: 0.35rem 1rem;
  background: #fff;
  border: 1.5px solid var(--orange);
  border-radius: 2px;
  color: var(--orange);
}

/* ── Product Card ── */
/* ── Product Card ── */
.prod-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

.prod-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(11,27,63,.13);
    border-color: var(--orange);
}

/* Product Image */
.prod-img-wrap{
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #fff;
    min-height: 260px; 
}
.prod-img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
    transition:transform .4s ease;
}

.prod-card:hover .prod-img{
    transform:scale(1.05);
}

/* Badges */
.prod-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--orange);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
}
.prod-badge--new { background: #10B981; }
.prod-badge--solar { background: #F59E0B; }
.prod-badge--custom { background: var(--dark-navy); }

/* Hover Actions */
.prod-actions {
  position: absolute;
  bottom: 14px; right: 14px;
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}
.prod-card:hover .prod-actions { opacity: 1; transform: translateY(0); }
.prod-action-btn {
  width: 36px; height: 36px;
  background: rgba(11,27,63,0.85);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.prod-action-btn:hover { background: var(--orange); color: #fff; }

/* Card Body */
.prod-body { padding: 1.4rem 1.5rem 1.6rem; }
.prod-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}
.prod-cat-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(249,115,22,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}
.prod-cat-tag--industrial { color: #1D4ED8; background: rgba(29,78,216,0.1); }
.prod-cat-tag--solar { color: #D97706; background: rgba(217,119,6,0.1); }
.prod-cat-tag--custom { color: var(--dark-navy); background: rgba(11,27,63,0.08); }
.prod-code { font-size: 0.72rem; color: #9CA3AF; font-family: monospace; }
.prod-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
}
.prod-desc { font-size: 0.85rem; color: #6B7280; line-height: 1.65; margin-bottom: 0.85rem; }
.prod-specs {
  list-style: none;
  padding: 0; margin: 0 0 1.1rem;
  background: #F9FAFB;
  border-radius: 5px;
  padding: 0.75rem 1rem;
}
.prod-specs li {
  font-size: 0.8rem;
  color: #374151;
  padding: 0.2rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.prod-specs li i { color: var(--orange); font-size: 0.75rem; flex-shrink: 0; }
.prod-footer { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.btn-outline-prod {
  background: transparent;
  border: 1.5px solid var(--dark-navy);
  color: var(--dark-navy);
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.38rem 0.9rem;
  border-radius: 3px;
  transition: all 0.22s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline-prod:hover { background: var(--dark-navy); color: #fff; }

/* ── Custom CTA Banner inside grid ── */
.prod-cta-banner {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #1a2a5e 100%);
  border-radius: 8px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(249,115,22,0.3);
}
.prod-cta-banner::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(249,115,22,0.08);
}
.prod-cta-content { position: relative; z-index: 1; }
.prod-cta-icon {
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 1rem;
  display: block;
}
.prod-cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.prod-cta-text { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin: 0; }

/* ── Alloy Table ── */
.alloy-table-wrap {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 1.75rem;
  margin-bottom: 2rem;
}
.alloy-table-title {
  font-family: 'Oswald', sans-serif;
  color: var(--dark-navy);
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.alloy-table {
  font-size: 0.87rem;
  margin: 0;
}
.alloy-table thead th {
  background: var(--dark-navy);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  border: none;
}
.alloy-table tbody tr:nth-child(even) { background: #F9FAFB; }
.alloy-table tbody tr:hover { background: rgba(249,115,22,0.05); }
.alloy-table tbody td { padding: 0.75rem 1rem; color: #374151; border-color: #F3F4F6; vertical-align: middle; }

/* ── Bottom CTA ── */
.prod-bottom-cta {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #1A1A1A 100%);
  padding: 60px 0;
  border-top: 3px solid var(--orange);
}
.cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.cta-sub { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin: 0; }

/* ── Hidden filter items ── */
.prod-item.hidden {
  display: none !important;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .filter-tabs { gap: 0.35rem; }
  .filter-btn { font-size: 0.72rem; padding: 0.38rem 0.8rem; }
  .prod-img-wrap { height: 180px; }
  .prod-cta-banner { padding: 1.75rem; }
}


/* ==========================================================================
   Wire Rod Page - Rich Content Full Width Layout
   ========================================================================== */

.wirerod-fullwidth-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333;
    background-color: #fafbfc;
}

/* Hero Banner Box */
.product-hero-full {
    position: relative;
    width: 100%;
    margin-top: 90px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Banner Image */
.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Breadcrumb overlay on banner image */
.hero-breadcrumb-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    box-sizing: border-box;
}

.hero-breadcrumb-wrap .breadcrumb {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.hero-breadcrumb-wrap .breadcrumb-item {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

.hero-breadcrumb-wrap .breadcrumb-item + .breadcrumb-item::before {
    content: ">>";
    padding: 0 8px;
    color: rgba(255,255,255,0.6);
}

.hero-breadcrumb-wrap .breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

.hero-breadcrumb-wrap .breadcrumb-item a:hover {
    color: #3b82f6;
}

.hero-breadcrumb-wrap .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 500;
}

/* Fluid Container for Inner Content */
.content-container-fluid {
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
}

/* Section Title Headings */
.section-title {
    margin-bottom: 25px;
}

.section-title h2 {
    font-size: 26px;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.title-underline {
    width: 60px;
    height: 4px;
    background-color: #3b82f6; 
    border-radius: 2px;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .product-hero-full {
        margin-top: 75px;
    }
}

/* Section 1: Overview Split Layout (Text left, Image right) */
.overview-split-grid {
    display: table;
    width: 100%;
    margin-bottom: 40px;
    table-layout: fixed;
}

.overview-text {
    display: table-cell;
    width: 60%;
    vertical-align: middle;
    padding-right: 40px;
}

.overview-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 15px;
}

.overview-image-box {
    display: table-cell;
    width: 40%;
    vertical-align: middle;
    position: relative;
    background-color: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    text-align: center;
}

.overview-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Image missing hone par placeholder border dikhegi */
.image-placeholder::before {
    content: "📷";
    font-size: 40px;
    display: block;
    margin-top: 100px;
    color: #94a3b8;
}

.placeholder-text {
    position: absolute;
    bottom: 15px;
    width: 100%;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
}

/* Section 2: Features & Table Split Layout */
.specs-features-grid {
    display: table;
    width: 100%;
    margin-bottom: 50px;
    table-layout: fixed;
}

.content-box {
    display: table-cell;
    width: 50%;
    vertical-align: top;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
}

.feature-box {
    margin-right: 20px; /* spacing fallback */
}

.content-box h3 {
    font-size: 20px;
    color: #1e293b;
    margin-top: 0;
    margin-bottom: 20px;
    border-left: 4px solid #3b82f6;
    padding-left: 10px;
}

.feature-box ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.feature-box ul li {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.feature-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Table Design */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.specs-table th, .specs-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.specs-table th {
    background-color: #f8fafc;
    color: #1e293b;
    font-weight: 600;
}

.specs-table tr:hover {
    background-color: #f1f5f9;
}

/* Section 3: Industrial Applications Cards Layout */
.applications-section {
    margin-bottom: 50px;
}

.apps-grid {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.app-card {
    display: table-cell;
    width: 33.33%;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-sizing: border-box;
    text-align: center;
}

/* Spacing between pseudo table cells */
.app-card:not(:last-child) {
    border-right: 15px solid transparent; /* acts as gap separator */
}

.app-img-box {
    width: 100%;
    height: 160px;
    background-color: #f1f5f9;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
}

.app-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-missing::before {
    content: "🏭 Industrial Image";
    color: #94a3b8;
    line-height: 160px;
    font-size: 14px;
}

.app-card h4 {
    margin: 10px 0;
    font-size: 18px;
    color: #0f172a;
}

.app-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Section 4: Calculator */
.interactive-calculator-section {
    padding-bottom: 60px;
}

.calculator-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    max-width: 550px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}

.calculator-card h3 {
    font-size: 20px;
    color: #0f172a;
    margin: 0 0 10px 0;
}

.calculator-card p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: #3b82f6;
}

.calc-btn {
    width: 100%;
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.calc-btn:hover {
    background-color: #2563eb;
}

.result-display {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    display: none;
}

.result-display p {
    font-size: 18px;
    color: #0f172a;
    margin: 0 0 5px 0;
}

.result-display strong {
    color: #10b981;
    font-size: 22px;
}

.calc-note {
    font-size: 11px;
    color: #94a3b8;
}

/* Responsive Rules for Mobile Displays */
@media (max-width: 768px) {
    .overview-split-grid, .specs-features-grid, .apps-grid {
        display: block !important;
        width: 100% !important;
    }
    .overview-text, .overview-image-box, .content-box, .app-card {
        display: block !important;
        width: 100% !important;
        padding: 20px 0 !important;
        margin-right: 0 !important;
        border-right: none !important;
    }
    .overview-image-box {
        height: 200px;
    }
    .content-box {
        padding: 20px !important;
        margin-bottom: 20px;
    }
}
/* Mobile Responsive */
@media (max-width: 767px) {
    .product-hero-full {
        padding: 45px 0;
        min-height: 240px;
    }
    .hero-container-fluid h1 {
        font-size: 26px;
    }
    .hero-container-fluid p {
        font-size: 15px;
    }
}

/* ===================== WIRE ROD PAGE — EXTRA STYLES ===================== */
/* Reuses all base classes from public/style.css & products-detail.css.
   This file only adds the few bits unique to this simpler content layout. */

.wr-subhead {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark-navy);
  font-weight: 700;
}

.wr-img-wrap {
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.wr-img-wrap img {
  display: block;
  transition: transform 0.4s ease;
}

.wr-img-wrap:hover img {
  transform: scale(1.04);
}

.wr-section .spec-table {
  margin-bottom: 0;
}

.wr-section .stock-info {
  border-left: 3px solid var(--accent-orange, #ff6b1a);
  padding: 1.25rem 1.5rem;
  background: #f9f9f9;
  border-radius: 0.5rem;
}

@media (max-width: 991px) {
  .wr-img-wrap {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================================
   ERAL — Product Detail Page Styles
   ============================================================ */

/* ── Page Banner ── */
.page-banner {
  min-height: 300px;
  background-image: url('/hero-bg.png');
  background-size: cover;
  background-position: center 40%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0 55px;
}
.banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,27,63,0.92) 0%, rgba(26,26,26,0.88) 100%);
}
.banner-content { position: relative; z-index: 2; }
.banner-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.banner-sub { font-size: 1rem; color: rgba(255,255,255,0.7); margin: 0; }
.breadcrumb { background: transparent; padding: 0; }
.breadcrumb-item a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.breadcrumb-item a:hover { color: var(--orange); }
.breadcrumb-item.active { font-size: 0.82rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }

/* ── Gallery ── */
.pd-gallery { position: sticky; top: 90px; }
.pd-main-img-wrap {
  position: relative;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.pd-main-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.pd-main-img-wrap:hover .pd-main-img { transform: scale(1.05); }
.pd-badges {
  position: absolute;
  top: 14px; left: 14px;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.pd-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}
.pd-badge.bestseller { background: var(--orange); color: #fff; }
.pd-badge.instock { background: #22C55E; color: #fff; }
.pd-badge.instock i { font-size: 0.45rem; }

.pd-thumbs {
  display: flex; gap: 0.65rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  padding-bottom: 4px;
}
.pd-thumb {
  width: 80px; height: 80px;
  flex-shrink: 0;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}
.pd-thumb.active { border-color: var(--orange); }
.pd-thumb:hover { border-color: var(--orange); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Product Info ── */
.pd-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.pd-category {
  background: rgba(249,115,22,0.1);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
}
.pd-code {
  font-size: 0.78rem;
  color: #9CA3AF;
}
.pd-code strong { color: var(--dark-navy); }

.pd-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.2;
  margin: 0;
}

.pd-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.6rem;
}
.pd-rating i { color: #F59E0B; font-size: 0.9rem; }
.pd-rating-text { font-size: 0.8rem; color: #6B7280; margin-left: 0.25rem; }

.pd-short-desc {
  font-size: 0.92rem;
  color: #4B5563;
  line-height: 1.75;
}

/* Quick specs strip */
.pd-quick-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
}
.qs-item {
  padding: 0.9rem 0.75rem;
  text-align: center;
  border-right: 1px solid #E5E7EB;
}
.qs-item:last-child { border-right: none; }
.qs-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 0.3rem;
}
.qs-val {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-navy);
}

/* Finish options */
.pd-finish-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
}
.pd-finish-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.finish-opt {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border: 1.5px solid #D1D5DB;
  border-radius: 6px;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
}
.finish-opt:hover, .finish-opt.active {
  border-color: var(--orange);
  color: var(--orange);
}
.finish-swatch {
  width: 16px; height: 16px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(0,0,0,0.15);
}
.finish-swatch.natural { background: #D4D4D4; }
.finish-swatch.powder  { background: linear-gradient(135deg, #F97316, #1D4ED8, #16A34A); }
.finish-swatch.anodized { background: #A1A1AA; }
.finish-swatch.wood { background: #92400E; }
.finish-selected-label { font-size: 0.8rem; color: #6B7280; margin: 0; }

/* CTA Buttons */
.pd-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Assurance strip */
.pd-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #E5E7EB;
}
.pa-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #6B7280;
  font-weight: 500;
}
.pa-item i { color: var(--orange); }

/* ── Tab Navigation ── */
.pd-tab-nav {
  display: flex;
  border-bottom: 2px solid #E5E7EB;
  gap: 0;
  list-style: none;
  padding: 0; margin: 0;
  flex-wrap: wrap;
}
.pd-tab-link {
  display: block;
  padding: 0.85rem 1.75rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6B7280;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}
.pd-tab-link:hover { color: var(--orange); }
.pd-tab-link.active { color: var(--orange); border-bottom-color: var(--orange); }

/* Tab content */
.pd-tab-content { display: none; }
.pd-tab-content.active { display: block; }

.tab-section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 1rem;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #374151;
  font-weight: 500;
}
.feature-item i { color: var(--orange); flex-shrink: 0; }

/* Profile visual */
.profile-visual {
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
}
.pv-label {
  background: var(--dark-navy);
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.6rem;
  font-weight: 600;
}

/* Stock info */
.stock-info {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
}
.si-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid #E5E7EB;
  font-size: 0.82rem;
  gap: 1rem;
}
.si-row:last-child { border-bottom: none; }
.si-row span:first-child { color: #6B7280; font-weight: 600; white-space: nowrap; }
.si-row span:last-child { color: var(--dark-navy); text-align: right; }

/* Spec tables */
.spec-table-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--dark-navy);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.spec-table {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
}
.st-row {
  display: flex;
  align-items: center;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid #E5E7EB;
  gap: 1rem;
}
.st-row:last-child { border-bottom: none; }
.st-row:nth-child(odd) { background: #F9FAFB; }
.st-key {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark-navy);
  min-width: 160px;
  flex-shrink: 0;
}
.st-val { font-size: 0.83rem; color: #4B5563; }

/* Application cards */
.app-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: all 0.3s;
}
.app-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 28px rgba(249,115,22,0.1);
  transform: translateY(-4px);
}
.app-icon {
  width: 52px; height: 52px;
  background: rgba(249,115,22,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 1rem;
  transition: all 0.3s;
}
.app-card:hover .app-icon { background: var(--orange); color: #fff; }
.app-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.app-text { font-size: 0.83rem; color: #6B7280; line-height: 1.65; margin: 0; }

/* Download cards */
.dl-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 1.1rem 1.25rem;
  transition: all 0.25s;
}
.dl-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(249,115,22,0.1);
}
.dl-icon { font-size: 1.8rem; color: var(--orange); flex-shrink: 0; }
.dl-info { flex: 1; }
.dl-title { font-size: 0.88rem; font-weight: 600; color: var(--dark-navy); }
.dl-size { font-size: 0.72rem; color: #9CA3AF; margin-top: 0.15rem; }
.dl-btn {
  width: 36px; height: 36px;
  background: rgba(249,115,22,0.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  text-decoration: none;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.25s;
}
.dl-btn:hover { background: var(--orange); color: #fff; }

/* ── Quote Strip ── */
.quote-strip {
  background: var(--dark-navy);
  padding: 55px 0;
  border-top: 3px solid var(--orange);
}
.qs-big-icon {
  font-size: 3.5rem;
  color: var(--orange);
  opacity: 0.85;
}
.qs-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}
.qs-sub { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin: 0; }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
}
.btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}

/* ── Related Products ── */
.rel-product-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
}
.rel-product-card:hover {
  border-color: var(--orange);
  box-shadow: 0 10px 35px rgba(249,115,22,0.12);
  transform: translateY(-5px);
  color: inherit;
}
.rp-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.rp-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.rel-product-card:hover .rp-img { transform: scale(1.06); }
.rp-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
}
.rp-body { padding: 1.1rem; }
.rp-code { font-size: 0.68rem; color: #9CA3AF; font-weight: 600; letter-spacing: 0.06em; margin-bottom: 0.3rem; }
.rp-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 0.25rem;
}
.rp-spec { font-size: 0.78rem; color: #6B7280; margin-bottom: 0.75rem; }
.rp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.rp-link i { transition: transform 0.2s; }
.rel-product-card:hover .rp-link i { transform: translateX(4px); }

/* ── Utility ── */
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .pd-gallery { position: static; }
  .pd-quick-specs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .feature-grid { grid-template-columns: 1fr; }
  .pd-quick-specs { grid-template-columns: repeat(2, 1fr); }
  .pd-cta .btn { width: 100%; justify-content: center; }
  .st-key { min-width: 110px; }
}


/* ============================================================
   ERAL Industries — Blog Details Page CSS
   
   ============================================================ */

/* ── Page Hero / Breadcrumb ── */
.blog-page-hero {
  min-height: 420px;
  background: linear-gradient(135deg, #0B1B3F 0%, #162B60 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 130px 0 60px;
  overflow: hidden;
}
.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,27,63,0.97) 40%, rgba(22,43,96,0.85) 100%);
  z-index: 1;
}
.blog-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.018) 40px,
    rgba(255,255,255,0.018) 42px
  );
}
.blog-hero-content {
  position: relative;
  z-index: 3;
}

/* Breadcrumb */
.blog-breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}
.blog-breadcrumb .breadcrumb-item a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.blog-breadcrumb .breadcrumb-item a:hover { color: var(--orange); }
.blog-breadcrumb .breadcrumb-item.active { color: var(--orange); font-size: 0.85rem; font-family: 'Oswald', sans-serif; }
.blog-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }

/* Hero Meta Badges */
.blog-hero-meta { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; }
.blog-category-badge {
  background: var(--orange);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 3px;
}
.blog-date-badge,
.blog-read-badge {
  color: rgba(255,255,255,0.6);
  font-size: 0.83rem;
  font-family: 'Inter', sans-serif;
}

/* Hero Title */
.blog-page-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.01em;
  max-width: 820px;
}

/* Author Row */
.blog-author-row { display: flex; align-items: center; gap: 0.85rem; }
.blog-author-avatar {
  width: 46px;
  height: 46px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.blog-author-name { font-weight: 700; font-size: 0.9rem; color: #fff; }
.blog-author-role { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ── Featured Image ── */
.blog-featured-img-wrap { border-radius: 10px; overflow: hidden; }
.blog-featured-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg,#0B1B3F 0%,#162B60 100%);
  min-height: 200px;
}
.blog-featured-caption {
  background: #F3F4F6;
  color: #6B7280;
  font-size: 0.8rem;
  padding: 0.65rem 1rem;
  border-radius: 0 0 10px 10px;
  font-style: italic;
}

/* ── Article Body ── */
.blog-article { line-height: 1.85; font-size: 0.97rem; color: #374151; }

.blog-lead {
  font-size: 1.08rem;
  color: #1F2937;
  font-weight: 500;
  line-height: 1.9;
  border-left: 4px solid var(--orange);
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}

.blog-h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--border);
  position: relative;
}
.blog-h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--orange);
}

/* Info Box */
.blog-infobox {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(249,115,22,0.07);
  border: 1px solid rgba(249,115,22,0.25);
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  padding: 1.2rem 1.4rem;
  font-size: 0.92rem;
  color: #1F2937;
  line-height: 1.7;
}
.blog-infobox-icon { color: var(--orange); font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }

/* Process Steps */
.blog-process-steps { display: flex; flex-direction: column; gap: 0; }
.blog-step {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.blog-step:last-child { border-bottom: none; }
.blog-step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.25;
  min-width: 54px;
  line-height: 1;
  flex-shrink: 0;
}
.blog-step:hover .blog-step-num { opacity: 1; transition: opacity 0.25s; }
.blog-step-body h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 0.4rem;
}
.blog-step-body p {
  font-size: 0.9rem;
  color: #4B5563;
  margin: 0;
  line-height: 1.75;
}

/* Table */
.blog-table-wrap { border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.blog-table { margin: 0; font-size: 0.88rem; }
.blog-table thead th {
  background: var(--dark-navy);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  border: none;
}
.blog-table tbody td {
  padding: 0.85rem 1rem;
  vertical-align: middle;
  color: #374151;
  border-color: var(--border);
}
.blog-table tbody tr:hover { background: rgba(249,115,22,0.04); }

/* Checklist */
.blog-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.blog-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.65;
}
.blog-checklist li i { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

/* Pull Quote */
.blog-pullquote {
  border-left: 4px solid var(--orange);
  background: #F9FAFB;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
  font-size: 1.02rem;
  color: var(--dark-navy);
  font-style: italic;
  font-weight: 500;
  line-height: 1.7;
}
.blog-pullquote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-style: normal;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Industry Grid */
.blog-industry-card {
  background: #F9FAFB;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.1rem 1rem;
  text-align: center;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  cursor: default;
}
.blog-industry-card:hover {
  border-color: var(--orange);
  background: rgba(249,115,22,0.05);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(249,115,22,0.12);
}
.blog-industry-card i { font-size: 1.7rem; color: var(--orange); }
.blog-industry-card span { font-size: 0.8rem; font-weight: 600; color: var(--dark-navy); line-height: 1.3; }

/* CTA Banner */
.blog-cta-banner {
  background: linear-gradient(135deg, #0B1B3F 0%, #162B60 100%);
  border-radius: 10px;
  padding: 2rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.blog-cta-banner h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.3rem;
}
.blog-cta-banner p { font-size: 0.87rem; color: rgba(255,255,255,0.65); margin: 0; }
.blog-cta-banner .btn-orange { white-space: nowrap; }

/* Tags */
.blog-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.blog-tag-label { font-size: 0.83rem; font-weight: 700; color: var(--dark-navy); }
.blog-tag {
  background: #F3F4F6;
  color: #374151;
  font-size: 0.78rem;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
}
.blog-tag:hover { background: var(--orange); color: #fff; }

/* Share */
.blog-share { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.blog-share-label { font-size: 0.83rem; font-weight: 700; color: var(--dark-navy); }
.blog-share-icons { display: flex; gap: 0.5rem; }
.blog-share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.25s;
}
.blog-share-btn.linkedin { background: #0077B5; }
.blog-share-btn.facebook { background: #1877F2; }
.blog-share-btn.twitter  { background: #1DA1F2; }
.blog-share-btn.whatsapp { background: #25D366; }
.blog-share-btn:hover { opacity: 0.85; transform: translateY(-3px); }

/* ── Related Posts ── */
.blog-related-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 1.4rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--border);
  position: relative;
}
.blog-related-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--orange);
}
.blog-related-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
}
.blog-related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(11,27,63,0.12);
  border-color: var(--orange);
}
.blog-related-img-wrap {
  position: relative;
  height: 160px;
  background: #162B60;
  overflow: hidden;
}
.blog-related-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
  display: block;
  min-height: 100%;
}
.blog-related-card:hover .blog-related-img-wrap img { transform: scale(1.06); }
.blog-related-cat {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.blog-related-body {
  padding: 1rem 1.1rem 1.1rem;
  background: #fff;
  flex: 1;
}
.blog-related-body h6 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 0.6rem;
  line-height: 1.4;
  transition: color 0.2s;
}
.blog-related-card:hover .blog-related-body h6 { color: var(--orange); }
.blog-related-date { font-size: 0.78rem; color: var(--text-muted); }

/* ── Sidebar ── */
.blog-sidebar { position: sticky; top: 100px; }

.sidebar-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}

.sidebar-widget-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--border);
  position: relative;
}
.sidebar-widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--orange);
}

/* Search */
.sidebar-search-wrap { display: flex; gap: 0; }
.sidebar-search-input {
  border-radius: 5px 0 0 5px !important;
  border: 1.5px solid var(--border) !important;
  border-right: none !important;
  font-size: 0.88rem;
  padding: 0.6rem 0.9rem;
}
.sidebar-search-input:focus {
  border-color: var(--orange) !important;
  box-shadow: none !important;
}
.sidebar-search-btn {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 0 5px 5px 0;
  font-size: 0.9rem;
  transition: background 0.2s;
  cursor: pointer;
}
.sidebar-search-btn:hover { background: var(--orange-dark); }

/* Categories */
.sidebar-cat-list { list-style: none; padding: 0; margin: 0; }
.sidebar-cat-list li { border-bottom: 1px solid var(--border); }
.sidebar-cat-list li:last-child { border-bottom: none; }
.sidebar-cat-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  text-decoration: none;
  color: #374151;
  font-size: 0.87rem;
  font-weight: 500;
  transition: all 0.2s;
}
.sidebar-cat-list li a i { color: var(--orange); font-size: 0.7rem; margin-right: 0.4rem; }
.sidebar-cat-list li a:hover { color: var(--orange); padding-left: 4px; }
.sidebar-cat-list li a span {
  background: #F3F4F6;
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 0.1rem 0.5rem;
  border-radius: 10px;
  margin-left: auto;
}

/* Recent Posts */
.sidebar-recent-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.sidebar-recent-list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.sidebar-recent-img {
  width: 68px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 5px;
  overflow: hidden;
  background: #162B60;
}
.sidebar-recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 100%;
}
.sidebar-recent-body a {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-navy);
  text-decoration: none;
  line-height: 1.45;
  margin-bottom: 0.35rem;
  transition: color 0.2s;
}
.sidebar-recent-body a:hover { color: var(--orange); }
.sidebar-recent-body span { font-size: 0.75rem; color: var(--text-muted); }

/* Enquiry Widget */
.sidebar-enquiry-widget {
  background: linear-gradient(135deg, #0B1B3F 0%, #162B60 100%);
  border-color: transparent;
}
.sidebar-enquiry-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid rgba(255,255,255,0.15);
  padding-bottom: 0.65rem;
  position: relative;
}
.sidebar-enquiry-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--orange);
}
.sidebar-enquiry-widget p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1.1rem; }
.sidebar-form-input {
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: #fff !important;
  border-radius: 5px;
  font-size: 0.87rem;
  padding: 0.65rem 0.9rem;
  height: auto;
}
.sidebar-form-input::placeholder { color: rgba(255,255,255,0.45); }
.sidebar-form-input:focus {
  background: rgba(255,255,255,0.15) !important;
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.2) !important;
  color: #fff !important;
}

/* Tag Cloud */
.sidebar-tag-cloud { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.sidebar-tag {
  background: #F3F4F6;
  color: #374151;
  font-size: 0.77rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.sidebar-tag:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ── Responsive ── */
@media (max-width: 991px) {
  .blog-sidebar { position: static; }
}
@media (max-width: 767px) {
  .blog-page-title { font-size: 1.7rem; }
  .blog-featured-img { height: 230px; }
  .blog-cta-banner { flex-direction: column; text-align: center; }
  .blog-cta-banner .btn-orange { width: 100%; }
}


/* ===================== ARCHITECTURAL PAGE — EXTRA STYLES ===================== */
/* Reuses base classes from public/style.css & products-detail.css.
   This file only adds the marquee strip + highlight quote unique to this page. */

.arc-marquee-wrap {
  background: var(--dark-navy, #0f1b2d);
  padding: 1.1rem 0;
  overflow: hidden;
}

.arc-marquee {
  display: flex;
  width: max-content;
}

.arc-marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  animation: arc-scroll 32s linear infinite;
  white-space: nowrap;
}

.arc-marquee:hover .arc-marquee-track,
.arc-marquee-paused .arc-marquee-track {
  animation-play-state: paused;
}

.arc-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.arc-tag i {
  color: var(--accent-orange, #ff6b1a);
  font-size: 1rem;
}

@keyframes arc-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.arc-highlight-quote {
  position: relative;
  background: #f9f9f9;
  border-left: 3px solid var(--accent-orange, #ff6b1a);
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem 1.25rem 3rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark-navy, #0f1b2d);
  line-height: 1.5;
  margin: 0;
}

.arc-highlight-quote i {
  position: absolute;
  left: 1rem;
  top: 1.1rem;
  font-size: 1.4rem;
  color: var(--accent-orange, #ff6b1a);
}

.arc-img-wrap {
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.arc-img-wrap img {
  display: block;
  transition: transform 0.4s ease;
}

.arc-img-wrap:hover img {
  transform: scale(1.04);
}

@media (max-width: 991px) {
  .arc-img-wrap {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .arc-marquee-track {
    animation: none;
  }
}

/* ===================== STRUCTURAL SECTION PAGE — EXTRA STYLES ===================== */
/* Reuses base classes from public/style.css & products-detail.css.
   This file only adds the marquee strip + highlight quote unique to this page. */

.ss-marquee-wrap {
  background: var(--dark-navy, #0f1b2d);
  padding: 1.1rem 0;
  overflow: hidden;
}

.ss-marquee {
  display: flex;
  width: max-content;
}

.ss-marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  animation: ss-scroll 32s linear infinite;
  white-space: nowrap;
}

.ss-marquee:hover .ss-marquee-track,
.ss-marquee-paused .ss-marquee-track {
  animation-play-state: paused;
}

.ss-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.ss-tag i {
  color: var(--accent-orange, #ff6b1a);
  font-size: 1rem;
}

@keyframes ss-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.ss-highlight-quote {
  position: relative;
  background: #f9f9f9;
  border-left: 3px solid var(--accent-orange, #ff6b1a);
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem 1.25rem 3rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark-navy, #0f1b2d);
  line-height: 1.5;
  margin: 0;
}

.ss-highlight-quote i {
  position: absolute;
  left: 1rem;
  top: 1.1rem;
  font-size: 1.4rem;
  color: var(--accent-orange, #ff6b1a);
}

.ss-img-wrap {
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ss-img-wrap img {
  display: block;
  transition: transform 0.4s ease;
}

.ss-img-wrap:hover img {
  transform: scale(1.04);
}

@media (max-width: 991px) {
  .ss-img-wrap {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ss-marquee-track {
    animation: none;
  }
}

/* ===================== ELECTRICAL PAGE — EXTRA STYLES ===================== */
/* Reuses base classes from public/style.css & products-detail.css.
   Layout is intentionally different from Architectural/Structural pages:
   static property card grid instead of a scrolling marquee, reversed
   image/text columns, and a chip list for applications. */

/* --- Scroll reveal states (toggled by electrical.js) --- */
.el-prop-card,
.el-section,
.el-img-wrap,
.el-quote-box {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.el-prop-card.el-visible,
.el-section.el-visible,
.el-img-wrap.el-visible,
.el-quote-box.el-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Property Cards --- */
.el-prop-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0.75rem;
  padding: 1.5rem 1rem;
  text-align: center;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.el-prop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-orange, #ff6b1a);
}

.el-prop-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 107, 26, 0.1);
  color: var(--accent-orange, #ff6b1a);
  font-size: 1.5rem;
}

.el-prop-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-navy, #0f1b2d);
  margin: 0;
  line-height: 1.35;
}

/* --- Image + Quote box --- */
.el-img-wrap {
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.el-img-wrap img {
  display: block;
  transition: transform 0.4s ease;
}

.el-img-wrap:hover img {
  transform: scale(1.04);
}

.el-quote-box {
  background: var(--dark-navy, #0f1b2d);
  border-radius: 0.75rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.el-quote-icon {
  color: var(--accent-orange, #ff6b1a);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.el-quote-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
}

/* --- Application chips --- */
.el-app-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.el-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: #f5f5f5;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark-navy, #0f1b2d);
  transition: background 0.2s ease, color 0.2s ease;
}

.el-chip i {
  color: var(--accent-orange, #ff6b1a);
}

.el-chip:hover {
  background: var(--accent-orange, #ff6b1a);
  color: #fff;
}

.el-chip:hover i {
  color: #fff;
}

@media (max-width: 991px) {
  .el-img-wrap,
  .el-quote-box {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===================== HEAT SINK PAGE — EXTRA STYLES ===================== */
/* Reuses base classes from public/style.css & products-detail.css.
   Layout is intentionally different from the other extrusion pages:
   an industries-served icon strip, a numbered feature timeline, and a
   full-width achievement banner — no marquee, no property-card grid. */

/* --- Industries Strip --- */
.hs-industries-strip {
  background: #fff;
  padding: 2.5rem 0;
  border-bottom: 1px solid #eee;
}

.hs-industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.hs-industry-item i {
  font-size: 1.75rem;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--dark-navy, #0f1b2d);
  color: var(--accent-orange, #ff6b1a);
}

.hs-industry-item span {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-navy, #0f1b2d);
}

/* --- Numbered Timeline --- */
.hs-timeline {
  border-left: 2px solid #eee;
  padding-left: 0;
}

.hs-timeline-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0 0.75rem 1.25rem;
  margin-left: -2px;
  border-left: 2px solid transparent;
  transition: border-color 0.25s ease;
}

.hs-timeline-item:hover {
  border-left-color: var(--accent-orange, #ff6b1a);
}

.hs-timeline-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 107, 26, 0.1);
  color: var(--accent-orange, #ff6b1a);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

.hs-timeline-title {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-navy, #0f1b2d);
}

/* --- Image --- */
.hs-img-wrap {
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hs-img-wrap img {
  display: block;
  transition: transform 0.4s ease;
}

.hs-img-wrap:hover img {
  transform: scale(1.04);
}

/* --- Full-width achievement banner --- */
.hs-achievement-banner {
  background: linear-gradient(135deg, var(--dark-navy, #0f1b2d), #1a2c47);
  padding: 3.5rem 0;
}

.hs-achievement-icon {
  font-size: 2rem;
  color: var(--accent-orange, #ff6b1a);
  margin-bottom: 1rem;
  display: inline-block;
}

.hs-achievement-text {
  max-width: 760px;
  margin: 0 auto;
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
}

/* --- Scroll reveal states (toggled by heat-sink.js) --- */
.hs-industry-item,
.hs-timeline-item,
.hs-img-wrap,
.hs-achievement-banner .container {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hs-industry-item.hs-visible,
.hs-timeline-item.hs-visible,
.hs-img-wrap.hs-visible,
.hs-achievement-banner .container.hs-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .hs-img-wrap {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ===================== MODULAR HARDWARE PAGE — EXTRA STYLES ===================== */
/* Reuses base classes from public/style.css & products-detail.css.
   Layout is intentionally different from other extrusion pages: no
   marquee, no property grid, no timeline — instead a sticky product-range
   card, inline trait badges, and a two-image gallery strip. */

/* --- Scroll reveal states (toggled by aluminium-modular-hardware.js) --- */
.mh-gallery-item,
.mh-range-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.mh-gallery-item.mh-visible,
.mh-range-card.mh-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Trait badges --- */
.mh-trait-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.mh-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--accent-orange, #ff6b1a);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-orange, #ff6b1a);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.mh-badge:hover {
  background: var(--accent-orange, #ff6b1a);
  color: #fff;
}

/* --- Tagline blockquote --- */
.mh-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark-navy, #0f1b2d);
  padding: 1.25rem 1.5rem;
  background: #f9f9f9;
  border-radius: 0.5rem;
  border-left: 4px solid var(--accent-orange, #ff6b1a);
  margin: 0;
}

/* --- Image gallery strip --- */
.mh-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mh-gallery-item {
  overflow: hidden;
  border-radius: 0.6rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.mh-gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.mh-gallery-item:hover img {
  transform: scale(1.06);
}

/* --- Sticky product range card --- */
.mh-range-card {
  position: sticky;
  top: 100px;
  background: var(--dark-navy, #0f1b2d);
  border-radius: 0.9rem;
  padding: 1.75rem 1.5rem;
}

.mh-range-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 1.1rem;
}

.mh-range-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mh-range-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.mh-range-list li:last-child {
  border-bottom: none;
}

.mh-range-list li i {
  color: var(--accent-orange, #ff6b1a);
  font-size: 1.3rem;
  line-height: 1;
  margin-top: -2px;
}

@media (max-width: 991px) {
  .mh-range-card {
    position: static;
    margin-top: 2rem;
  }
  .mh-gallery {
    grid-template-columns: 1fr;
  }
}

/* ===================== TRANSPORT PAGE — EXTRA STYLES ===================== */
/* Reuses base classes from public/css/style.css.
   Layout is intentionally different from other extrusion pages: a
   road/route-themed horizontal benefit strip (fitting the "Transport"
   theme) instead of a marquee, property grid, timeline, or sticky card. */

.tp-route-section {
  background: #f9f9f9;
  padding: 4rem 0;
}

/* --- Road / Route strip --- */
.tp-route {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 2rem;
}

.tp-route-line {
  position: absolute;
  top: 26px;
  left: 5%;
  right: 5%;
  height: 4px;
  background: repeating-linear-gradient(
    to right,
    var(--dark-navy, #0B1B3F) 0,
    var(--dark-navy, #0B1B3F) 18px,
    transparent 18px,
    transparent 32px
  );
  z-index: 0;
}

.tp-stop {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
}

.tp-stop-marker {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--orange, #F97316);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
  border: 4px solid #f9f9f9;
}

.tp-stop-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-navy, #0B1B3F);
  line-height: 1.4;
  max-width: 150px;
  margin: 0;
}

/* --- Clientele highlight card --- */
.tp-client-card {
  position: relative;
  background: var(--dark-navy, #0B1B3F);
  border-radius: 0.9rem;
  padding: 1.75rem 1.75rem 1.75rem 4.5rem;
}

.tp-client-icon {
  position: absolute;
  left: 1.5rem;
  top: 1.75rem;
  font-size: 1.8rem;
  color: var(--orange, #F97316);
}

.tp-client-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* --- Image --- */
.tp-img-wrap {
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tp-img-wrap img {
  display: block;
  transition: transform 0.4s ease;
}

.tp-img-wrap:hover img {
  transform: scale(1.04);
}

/* --- Scroll reveal states (toggled by transport.js) --- */
.tp-stop,
.tp-img-wrap,
.tp-client-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tp-stop.tp-visible,
.tp-img-wrap.tp-visible,
.tp-client-card.tp-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .tp-route {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
    padding-left: 1.5rem;
  }

  .tp-route-line {
    top: 0;
    bottom: 0;
    left: 26px;
    right: auto;
    width: 4px;
    height: auto;
    background: repeating-linear-gradient(
      to bottom,
      var(--dark-navy, #0B1B3F) 0,
      var(--dark-navy, #0B1B3F) 18px,
      transparent 18px,
      transparent 32px
    );
  }

  .tp-stop {
    flex-direction: row;
    text-align: left;
    max-width: 100%;
  }

  .tp-stop-text {
    max-width: none;
  }

  .tp-img-wrap {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .tp-client-card {
    padding: 1.5rem 1.25rem 1.5rem 1.25rem;
  }
  .tp-client-icon {
    position: static;
    display: block;
    margin-bottom: 0.75rem;
  }
}

/* ===================== SHEETS & COILS PAGE — EXTRA STYLES ===================== */
/* Reuses base classes from public/css/style.css.
   Layout is intentionally different from the extrusion pages: an
   interactive Sheet/Coil spec toggle switcher and a colour-swatch +
   masonry gallery section — no marquee, timeline, road-strip, or
   sticky card here. */

.sc-spec-section {
  background: #f9f9f9;
}
.sc-gallery img{
    width: 100%;
    height: 500px;      /* Apni requirement ke hisaab se 450px, 500px ya 550px */
    object-fit: cover;
    border-radius: 12px;
}

.pd-assurance{
    margin-top: 20px;
}
/* --- Highlight quote --- */
.sc-highlight-quote {
  position: relative;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0.75rem;
  padding: 1.5rem 1.5rem 1.5rem 3.25rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-navy, #0B1B3F);
  line-height: 1.6;
  margin: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.sc-highlight-quote i {
  position: absolute;
  left: 1.25rem;
  top: 1.4rem;
  font-size: 1.5rem;
  color: var(--orange, #F97316);
}

/* --- Sheet / Coil toggle switcher --- */
.sc-toggle {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.sc-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--dark-navy, #0B1B3F);
  background: transparent;
  border-radius: 999px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark-navy, #0B1B3F);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.sc-toggle-btn.active,
.sc-toggle-btn:hover {
  background: var(--dark-navy, #0B1B3F);
  color: #fff;
}

.sc-spec-panel {
  display: none;
  animation: sc-fade-in 0.35s ease;
}

.sc-spec-panel.active {
  display: block;
}

@keyframes sc-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Colour swatches --- */
.sc-swatch-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.sc-swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.sc-swatch:hover {
  transform: scale(1.15);
}

.sc-swatch-more {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted, #6B7280);
  margin-left: 0.25rem;
}

/* --- Masonry-style gallery --- */
.sc-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.9rem;
  height: 420px;
}

.sc-gallery-tall {
  grid-row: span 2;
}

.sc-gallery-item {
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.sc-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sc-gallery-item:hover img {
  transform: scale(1.06);
}

/* --- Scroll reveal (toggled by sheets-and-coils.js) --- */
.sc-toggle-btn,
.sc-spec-panel .spec-table,
.sc-gallery-item,
.sc-highlight-quote {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.sc-toggle-btn.sc-visible,
.sc-spec-panel .spec-table.sc-visible,
.sc-gallery-item.sc-visible,
.sc-highlight-quote.sc-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .sc-gallery {
    grid-template-columns: 1fr 1fr;
    height: 320px;
  }
}

@media (max-width: 575px) {
  .sc-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 160px);
    height: auto;
  }
  .sc-gallery-tall {
    grid-row: auto;
  }
}

/* ===================== SHEETS PAGE — EXTRA STYLES ===================== */
/* Reuses base classes from public/css/style.css.
   Layout is intentionally different from every other page so far: a
   perforated "ticket" style spec card, an FAQ-style accordion for
   applications, and a horizontal scroll-snap gallery — no toggle
   switcher, marquee, timeline, road-strip, or sticky card here. */

/* --- Highlight quote --- */
.sh-highlight-quote {
  position: relative;
  background: #f9f9f9;
  border-left: 4px solid var(--orange, #F97316);
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem 1.25rem 3rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-navy, #0B1B3F);
  line-height: 1.5;
  margin: 0;
}

.sh-highlight-quote i {
  position: absolute;
  left: 1rem;
  top: 1.1rem;
  font-size: 1.4rem;
  color: var(--orange, #F97316);
}

/* --- Spec "Ticket" card --- */
.sh-ticket {
  background: #fff;
  border-radius: 0.9rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.sh-ticket-top {
  background: var(--dark-navy, #0B1B3F);
  color: #fff;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sh-ticket-top i {
  color: var(--orange, #F97316);
  font-size: 0.8rem;
}

.sh-ticket-perforation {
  position: relative;
  height: 0;
  border-top: 2px dashed #ddd;
  margin: 0 1.5rem;
}

.sh-ticket-perforation::before,
.sh-ticket-perforation::after {
  content: "";
  position: absolute;
  top: -12px;
  width: 24px;
  height: 24px;
  background: #f9f9f9;
  border-radius: 50%;
}

.sh-ticket-perforation::before { left: -1.75rem; }
.sh-ticket-perforation::after { right: -1.75rem; }

.sh-ticket-body {
  padding: 1.5rem;
}

.sh-ticket-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px dashed #eee;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
}

.sh-ticket-row:last-child {
  border-bottom: none;
}

.sh-ticket-row span {
  color: var(--text-muted, #6B7280);
}

.sh-ticket-row strong {
  color: var(--dark-navy, #0B1B3F);
  font-weight: 600;
  text-align: right;
}

/* --- Applications accordion --- */
.sh-accordion {
  max-width: 780px;
  margin: 0 auto;
}

.sh-acc-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0.6rem;
  margin-bottom: 0.85rem;
  overflow: hidden;
}

.sh-acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-navy, #0B1B3F);
  text-align: left;
}

.sh-acc-head span {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.sh-acc-head i.bi {
  color: var(--orange, #F97316);
}

.sh-acc-arrow {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.sh-acc-item.active .sh-acc-arrow {
  transform: rotate(180deg);
}

.sh-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.4rem;
}

.sh-acc-item.active .sh-acc-body {
  max-height: 200px;
  padding: 0 1.4rem 1.25rem;
}

.sh-acc-body p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted, #6B7280);
  line-height: 1.6;
}

/* --- Horizontal scroll gallery --- */
.sh-scroll-gallery {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
}

.sh-scroll-item {
  flex: 0 0 auto;
  width: 320px;
  height: 220px;
  border-radius: 0.75rem;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.sh-scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sh-scroll-item:hover img {
  transform: scale(1.06);
}

.sh-scroll-gallery::-webkit-scrollbar {
  height: 6px;
}

.sh-scroll-gallery::-webkit-scrollbar-thumb {
  background: var(--orange, #F97316);
  border-radius: 999px;
}

/* --- Scroll reveal (toggled by sheets.js) --- */
.sh-ticket,
.sh-highlight-quote,
.sh-acc-item,
.sh-scroll-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.sh-ticket.sh-visible,
.sh-highlight-quote.sh-visible,
.sh-acc-item.sh-visible,
.sh-scroll-item.sh-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 575px) {
  .sh-scroll-item {
    width: 260px;
    height: 180px;
  }
}

/* ===================== COILS PAGE — EXTRA STYLES ===================== */
/* Reuses base classes from public/css/style.css.
   This page uses a genuine styled HTML <table> for specs (like the
   Mayur Metals reference site) instead of a card/ticket layout —
   deliberately different from the Sheets page. */

/* --- Highlight quote --- */
.co-highlight-quote {
  position: relative;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0.75rem;
  padding: 1.5rem 1.5rem 1.5rem 3.25rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-navy, #0B1B3F);
  line-height: 1.6;
  margin: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.co-highlight-quote i {
  position: absolute;
  left: 1.25rem;
  top: 1.4rem;
  font-size: 1.5rem;
  color: var(--orange, #F97316);
}

/* --- Real HTML spec table --- */
.co-table-wrap {
  max-width: 760px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 0.75rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.co-spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
}

.co-spec-table tr {
  border-bottom: 1px solid #eee;
}

.co-spec-table tr:last-child {
  border-bottom: none;
}

.co-spec-table tr:nth-child(even) {
  background: #f9f9f9;
}

.co-spec-table th {
  text-align: left;
  padding: 1rem 1.5rem;
  background: var(--dark-navy, #0B1B3F);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: 35%;
  white-space: nowrap;
}

.co-spec-table td {
  padding: 1rem 1.5rem;
  color: #1F2937;
}

/* --- Gallery --- */
.co-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.co-gallery-item {
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.co-gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.co-gallery-item:hover img {
  transform: scale(1.06);
}

/* --- Scroll reveal (toggled by coils.js) --- */
.co-highlight-quote,
.co-table-wrap,
.co-gallery-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.co-highlight-quote.co-visible,
.co-table-wrap.co-visible,
.co-gallery-item.co-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 575px) {
  .co-spec-table th,
  .co-spec-table td {
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
  }
  .co-gallery {
    grid-template-columns: 1fr;
  }
  .co-gallery-item img {
    height: 200px;
  }
}

/* ===================== ALUMINIUM CLOSURES PAGE — EXTRA STYLES ===================== */
/* Reuses base classes from public/css/style.css.
   Uses a real HTML <table> for specs (like Coils page) but styled
   differently — light header row instead of dark navy — plus packaging
   info cards and a key-factors chip row unique to this page. */

/* --- Key factors chip row --- */
.ac-key-factors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ac-key-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0.6rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-navy, #0B1B3F);
}

.ac-key-item i {
  color: var(--orange, #F97316);
  font-size: 1.05rem;
}

/* --- Applications card --- */
.ac-apps-card {
  background: var(--dark-navy, #0B1B3F);
  border-radius: 0.9rem;
  padding: 1.75rem 1.5rem;
}

.ac-apps-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 1rem;
}

.ac-apps-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ac-apps-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'Inter', sans-serif;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.85);
}

.ac-apps-list li:last-child {
  border-bottom: none;
}

.ac-apps-list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--orange, #F97316);
  font-weight: 700;
}

/* --- Packaging cards --- */
.ac-pack-card {
  background: #fff;
  border-radius: 0.9rem;
  padding: 2rem 1.75rem;
  height: 100%;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ac-pack-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}

.ac-pack-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange, #F97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.ac-pack-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-navy, #0B1B3F);
  margin-bottom: 0.6rem;
}

.ac-pack-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.87rem;
  color: var(--text-muted, #6B7280);
  line-height: 1.65;
  margin: 0;
}

/* --- Real HTML spec table (light header, unlike Coils' dark header) --- */
.ac-table-wrap {
  max-width: 820px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 0.75rem;
  border: 1px solid #eee;
}

.ac-spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}

.ac-spec-table tr {
  border-bottom: 1px solid #eee;
}

.ac-spec-table tr:last-child {
  border-bottom: none;
}

.ac-spec-table th {
  text-align: left;
  padding: 1rem 1.5rem;
  background: #fff5ec;
  color: var(--dark-navy, #0B1B3F);
  border-left: 4px solid var(--orange, #F97316);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: 32%;
  white-space: nowrap;
}

.ac-spec-table td {
  padding: 1rem 1.5rem;
  color: #1F2937;
}

/* --- 3-image gallery --- */
.ac-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ac-gallery-item {
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.ac-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ac-gallery-item:hover img {
  transform: scale(1.06);
}

/* --- Scroll reveal (toggled by aluminium-closures.js) --- */
.ac-key-item,
.ac-apps-card,
.ac-pack-card,
.ac-table-wrap,
.ac-gallery-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.ac-key-item.ac-visible,
.ac-apps-card.ac-visible,
.ac-pack-card.ac-visible,
.ac-table-wrap.ac-visible,
.ac-gallery-item.ac-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .ac-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .ac-gallery {
    grid-template-columns: 1fr;
  }
  .ac-spec-table th,
  .ac-spec-table td {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }
}

/* ===================== TREAD PLATES PAGE — EXTRA STYLES ===================== */
/* Reuses base classes from public/css/style.css.
   Left content column + right column of 3 stacked images (as requested),
   with pattern cards, a spec table, and application tag chips unique
   to this page's layout. */

/* --- Pattern selector cards --- */
.tpl-pattern-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tpl-pattern-card {
  flex: 1 1 240px;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: #f9f9f9;
  border-radius: 0.75rem;
  padding: 1.25rem 1.4rem;
}

.tpl-pattern-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange, #F97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.tpl-pattern-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark-navy, #0B1B3F);
  margin-bottom: 0.2rem;
}

.tpl-pattern-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted, #6B7280);
}

/* --- Spec heading --- */
.tpl-spec-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark-navy, #0B1B3F);
}

.tpl-spec-heading span {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: none;
  color: var(--text-muted, #6B7280);
  letter-spacing: normal;
}

/* --- Spec table --- */
.tpl-table-wrap {
  overflow-x: auto;
  border-radius: 0.6rem;
  border: 1px solid #eee;
}

.tpl-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
}

.tpl-spec-table tr {
  border-bottom: 1px solid #eee;
}

.tpl-spec-table tr:last-child {
  border-bottom: none;
}

.tpl-spec-table tr:nth-child(odd) {
  background: #fafafa;
}

.tpl-spec-table th {
  text-align: left;
  padding: 0.85rem 1.25rem;
  color: var(--dark-navy, #0B1B3F);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  width: 30%;
  white-space: nowrap;
}

.tpl-spec-table td {
  padding: 0.85rem 1.25rem;
  color: #1F2937;
}

/* --- Application tag chips --- */
.tpl-app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tpl-app-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  background: var(--dark-navy, #0B1B3F);
  color: #fff;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
}

.tpl-app-tag i {
  color: var(--orange, #F97316);
}

/* --- Right column: 3 stacked images --- */
.tpl-img-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tpl-img-item {
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.tpl-img-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.tpl-img-item:hover img {
  transform: scale(1.06);
}

/* --- Scroll reveal (toggled by tread-plates.js) --- */
.tpl-pattern-card,
.tpl-app-tag,
.tpl-img-item,
.tpl-table-wrap {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tpl-pattern-card.tpl-visible,
.tpl-app-tag.tpl-visible,
.tpl-img-item.tpl-visible,
.tpl-table-wrap.tpl-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .tpl-img-stack {
    flex-direction: row;
    overflow-x: auto;
  }
  .tpl-img-item {
    flex: 0 0 220px;
  }
  .tpl-img-item img {
    height: 160px;
  }
}

@media (max-width: 575px) {
  .tpl-pattern-row {
    flex-direction: column;
  }
}
/* ===================== FLOORING SHEET PAGE — EXTRA STYLES ===================== */
/* Reuses base classes from public/css/style.css.
   Same left-content / right-3-stacked-images layout requested as the
   Tread Plates page, but styled completely differently: a checklist,
   pattern swatches, stat mini-cards instead of a table, icon-circle
   applications, and polaroid-style tilted images instead of plain cards. */

/* --- Why Choose Us checklist --- */
.fls-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
}

.fls-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.87rem;
  color: var(--dark-navy, #0B1B3F);
  line-height: 1.4;
}

.fls-check-item i {
  color: var(--orange, #F97316);
  margin-top: 2px;
  flex-shrink: 0;
}

/* --- Sub headings --- */
.fls-sub-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark-navy, #0B1B3F);
}

.fls-sub-heading span {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--text-muted, #6B7280);
}

/* --- Pattern swatches --- */
.fls-pattern-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.fls-pattern-swatch {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-navy, #0B1B3F);
}

.fls-swatch-preview {
  width: 50px;
  height: 50px;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.fls-swatch-five-bar {
  background: repeating-linear-gradient(
    90deg,
    var(--dark-navy, #0B1B3F) 0,
    var(--dark-navy, #0B1B3F) 5px,
    #d9d9d9 5px,
    #d9d9d9 10px
  );
}

.fls-swatch-diamond {
  background-color: #d9d9d9;
  background-image:
    linear-gradient(45deg, var(--dark-navy, #0B1B3F) 25%, transparent 25%),
    linear-gradient(-45deg, var(--dark-navy, #0B1B3F) 25%, transparent 25%);
  background-size: 12px 12px;
}

/* --- Spec stat mini-cards (instead of a table) --- */
.fls-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.fls-stat-box {
  background: #f9f9f9;
  border-left: 3px solid var(--orange, #F97316);
  border-radius: 0.5rem;
  padding: 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fls-stat-wide {
  grid-column: span 3;
}

.fls-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted, #6B7280);
}

.fls-stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark-navy, #0B1B3F);
}

/* --- Applications icon row --- */
.fls-app-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.fls-app-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  width: 110px;
}

.fls-app-circle i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--dark-navy, #0B1B3F);
  color: var(--orange, #F97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.fls-app-circle span {
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--dark-navy, #0B1B3F);
  line-height: 1.3;
}

/* --- Right column: 3 polaroid-style stacked images --- */
.fls-polaroid-stack {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 0 0.5rem;
}

.fls-polaroid {
  background: #fff;
  padding: 0.6rem 0.6rem 1rem;
  border-radius: 0.35rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.fls-polaroid:hover {
  transform: scale(1.03) rotate(0deg) !important;
}

.fls-tilt-left { transform: rotate(-3deg); }
.fls-tilt-right { transform: rotate(3deg); }

.fls-polaroid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  border-radius: 0.15rem;
}

.fls-polaroid p {
  margin: 0.6rem 0 0;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--dark-navy, #0B1B3F);
}

/* --- Scroll reveal (toggled by flooring-sheet.js) --- */
.fls-check-item,
.fls-pattern-swatch,
.fls-stat-box,
.fls-app-circle,
.fls-polaroid {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fls-check-item.fls-visible,
.fls-pattern-swatch.fls-visible,
.fls-stat-box.fls-visible,
.fls-app-circle.fls-visible {
  opacity: 1;
  transform: translateY(0);
}

.fls-polaroid.fls-visible.fls-tilt-left {
  opacity: 1;
  transform: rotate(-3deg);
}

.fls-polaroid.fls-visible.fls-tilt-right {
  opacity: 1;
  transform: rotate(3deg);
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .fls-checklist {
    grid-template-columns: 1fr;
  }
  .fls-stat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fls-stat-wide {
    grid-column: span 2;
  }
}

@media (max-width: 991px) {
  .fls-polaroid-stack {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
  .fls-polaroid {
    flex: 0 0 200px;
  }
}

@media (max-width: 575px) {
  .fls-stat-grid {
    grid-template-columns: 1fr;
  }
  .fls-stat-wide {
    grid-column: span 1;
  }
  .fls-app-row {
    justify-content: center;
  }
}
/* ===================== CHEQUERED PLATE PAGE — EXTRA STYLES ===================== */
/* Reuses base classes from public/css/style.css.
   Same left-content / right-3-stacked-images layout as requested, but
   styled uniquely: diamond-shaped feature badges (fitting the chequered
   plate theme), a compact inline spec strip instead of a table or
   cards, and numbered stacked images instead of a table or polaroid style. */

/* --- Sub headings --- */
.chq-sub-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark-navy, #0B1B3F);
}

.chq-sub-heading span {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--text-muted, #6B7280);
}

/* --- Diamond-shaped feature badges --- */
.chq-diamond-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.chq-diamond {
  width: 96px;
  height: 96px;
  transform: rotate(45deg);
  background: var(--dark-navy, #0B1B3F);
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(11, 27, 63, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chq-diamond:hover {
  transform: rotate(45deg) scale(1.08);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.3);
}

.chq-diamond-inner {
  transform: rotate(-45deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
  width: 70px;
}

.chq-diamond-inner i {
  color: var(--orange, #F97316);
  font-size: 1.3rem;
}

.chq-diamond-inner span {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

/* --- Inline spec info-strip --- */
.chq-info-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 0;
  background: #f9f9f9;
  border-radius: 0.6rem;
  padding: 1.1rem 1.5rem;
}

.chq-info-piece {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-right: 1.5rem;
}

.chq-info-piece strong {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted, #6B7280);
  font-weight: 600;
}

.chq-info-piece em {
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-navy, #0B1B3F);
}

.chq-info-divider {
  width: 1px;
  height: 34px;
  background: #ddd;
  margin: 0 0.25rem;
}

/* --- Right column: 3 numbered stacked images --- */
.chq-img-stack {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.chq-img-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.chq-img-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.chq-img-item:hover img {
  transform: scale(1.06);
}

.chq-img-num {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange, #F97316);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* --- Scroll reveal (toggled by chequered-plate.js) --- */
.chq-diamond,
.chq-info-piece,
.chq-img-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.chq-diamond.chq-visible {
  opacity: 1;
  transform: rotate(45deg) translateY(0);
}

.chq-info-piece.chq-visible,
.chq-img-item.chq-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .chq-img-stack {
    flex-direction: row;
    overflow-x: auto;
  }
  .chq-img-item {
    flex: 0 0 220px;
  }
  .chq-img-item img {
    height: 160px;
  }
}

@media (max-width: 575px) {
  .chq-diamond {
    width: 80px;
    height: 80px;
  }
  .chq-diamond-inner {
    width: 56px;
  }
  .chq-info-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .chq-info-divider {
    display: none;
  }
}
/* ===================== ROOFING SHEET PAGE — EXTRA STYLES ===================== */
/* Reuses base classes from public/css/style.css.
   Left content / right 2-stacked-images layout as requested, with a
   feature icon strip, numbered benefits list, sheet-type preview cards,
   a spec table, and a 2-column applications checklist — a distinct mix
   not reused from the other rolled-products pages. */

.rf-sub-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark-navy, #0B1B3F);
}

/* --- Feature icon strip --- */
.rf-feature-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.rf-feature-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #f9f9f9;
  border-radius: 0.6rem;
  padding: 0.9rem 1.1rem;
}

.rf-feature-item i {
  color: var(--orange, #F97316);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.rf-feature-item span {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-navy, #0B1B3F);
  line-height: 1.3;
}

/* --- Numbered benefits list --- */
.rf-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rf-benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.rf-benefit-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--dark-navy, #0B1B3F);
  color: var(--orange, #F97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
}

.rf-benefit-row p {
  margin: 0;
  padding-top: 0.3rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted, #6B7280);
  line-height: 1.6;
}

/* --- Sheet type preview cards --- */
.rf-type-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.rf-type-card {
  flex: 1 1 200px;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  position: relative;
}

.rf-type-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.rf-type-card:hover img {
  transform: scale(1.07);
}

.rf-type-card span {
  display: block;
  padding: 0.7rem 1rem;
  background: var(--dark-navy, #0B1B3F);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

/* --- Spec table --- */
.rf-table-wrap {
  max-width: 640px;
  overflow-x: auto;
  border-radius: 0.6rem;
  border: 1px solid #eee;
}

.rf-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
}

.rf-spec-table tr {
  border-bottom: 1px solid #eee;
}

.rf-spec-table tr:last-child {
  border-bottom: none;
}

.rf-spec-table tr:nth-child(odd) {
  background: #fafafa;
}

.rf-spec-table th {
  text-align: left;
  padding: 0.85rem 1.25rem;
  color: var(--dark-navy, #0B1B3F);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  width: 30%;
  white-space: nowrap;
}

.rf-spec-table td {
  padding: 0.85rem 1.25rem;
  color: #1F2937;
}

/* --- Applications checklist --- */
.rf-app-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.5rem;
}

.rf-app-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--dark-navy, #0B1B3F);
}

.rf-app-check i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.15);
  color: var(--orange, #F97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* --- Right column: 2 stacked images --- */
.rf-img-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.rf-img-item {
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.rf-img-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.rf-img-item:hover img {
  transform: scale(1.06);
}

/* --- Scroll reveal (toggled by roofing-sheet.js) --- */
.rf-feature-item,
.rf-benefit-row,
.rf-type-card,
.rf-app-check,
.rf-img-item,
.rf-table-wrap {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.rf-feature-item.rf-visible,
.rf-benefit-row.rf-visible,
.rf-type-card.rf-visible,
.rf-app-check.rf-visible,
.rf-img-item.rf-visible,
.rf-table-wrap.rf-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .rf-feature-strip,
  .rf-app-checklist {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .rf-img-item img {
    height: 200px;
  }
}
/* ===================== ALUMINIUM FOIL PAGE — EXTRA STYLES ===================== */
/* Reuses base classes from public/css/style.css.
   Left-content / right-3-stacked-images layout as requested, styled
   with an industry tag cloud and a 4-card foil-variant grid — a
   distinct combination not reused from the other rolled-products pages. */

.fo-sub-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark-navy, #0B1B3F);
}

/* --- Industry tag cloud --- */
.fo-industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.fo-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  background: #fff5ec;
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-navy, #0B1B3F);
  transition: background 0.2s ease, color 0.2s ease;
}

.fo-tag i {
  color: var(--orange, #F97316);
}

.fo-tag:hover {
  background: var(--orange, #F97316);
  color: #fff;
}

.fo-tag:hover i {
  color: #fff;
}

/* --- Foil variant grid --- */
.fo-variant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.fo-variant-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0.9rem;
  padding: 1.5rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fo-variant-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.fo-variant-icon {
  width: 50px;
  height: 50px;
  border-radius: 0.75rem;
  background: var(--dark-navy, #0B1B3F);
  color: var(--orange, #F97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.fo-variant-card h6 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-navy, #0B1B3F);
  margin-bottom: 0.5rem;
}

.fo-variant-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted, #6B7280);
  line-height: 1.6;
  margin: 0;
}

/* --- Right column: 3 stacked images --- */
.fo-img-stack {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.fo-img-item {
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.fo-img-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.fo-img-item:hover img {
  transform: scale(1.06);
}

/* --- Scroll reveal (toggled by aluminium-foil.js) --- */
.fo-tag,
.fo-variant-card,
.fo-img-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fo-tag.fo-visible,
.fo-variant-card.fo-visible,
.fo-img-item.fo-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .fo-variant-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .fo-img-stack {
    flex-direction: row;
    overflow-x: auto;
  }
  .fo-img-item {
    flex: 0 0 220px;
  }
  .fo-img-item img {
    height: 160px;
  }
}
/* ===================== ALUMINIUM PROFILE PAGE — EXTRA STYLES ===================== */
/* Reuses base classes from public/css/style.css.
   Introduces a dark full-width big-number stat strip (not used on any
   other page so far), plus a feature checklist and usage icon grid,
   with the requested left-content / right-3-stacked-images layout below. */

/* --- Big stat counter strip --- */
.ap-stat-section {
  background: linear-gradient(135deg, var(--dark-navy, #0B1B3F), #16295c);
  padding: 4rem 0;
}

.ap-stat-section .section-title {
  color: #fff;
}

.ap-stat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.ap-stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.5rem 0.75rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, transform 0.25s ease;
}

.ap-stat-box:hover {
  background: rgba(249, 115, 22, 0.12);
  transform: translateY(-4px);
}

.ap-stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--orange, #F97316);
  line-height: 1;
}

.ap-stat-number i {
  font-size: 1.6rem;
}

.ap-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.3;
}

/* --- Sub headings --- */
.ap-sub-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark-navy, #0B1B3F);
}

/* --- Salient features checklist --- */
.ap-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.5rem;
}

.ap-feature-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.87rem;
  color: var(--dark-navy, #0B1B3F);
}

.ap-feature-row i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.15);
  color: var(--orange, #F97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
}

/* --- Usage icon grid --- */
.ap-usage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.ap-usage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  padding: 1.1rem 0.5rem;
  background: #f9f9f9;
  border-radius: 0.7rem;
}

.ap-usage-item i {
  font-size: 1.3rem;
  color: var(--orange, #F97316);
}

.ap-usage-item span {
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--dark-navy, #0B1B3F);
  line-height: 1.3;
}

/* --- Right column: 3 stacked images --- */
.ap-img-stack {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.ap-img-item {
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.ap-img-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ap-img-item:hover img {
  transform: scale(1.06);
}

/* --- Scroll reveal (toggled by aluminium-profile.js) --- */
.ap-stat-box,
.ap-feature-row,
.ap-usage-item,
.ap-img-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.ap-stat-box.ap-visible,
.ap-feature-row.ap-visible,
.ap-usage-item.ap-visible,
.ap-img-item.ap-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .ap-stat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ap-img-stack {
    flex-direction: row;
    overflow-x: auto;
  }
  .ap-img-item {
    flex: 0 0 220px;
  }
  .ap-img-item img {
    height: 160px;
  }
}

@media (max-width: 575px) {
  .ap-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ap-feature-list,
  .ap-usage-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== ALUMINIUM EXTRUSION PAGE — EXTRA STYLES ===================== */
/* Reuses base classes from public/css/style.css.
   Deliberately different from the Aluminium Profile page (which shares
   similar source stats): stats are woven inline as small pills instead
   of a big dark stat-grid banner, features are numbered rows instead of
   a checklist grid, and the right column uses an overlapping image
   frame instead of stacked cards. */

.ae-sub-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark-navy, #0B1B3F);
}

/* --- Inline stat pills --- */
.ae-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.ae-pill {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: var(--dark-navy, #0B1B3F);
  color: var(--orange, #F97316);
  border-radius: 999px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* --- Numbered feature rows --- */
.ae-feature-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #eee;
}

.ae-feature-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #eee;
}

.ae-feature-badge {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 0.5rem;
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange, #F97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
}

.ae-feature-line span:last-child {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-navy, #0B1B3F);
}

/* --- Right column: overlapping image frame --- */
.ae-img-frame {
  position: relative;
  padding-bottom: 2.5rem;
  padding-right: 1.5rem;
}

.ae-img-main {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  border-radius: 0.9rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.ae-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border: 5px solid #fff;
  border-radius: 0.75rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.ae-img-float img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ae-img-float:hover img {
  transform: scale(1.08);
}

/* --- Scroll reveal (toggled by aluminium-extrusion.js) --- */
.ae-pill,
.ae-feature-line,
.ae-img-frame {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.ae-pill.ae-visible,
.ae-feature-line.ae-visible,
.ae-img-frame.ae-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .ae-img-main {
    height: 300px;
  }
  .ae-img-float {
    width: 60%;
  }
}

@media (max-width: 575px) {
  .ae-img-frame {
    padding-right: 0.75rem;
  }
  .ae-img-main {
    height: 240px;
  }
  .ae-img-float img {
    height: 120px;
  }
}
/* ===================== ALUMINIUM BUS BAR PAGE — EXTRA STYLES ===================== */
/* Reuses base classes from public/css/style.css.
   Deliberately different from Transport (road-strip), Aluminium
   Extrusion (pill row + overlap frame), and Aluminium Profile (dark
   stat-grid) pages: two side-by-side property panels, an inline
   application tag row, and a single image with a floating stat badge. */

.bb-sub-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark-navy, #0B1B3F);
}

/* --- Two-panel property cards --- */
.bb-property-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.bb-property-panel {
  background: var(--dark-navy, #0B1B3F);
  border-radius: 0.9rem;
  padding: 1.5rem;
}

.bb-property-panel-alt {
  background: var(--orange, #F97316);
}

.bb-property-panel h6 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
}

.bb-property-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bb-property-panel li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.bb-property-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

/* --- Applications inline row --- */
.bb-app-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.bb-app-inline span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border: 1px solid #eee;
  border-radius: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-navy, #0B1B3F);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.bb-app-inline span i {
  color: var(--orange, #F97316);
}

.bb-app-inline span:hover {
  border-color: var(--orange, #F97316);
  background: #fff5ec;
}

/* --- Right column: single image with floating stat badge --- */
.bb-img-wrap {
  position: relative;
  border-radius: 0.9rem;
  overflow: visible;
}

.bb-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 0.9rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.bb-img-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: #fff;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bb-img-badge-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--orange, #F97316);
  line-height: 1;
}

.bb-img-badge-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--dark-navy, #0B1B3F);
  margin-top: 0.2rem;
}

/* --- Scroll reveal (toggled by aluminium-bus-bar.js) --- */
.bb-property-panel,
.bb-app-inline span,
.bb-img-wrap {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.bb-property-panel.bb-visible,
.bb-app-inline span.bb-visible,
.bb-img-wrap.bb-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .bb-property-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .bb-img-badge {
    left: 1rem;
    bottom: -1.25rem;
    padding: 0.85rem 1rem;
  }
  .bb-img-wrap img {
    height: 320px;
  }
}

@media (max-width: 575px) {
  .bb-img-badge {
    position: static;
    margin-top: 1rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }
}
/* ===================== ALUMINIUM BUS BODY PAGE — EXTRA STYLES ===================== */
/* Reuses base classes from public/css/style.css.
   Deliberately different from the Aluminium Bus Bar page (which shares
   similar source stats): a thin inline stat-divider strip instead of
   two colour-block panels, pill capsules for section types, icon
   attribute cards, and a single image with a caption bar underneath
   instead of a floating badge overlay. */

.bbs-sub-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark-navy, #0B1B3F);
}

/* --- Thin stat divider strip --- */
.bbs-stat-strip {
  display: flex;
  align-items: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}

.bbs-stat-piece {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0 1.5rem;
  border-right: 1px solid #eee;
}

.bbs-stat-piece:first-child {
  padding-left: 0;
}

.bbs-stat-piece:last-child {
  border-right: none;
}

.bbs-stat-piece strong {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--orange, #F97316);
}

.bbs-stat-piece span {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted, #6B7280);
}

/* --- Section-type capsules --- */
.bbs-type-capsules {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.bbs-capsule {
  padding: 0.5rem 1.1rem;
  border: 1.5px solid var(--dark-navy, #0B1B3F);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-navy, #0B1B3F);
  transition: background 0.2s ease, color 0.2s ease;
}

.bbs-capsule:hover {
  background: var(--dark-navy, #0B1B3F);
  color: #fff;
}

/* --- Attribute icon cards --- */
.bbs-attr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.bbs-attr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  padding: 1.25rem 0.5rem;
  background: #f9f9f9;
  border-radius: 0.75rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.bbs-attr-card:hover {
  transform: translateY(-4px);
  background: #fff5ec;
}

.bbs-attr-card i {
  font-size: 1.4rem;
  color: var(--orange, #F97316);
}

.bbs-attr-card span {
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--dark-navy, #0B1B3F);
  line-height: 1.3;
}

/* --- Right column: single image with caption bar --- */
.bbs-img-card {
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.bbs-img-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bbs-img-card:hover img {
  transform: scale(1.05);
}

.bbs-img-caption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--dark-navy, #0B1B3F);
  padding: 1rem 1.25rem;
}

.bbs-img-caption i {
  color: var(--orange, #F97316);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.bbs-img-caption span {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

/* --- Scroll reveal (toggled by aluminium-bus-body.js) --- */
.bbs-stat-piece,
.bbs-capsule,
.bbs-attr-card,
.bbs-img-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.bbs-stat-piece.bbs-visible,
.bbs-capsule.bbs-visible,
.bbs-attr-card.bbs-visible,
.bbs-img-card.bbs-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .bbs-attr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bbs-stat-strip {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .bbs-stat-piece {
    border-right: none;
    padding: 0 1rem 0 0;
  }
}

@media (max-width: 991px) {
  .bbs-img-card img {
    height: 260px;
  }
}
/* ===================== MISCELLANEOUS PAGE — EXTRA STYLES ===================== */
/* Reuses base classes from public/css/style.css.
   Deliberately different from Aluminium Extrusion (pill row), Aluminium
   Profile (dark stat-grid), Bus Bar (two-panel + badge), and Bus Body
   (strip + capsules): circular capability badges, small inline tags,
   and an offset twin-image frame on the right. */

/* --- Circular capability badges --- */
.msc-ring-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.msc-ring {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 2px solid var(--orange, #F97316);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.msc-ring:hover {
  background: #fff5ec;
  transform: translateY(-4px);
}

.msc-ring-num {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-navy, #0B1B3F);
  line-height: 1.1;
}

.msc-ring-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted, #6B7280);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* --- Small inline tags --- */
.msc-tag-row {
  display: flex;
  gap: 0.6rem;
}

.msc-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: var(--dark-navy, #0B1B3F);
  color: #fff;
  border-radius: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
}

.msc-tag i {
  color: var(--orange, #F97316);
}

/* --- Offset twin-image frame --- */
.msc-img-duo {
  position: relative;
  height: 380px;
}

.msc-img-box {
  position: absolute;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.msc-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.msc-img-box:hover img {
  transform: scale(1.06);
}

.msc-img-box-a {
  top: 0;
  left: 0;
  width: 68%;
  height: 78%;
  z-index: 1;
}

.msc-img-box-b {
  bottom: 0;
  right: 0;
  width: 55%;
  height: 45%;
  z-index: 2;
  border: 5px solid #fff;
}

/* --- Scroll reveal (toggled by miscellaneous.js) --- */
.msc-ring,
.msc-tag,
.msc-img-box {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.msc-ring.msc-visible,
.msc-tag.msc-visible {
  opacity: 1;
  transform: translateY(0);
}

.msc-img-box.msc-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .msc-img-duo {
    height: 320px;
    margin-top: 2rem;
  }
}

@media (max-width: 575px) {
  .msc-ring {
    width: 78px;
    height: 78px;
  }
  .msc-img-duo {
    height: 260px;
  }
}
/* ===================== INFRASTRUCTURE PAGE — EXTRA STYLES ===================== */
/* Reuses base classes from public/css/style.css.
   Original page (no Mayur Metals source) built for the site's own
   Infrastructure section. Uses a facility stat strip, a horizontal
   arrow-connected process-flow diagram, and an equipment grid — a
   combination not reused from any other page. */

.inf-sub-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark-navy, #0B1B3F);
}

/* --- Facility stat strip --- */
.inf-stat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.inf-stat-piece {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  background: #f9f9f9;
  border-radius: 0.6rem;
  padding: 0.9rem 1.25rem;
  flex: 1 1 150px;
}

.inf-stat-piece strong {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange, #F97316);
}

.inf-stat-piece span {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  color: var(--text-muted, #6B7280);
}

/* --- Process flow diagram --- */
.inf-flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.25rem;
}

.inf-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  width: 84px;
}

.inf-flow-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dark-navy, #0B1B3F);
  color: var(--orange, #F97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.inf-flow-step span {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--dark-navy, #0B1B3F);
  line-height: 1.2;
}

.inf-flow-arrow {
  color: #ccc;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* --- Equipment grid --- */
.inf-equip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.inf-equip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  border: 1px solid #eee;
  border-radius: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--dark-navy, #0B1B3F);
}

.inf-equip-item i {
  color: var(--orange, #F97316);
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* --- Right column: 2 stacked facility images --- */
.inf-img-stack {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.inf-img-item {
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.inf-img-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.inf-img-item:hover img {
  transform: scale(1.06);
}

/* --- Scroll reveal (toggled by infrastructure.js) --- */
.inf-stat-piece,
.inf-flow-step,
.inf-equip-item,
.inf-img-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.inf-stat-piece.inf-visible,
.inf-flow-step.inf-visible,
.inf-equip-item.inf-visible,
.inf-img-item.inf-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .inf-equip-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .inf-flow {
    flex-direction: column;
    align-items: flex-start;
  }
  .inf-flow-arrow {
    transform: rotate(90deg);
    margin-left: 26px;
  }
  .inf-flow-step {
    flex-direction: row;
    width: auto;
    text-align: left;
    gap: 0.75rem;
  }
}
/* ===================== 404 PAGE — STYLES ===================== */
/* Reuses base classes from public/css/style.css.
   Original page (no Mayur Metals source) for the site's own 404 error
   page. Uses a search bar, quick-links row, and a right-side
   illustration with a big translucent "404" numeral and floating icon
   badges — a combination unique to this page. */

.err-section {
  padding: 6rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.err-eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange, #F97316);
  margin-bottom: 0.75rem;
}

.err-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark-navy, #0B1B3F);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.err-body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-muted, #6B7280);
  line-height: 1.7;
  max-width: 480px;
}

/* --- Search bar --- */
.err-search {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 999px;
  padding: 0.4rem 0.4rem 0.4rem 1.25rem;
  max-width: 480px;
}

.err-search i {
  color: var(--text-muted, #6B7280);
  font-size: 1rem;
}

.err-search input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--dark-navy, #0B1B3F);
}

.err-search button {
  border: none;
  background: var(--orange, #F97316);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.err-search button:hover {
  background: var(--orange-dark, #E05E00);
}

/* --- Quick links --- */
.err-quick-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted, #6B7280);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
}

.err-quick-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.err-quick-row a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid #eee;
  border-radius: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-navy, #0B1B3F);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.err-quick-row a i {
  color: var(--orange, #F97316);
}

.err-quick-row a:hover {
  background: var(--dark-navy, #0B1B3F);
  border-color: var(--dark-navy, #0B1B3F);
  color: #fff;
}

.err-quick-row a:hover i {
  color: var(--orange, #F97316);
}

/* --- Right illustration --- */
.err-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.err-big-number {
  position: absolute;
  z-index: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 9rem;
  font-weight: 700;
  color: rgba(11, 27, 63, 0.06);
  line-height: 1;
  user-select: none;
}

.err-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  margin: 0 auto;
  animation: err-float 3.5s ease-in-out infinite;
}

.err-float-badge {
  position: absolute;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange, #F97316);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.35);
}

.err-float-1 {
  top: 10%;
  left: 8%;
  animation: err-float 3s ease-in-out infinite;
}

.err-float-2 {
  bottom: 12%;
  right: 6%;
  background: var(--dark-navy, #0B1B3F);
  animation: err-float 4s ease-in-out infinite reverse;
}

@keyframes err-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .err-section {
    padding: 3.5rem 0;
  }
  .err-title {
    font-size: 1.9rem;
  }
  .err-big-number {
    font-size: 6rem;
  }
  .err-img-wrap img {
    max-width: 280px;
  }
}

@media (max-width: 575px) {
  .err-search {
    flex-wrap: wrap;
    border-radius: 0.9rem;
    padding: 0.75rem;
  }
  .err-search button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .err-img-wrap img,
  .err-float-badge {
    animation: none;
  }
}

/* ===================== PRIVACY POLICY PAGE — STYLES ===================== */
/* Reuses base classes from public/css/style.css.
   A standard legal/docs-page layout: a sticky table-of-contents sidebar
   with scroll-tracked active state, and clean typographic sections on
   the right — distinct from the product pages' visual designs. */

/* --- Sticky Table of Contents --- */
.pp-toc {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-left: 2px solid #eee;
  padding-left: 1.25rem;
}

.pp-toc-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted, #6B7280);
  margin-bottom: 0.75rem;
}

.pp-toc-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted, #6B7280);
  text-decoration: none;
  padding: 0.4rem 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.pp-toc-link:hover {
  color: var(--orange, #F97316);
}

.pp-toc-link.active {
  color: var(--dark-navy, #0B1B3F);
  font-weight: 700;
  padding-left: 0.35rem;
  border-left: 2px solid var(--orange, #F97316);
  margin-left: -1.27rem;
  padding-left: 1.1rem;
}

/* --- Policy sections --- */
.pp-block {
  margin-bottom: 2.5rem;
  scroll-margin-top: 100px;
}

.pp-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark-navy, #0B1B3F);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #eee;
}

.pp-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #1F2937;
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.pp-list {
  margin: 0 0 0.9rem;
  padding-left: 1.25rem;
}

.pp-list li {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #1F2937;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.pp-list strong {
  color: var(--dark-navy, #0B1B3F);
}

/* --- Contact card --- */
.pp-contact-card {
  background: #f9f9f9;
  border-left: 3px solid var(--orange, #F97316);
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
}

.pp-contact-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--dark-navy, #0B1B3F);
  padding: 0.35rem 0;
}

.pp-contact-row i {
  color: var(--orange, #F97316);
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .pp-toc {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-left: none;
    padding-left: 0;
    margin-bottom: 2rem;
  }

  .pp-toc-label {
    width: 100%;
    margin-bottom: 0.25rem;
  }

  .pp-toc-link {
    padding: 0.4rem 0.85rem;
    background: #f9f9f9;
    border-radius: 999px;
    border-left: none;
  }

  .pp-toc-link.active {
    background: var(--dark-navy, #0B1B3F);
    color: #fff;
    border-left: none;
    margin-left: 0;
    padding-left: 0.85rem;
  }
}
/* ===================== TERMS & CONDITIONS PAGE — STYLES ===================== */
/* Reuses base classes from public/css/style.css.
   Same docs-style layout pattern as the Privacy Policy page (sticky
   table-of-contents + sectioned content) since these are paired legal
   pages and benefit from consistent structure — namespaced with a
   tc- prefix so both pages' CSS can coexist without clashing. */

/* --- Sticky Table of Contents --- */
.tc-toc {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-left: 2px solid #eee;
  padding-left: 1.25rem;
}

.tc-toc-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted, #6B7280);
  margin-bottom: 0.75rem;
}

.tc-toc-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted, #6B7280);
  text-decoration: none;
  padding: 0.4rem 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.tc-toc-link:hover {
  color: var(--orange, #F97316);
}

.tc-toc-link.active {
  color: var(--dark-navy, #0B1B3F);
  font-weight: 700;
  border-left: 2px solid var(--orange, #F97316);
  margin-left: -1.27rem;
  padding-left: 1.1rem;
}

/* --- Terms sections --- */
.tc-block {
  margin-bottom: 2.5rem;
  scroll-margin-top: 100px;
}

.tc-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark-navy, #0B1B3F);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #eee;
}

.tc-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #1F2937;
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.tc-list {
  margin: 0 0 0.9rem;
  padding-left: 1.25rem;
}

.tc-list li {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #1F2937;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

/* --- Contact card --- */
.tc-contact-card {
  background: #f9f9f9;
  border-left: 3px solid var(--orange, #F97316);
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
}

.tc-contact-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--dark-navy, #0B1B3F);
  padding: 0.35rem 0;
}

.tc-contact-row i {
  color: var(--orange, #F97316);
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .tc-toc {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-left: none;
    padding-left: 0;
    margin-bottom: 2rem;
  }

  .tc-toc-label {
    width: 100%;
    margin-bottom: 0.25rem;
  }

  .tc-toc-link {
    padding: 0.4rem 0.85rem;
    background: #f9f9f9;
    border-radius: 999px;
    border-left: none;
  }

  .tc-toc-link.active {
    background: var(--dark-navy, #0B1B3F);
    color: #fff;
    border-left: none;
    margin-left: 0;
    padding-left: 0.85rem;
  }
}
/* ===================== DISCLAIMER PAGE — STYLES ===================== */
/* Reuses base classes from public/css/style.css.
   Same docs-style layout pattern as Privacy Policy and Terms &
   Conditions (sticky table-of-contents + sectioned content), since all
   three are paired legal pages — namespaced with a dc- prefix so all
   three files can coexist without clashing. */

/* --- Sticky Table of Contents --- */
.dc-toc {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-left: 2px solid #eee;
  padding-left: 1.25rem;
}

.dc-toc-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted, #6B7280);
  margin-bottom: 0.75rem;
}

.dc-toc-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted, #6B7280);
  text-decoration: none;
  padding: 0.4rem 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.dc-toc-link:hover {
  color: var(--orange, #F97316);
}

.dc-toc-link.active {
  color: var(--dark-navy, #0B1B3F);
  font-weight: 700;
  border-left: 2px solid var(--orange, #F97316);
  margin-left: -1.27rem;
  padding-left: 1.1rem;
}

/* --- Disclaimer sections --- */
.dc-block {
  margin-bottom: 2.5rem;
  scroll-margin-top: 100px;
}

.dc-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark-navy, #0B1B3F);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #eee;
}

.dc-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #1F2937;
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

/* --- Contact card --- */
.dc-contact-card {
  background: #f9f9f9;
  border-left: 3px solid var(--orange, #F97316);
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
}

.dc-contact-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--dark-navy, #0B1B3F);
  padding: 0.35rem 0;
}

.dc-contact-row i {
  color: var(--orange, #F97316);
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .dc-toc {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-left: none;
    padding-left: 0;
    margin-bottom: 2rem;
  }

  .dc-toc-label {
    width: 100%;
    margin-bottom: 0.25rem;
  }

  .dc-toc-link {
    padding: 0.4rem 0.85rem;
    background: #f9f9f9;
    border-radius: 999px;
    border-left: none;
  }

  .dc-toc-link.active {
    background: var(--dark-navy, #0B1B3F);
    color: #fff;
    border-left: none;
    margin-left: 0;
    padding-left: 0.85rem;
  }
}