/* ═══════════════════════════════════════════════════════════
   RUP EXPORT LIMITED — Global Shared Stylesheet
   Font: Playfair Display (headings) + Source Sans 3 (body)
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Source+Sans+3:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ── Variables ── */
:root {
  --red:        #879037; /* Original Olive Theme Color */
  --red-dark:   #a50d25;
  --red-light:  #fdf0f2;
  --red-mid:    #f5d0d7;
  --olive:      #879037; /* Olive green for Eco/Energy and sustainable styles */
  --cream:      #FAFAF8;
  --white:      #FFFFFF;
  --ink:        #1A1A1A;
  --ink-2:      #2E2E2E;
  --ink-3:      #4A4A4A;
  --muted:      #767676;
  --muted-2:    #9A9A9A;
  --border:     #E5E5E0;
  --border-2:   #D0CFC8;
  --surface:    #F5F5F2;
  --surface-2:  #EFEFEB;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 28px rgba(0,0,0,0.09);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.12);
  --radius:     4px;
  --ff-head:    'Playfair Display', Georgia, serif;
  --ff-body:    'Source Sans 3', sans-serif;
  --ff-mono:    'IBM Plex Mono', monospace;
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.72;
  overflow-x: hidden;
}
img { display:block; max-width:100%; height:auto; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
button { cursor:pointer; font-family:var(--ff-body); }

/* ── Container ── */
.container { max-width:1180px; margin:0 auto; padding:0 1%; }
.container-wide { max-width:1380px; margin:0 auto; padding:0 4%; }

/* ── Section spacing ── */
.section { padding:96px 0; }
.section-sm { padding:64px 0; }
.section-lg { padding:120px 0; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family:var(--ff-head); line-height:1.15; color:var(--ink); font-weight:700; }
h1 { font-size:clamp(2.4rem,5vw,3rem); }
h2 { font-size:clamp(1.9rem,3.5vw,2rem); }
h3 { font-size:clamp(1.4rem,2.5vw,1.9rem); }
h4 { font-size:1.15rem; font-family:var(--ff-body); font-weight:600; }
p { font-size:17px; line-height:1.75; color:var(--ink-3); }

.label {
  font-family: var(--ff-mono);
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  display: flex;
  align-items: center;
  gap: 10px;
}
.label::before { content:''; width:20px; height:1.5px; background:var(--olive); flex-shrink:0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--ff-body);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  border-radius: var(--radius);
  transition: all 0.22s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-red { background:var(--red); color:#fff; }
.btn-red:hover { background:#1a1a1a; transform:translateY(-2px); box-shadow:0 8px 24px rgba(200,16,46,0.28); }
.btn-outline { background:transparent; color:var(--red); border:1.5px solid var(--red); }
.btn-outline:hover { background:var(--red); color:#fff; }
.btn-ghost { background:transparent; color:var(--ink-3); border:1.5px solid var(--border-2); }
.btn-ghost:hover { border-color:var(--red); color:var(--red); }
.btn-white { background:#fff; color:var(--red); box-shadow:var(--shadow-sm); }
.btn-white:hover { background:var(--red); color:#fff; }
.btn-sm { padding:9px 20px; font-size:0.86rem; }
.btn-lg { padding:16px 36px; font-size:1rem; }
.btn svg { width:16px; height:16px; }
.btn-arrow::after { content:'→'; }

/* ── Nav ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 74px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 0 5%;
}

.nav-logo { display:flex; align-items:center; gap:12px; }
.nav-logo .mark {
  width:40px; height:40px;
  background:var(--red);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--ff-body); font-weight:700; font-size:1rem; color:#fff;
  border-radius:2px; flex-shrink:0;
}
.nav-logo .name { font-family:var(--ff-body); font-weight:700; font-size:0.96rem; color:var(--ink); letter-spacing:0.01em; line-height:1.2; }
.nav-logo .tagline { font-family:var(--ff-mono); font-size:0.58rem; color:var(--muted); letter-spacing:0.14em; text-transform:uppercase; }

.nav-links { display:flex; align-items:center; gap:6px; }
.nav-links > li { position:relative; }
.nav-links > li > a {
  font-size:16px; font-weight:600; color:var(--ink-3);
  padding:8px 14px; border-radius:var(--radius);
  transition:all 0.18s; display:flex; align-items:center; gap:4px;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color:var(--red); background:var(--red-light); }
.nav-links > li > a.active { color:var(--red); }

/* Dropdown */
.has-drop:hover .drop { opacity:1; pointer-events:all; transform:translateY(0); }
.drop {
  position:absolute; top:calc(100% + 8px); left:50%;
  transform:translateX(-50%) translateY(6px);
  background:#fff; border:1px solid var(--border);
  box-shadow:var(--shadow-md); min-width:220px; padding:8px 0;
  border-radius:var(--radius); opacity:0; pointer-events:none; transition:all 0.2s;
  z-index:200;
}
.drop a {
  display:block; padding:10px 20px; font-size:0.88rem; color:var(--ink-3);
  transition:all 0.15s;
}
.drop a:hover { background:var(--red-light); color:var(--red); padding-left:26px; }

.nav-right { display:flex; align-items:center; gap:12px; }
.hamburger { display:none; flex-direction:column; gap:5px; padding:6px; background:none; border:none; }
.hamburger span { display:block; width:22px; height:2px; background:var(--ink); border-radius:2px; transition:all 0.28s; }

/* Mobile nav */
.mobile-nav {
  position:fixed; inset:0; background:#fff; z-index:999;
  padding:90px 5% 40px;
  display:flex; flex-direction:column; gap:0;
  transform:translateX(100%); transition:transform 0.32s ease;
  overflow-y:auto;
}
.mobile-nav.open { transform:translateX(0); }
.mobile-nav a {
  font-size:1.3rem; font-weight:600; color:var(--ink);
  padding:20px 0; border-bottom:1px solid var(--border);
  display:flex; justify-content:space-between; align-items:center;
}
.mobile-nav a:hover { color:var(--red); }

/* ── Footer ── */
footer {
  background: #f9ffbf;
  color: #ccc;
  padding: 72px 0 32px;
}
.footer-grid {
  display:grid;
  grid-template-columns:1.6fr repeat(3,1fr);
  gap:48px;
  margin-bottom:56px;
}
.footer-brand .mark-ft {
  width:44px; height:44px; background:var(--red);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:1.1rem; color:#fff; border-radius:2px; margin-bottom:18px;
}
.footer-brand p { font-size:17px; line-height:1.75; color:#999; max-width:292px; margin-bottom:24px; }
.social-row { display:flex; gap:10px; }
.social-row a {
  width:34px; height:34px; border:1px solid rgba(255,255,255,0.12);
  border-radius:2px; display:flex; align-items:center; justify-content:center;
  font-size:0.78rem; color:#888; transition:all 0.2s;
}
.social-row a:hover { border-color:var(--red); color:var(--red); }
.footer-col h5 {
  font-family:var(--ff-body); font-size:17px; font-weight:700;
  letter-spacing:0.16em; text-transform:uppercase; color:#000;
  margin-bottom:20px;
}
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col ul li a { font-size:17px; color:#888; transition:color 0.2s; }
.footer-col ul li a:hover { color:var(--red); }
.footer-bottom {
  display:block; justify-content:space-between; align-items:center;
  padding-top:32px; border-top:1px solid rgba(255,255,255,0.08);
  flex-wrap:wrap; gap:12px;
}
.footer-bottom p { font-size:17px; color:#666; text-align:center; }
.footer-links { display:flex; gap:24px; }
.footer-links a { font-size:0.8rem; color:#666; }
.footer-links a:hover { color:#fff; }

/* ── Utilities ── */
.text-center { text-align:center; }
.text-red { color:var(--red); }
.text-muted { color:var(--muted); }
.mt-8 { margin-top:8px; }
.mt-12 { margin-top:12px; }
.mt-16 { margin-top:16px; }
.mt-24 { margin-top:24px; }
.mt-32 { margin-top:32px; }
.mt-40 { margin-top:40px; }
.mb-8 { margin-bottom:8px; }
.mb-16 { margin-bottom:16px; }
.mb-24 { margin-bottom:24px; }
.mb-32 { margin-bottom:32px; }
.mb-48 { margin-bottom:48px; }
.divider { height:1px; background:var(--border); }

/* ── Reveal animation ── */
.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-d1 { transition-delay:0.08s; }
.reveal-d2 { transition-delay:0.16s; }
.reveal-d3 { transition-delay:0.24s; }
.reveal-d4 { transition-delay:0.32s; }

/* ── Shared hero band ── */
.page-hero {
  margin-top:74px;
  position:relative;
  overflow:hidden;
  min-height:480px;
  display:flex;
  align-items:flex-end;
}
.page-hero-img {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  z-index:0;
}
.page-hero-img::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to right, rgb(140 128 28 / 82%) 40%, rgba(26, 26, 26, 0.35) 100%);
}
.page-hero-content {
  position:relative; z-index:1;
  padding:64px 1% 120px;
  max-width:1180px;
  margin:0 auto;
  width:100%;
}
.page-hero-content .label { color:rgba(255,255,255,0.6); }
.page-hero-content .label::before { background:rgba(255,255,255,0.4); }
.page-hero-content h1 { color:#fff; margin-top:16px; }
.page-hero-content p { color:rgba(255,255,255,0.78); margin-top:16px; font-size:17px; }
.breadcrumb { display:flex; align-items:center; gap:8px; font-size:0.82rem; color:rgba(255,255,255,0.5); margin-bottom:24px; }
.breadcrumb a { color:rgba(255,255,255,0.6); }
.breadcrumb a:hover { color:#fff; }
.breadcrumb span { color:rgba(255,255,255,0.35); }

/* Contact Details */
.ci h3 { margin-bottom:16px; }
.ci p { font-size:17px; margin-bottom:28px; }
.ci-detail { padding:14px 0; border-bottom:1px solid var(--border); display:flex; flex-direction:column; gap:4px; }
.ci-detail:last-child { border-bottom:none; }
.ci-detail .dl { font-family:var(--ff-mono); font-size:16px; letter-spacing:0.16em; text-transform:uppercase; color:var(--red); }
.ci-detail .dv { font-size:17px; color:var(--ink-3); }

/* ── Responsive ── */
@media(max-width:1024px){
  .footer-grid { grid-template-columns:1fr 1fr; }
  .container { max-width:1180px; margin:0 auto; padding:0 5%; }
}
@media(max-width:768px){
  body { font-size:16px; }
  p { font-size:16px; }
  .section { padding:72px 0; }
  .section-lg { padding:80px 0; }
  .nav-links, .nav-right .btn { display:none; }
  .hamburger { display:flex; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .page-hero { min-height:360px; }
  .page-hero-content { padding:48px 5% 40px; }
  .contact-grid {grid-template-columns: 1fr !important;}
}

/* ── CONTACT FORM ── */
#contact { background:var(--white); border-top:1px solid var(--border); }
.contact-grid { display:grid; grid-template-columns:1fr 1.3fr; gap:80px; align-items:start; }
.ci h3 { margin-bottom:16px; }
.ci p { font-size:17px; margin-bottom:28px; }
.ci-detail { padding:14px 0; border-bottom:1px solid var(--border); display:flex; flex-direction:column; gap:4px; }
.ci-detail:last-child { border-bottom:none; }
.ci-detail .dl { font-family:var(--ff-mono); font-size:16px; letter-spacing:0.16em; text-transform:uppercase; color:var(--red); }
.ci-detail .dv { font-size:17px; color:var(--ink-3); }
.cf { display:flex; flex-direction:column; gap:16px; }
.cf-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.fg { display:flex; flex-direction:column; gap:6px; }
.fg label { font-family:var(--ff-mono); font-size:0.62rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--muted); }
.fg input, .fg select, .fg textarea {
  background:var(--surface); border:1.5px solid var(--border);
  color:var(--ink); padding:12px 16px; font-family:var(--ff-body); font-size:16px;
  border-radius:var(--radius); outline:none; width:100%; transition:border-color 0.2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color:var(--red); background:#fff; }
.fg textarea { height:130px; resize:vertical; }
.fg select { appearance:none; cursor:pointer; }
.fg select option { background:#fff; }


/* ═══════════════════════════════════════════════════════════
   RUP EXPORT LIMITED — Homepage Specifc Styles
   ═══════════════════════════════════════════════════════════ */

/* ── HERO ── */
#hero {
  margin-top: 74px;
  position: relative;
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg-image {
  position: absolute; inset: 0;
  background: url("/images/Home-banner-Rup-Export.jpg") center/cover no-repeat;
  opacity: 0.28;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgb(26 26 26 / 85%) 0%, rgb(40 40 40 / 55%) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 80px 1%;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  gap: 64px;
  align-items: center;
}
.hero-left .label { color:rgba(255,255,255,0.7); }
.hero-left .label::before { background:var(--red); }
.hero-left .tag {
  display:inline-flex; align-items: center;
    gap: 8px;
    background: #879036;
    border: 1px solid #879036;
    padding: 6px 14px;
    border-radius: 2px;
    font-family: var(--ff-mono);
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 28px;
}
.hero-left .tag .pulse { width:6px; height:6px; border-radius:50%; background:#fff; animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.hero-left h1 {
  font-size:clamp(2.6rem,5vw,3rem);
  color:#fff; line-height:1.08;
  margin-bottom:24px; font-weight:800;
}
.hero-left h1 em { font-style:normal; color:var(--red); }
.hero-left p { font-size:17px; color:rgba(255,255,255,0.7); max-width:600px; margin-bottom:36px; line-height:1.75; }
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; }
.hero-stats {
  display:flex; gap:32px; flex-wrap:wrap;
  padding-top:36px; margin-top:36px;
  border-top:1px solid rgba(255,255,255,0.1);
}
.hstat .n { font-family:var(--ff-head); font-size:2.2rem; font-weight:800; color:#fff; line-height:1; }
.hstat .n em { font-style:normal; color:var(--red); }
.hstat .l { font-family:var(--ff-mono); font-size:0.68rem; font-weight:600; letter-spacing:0.14em; text-transform:uppercase; color:rgba(255,255,255,0.6); margin-top:4px; }

/* Hero right — verticals card */
.hero-right {
  background:rgba(255,255,255,0.04);
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:var(--radius);
  overflow:hidden;
}
.hcard {
  padding:22px 24px;
  border-bottom:1px solid rgba(255,255,255,0.07);
  display:flex; gap:16px; align-items:flex-start;
  text-decoration:none;
  transition:background 0.2s;
}
.hcard:last-child { border-bottom:none; }
.hcard:hover { background:rgba(255,255,255,0.05); }
.hcard .hc-icon {
  width:40px; height:40px; flex-shrink:0;
  background:rgba(200,16,46,0.15); border:1px solid rgba(200,16,46,0.25);
  border-radius:4px; display:flex; align-items:center; justify-content:center;
  font-size:1.15rem;
}
.hcard .hc-body .hc-title { font-family:var(--ff-body); font-weight:700; font-size:0.96rem; color:#fff; margin-bottom:4px; }
.hcard .hc-body p { font-size:0.82rem; color:rgba(255,255,255,0.5); line-height:1.55; }
.hcard .hc-arrow { margin-left:auto; color:rgba(255,255,255,0.25); font-size:1rem; align-self:center; transition:all 0.2s; }
.hcard:hover .hc-arrow { color:var(--red); transform:translateX(4px); }

/* ── INTRO BAND ── */
#intro-band {
  background:var(--surface);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:48px 0;
}
.intro-band-inner {
  display:grid;
  grid-template-columns:1fr 2px 1fr 2px 1fr;
  gap:40px;
  align-items:center;
}
.ib-divider { background:var(--border-2); height:48px; }
.ib-item { text-align:center; }
.ib-item .ib-val {
  font-family:var(--ff-head); font-size:2.6rem; font-weight:800;
  color:var(--red); line-height:1;
}
.ib-item .ib-desc {
  font-size:0.88rem; color:var(--muted); margin-top:6px;
  font-family:var(--ff-mono); letter-spacing:0.08em; text-transform:uppercase;
}

/* ── ABOUT SNAPSHOT ── */
#about-snap {
  background:var(--white);
}
.about-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.about-img-wrap {
  position:relative;
}
.about-img-wrap img {
  width:100%; object-fit:cover;
  border-radius:4px;
}
.about-img-badge {
  position:absolute; bottom:24px; left:-24px;
  background:#fff;
  box-shadow:var(--shadow-md);
  padding:18px 22px;
  border-left:4px solid var(--red);
  border-radius:2px;
}
.about-img-badge .b-val { font-family:var(--ff-head); font-size:2rem; font-weight:800; color:var(--red); line-height:1; }
.about-img-badge .b-desc { font-size:0.8rem; color:var(--muted); margin-top:4px; }
.about-text .label { margin-bottom:16px; }
.about-text h2 { margin-bottom:20px; }
.about-text p { margin-bottom:16px; font-size:17px; }
.about-checks { margin-top:24px; display:flex; flex-direction:column; gap:12px; }
.about-checks li {
  display:flex; align-items:flex-start; gap:12px;
  font-size:16px; color:var(--ink-3);
}
.about-checks li::before { content:'✓'; color:var(--red); font-weight:700; flex-shrink:0; margin-top:1px; }

/* ── VERTICALS OVERVIEW ── */
#verticals {
  background:var(--surface);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.vert-header { text-align:center; max-width:640px; margin:0 auto 60px; }
.vert-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--border);
  border:1px solid var(--border);
}
.vcard {
  background:var(--white);
  position:relative;
  overflow:hidden;
  transition:transform 0.3s;
}
.vcard:hover { transform:translateY(-4px); z-index:2; box-shadow:var(--shadow-lg); }
.vcard-img { height:220px; width:100%; object-fit:cover; }
.vcard-img-placeholder {
  height:220px; width:100%;
  background:linear-gradient(135deg,var(--surface) 0%,var(--surface-2) 100%);
  display:flex; align-items:center; justify-content:center;
  font-size:3rem;
}
.vcard-body { padding:28px; }
.vcard-tag {
  font-family:var(--ff-mono); font-size:0.62rem; letter-spacing:0.18em;
  text-transform:uppercase; color:var(--red); margin-bottom:12px;
  display:block;
}
.vcard h3 { font-size:1.35rem; margin-bottom:10px; }
.vcard p { font-size:17px; color:var(--muted); line-height:1.65; margin-bottom:20px; }
.vcard-link {
  display:inline-flex; align-items:center; gap:6px;
  font-size:0.88rem; font-weight:700; color:var(--red);
  transition:gap 0.2s;
}
.vcard:hover .vcard-link { gap:10px; }

/* ── PRODUCTS SECTION ── */
#products {
  background:var(--white);
}
.prod-header {
  display:flex; align-items:flex-end; justify-content:space-between;
  margin-bottom:48px; gap:24px; flex-wrap:wrap;
}
.prod-header-text { }
.prod-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:2px;
  background:var(--border);
}
.pcard {
  position:relative;
  overflow:hidden;
  height:300px;
  background:var(--surface);
  text-decoration:none;
  display:block;
}
.pcard img {
  width:100%; height:100%;
  object-fit:cover;
  transition:transform 0.5s ease;
}
.pcard .pcard-placeholder {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  font-size:4rem;
  background:linear-gradient(135deg,#f0ede8,#e8e3dc);
}
.pcard-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.1) 60%);
  transition:background 0.3s;
}
.pcard:hover img { transform:scale(1.05); }
.pcard:hover .pcard-overlay { background:linear-gradient(to top, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.2) 60%); }
.pcard-content {
  position:absolute; bottom:0; left:0; right:0;
  padding:24px;
  transform:translateY(0);
  transition:padding 0.3s;
}
.pcard-num { font-family:var(--ff-mono); font-size:0.6rem; letter-spacing:0.18em; color:rgba(255,255,255,0.4); text-transform:uppercase; margin-bottom:8px; }
.pcard h4 { font-family:var(--ff-head); font-size:1.25rem; color:#fff; margin-bottom:8px; }
.pcard p { font-size:0.84rem; color:rgba(255,255,255,0.65); line-height:1.5; margin-bottom:0; }
.pcard-cta {
  display:inline-flex; align-items:center; gap:6px;
  font-size:0.82rem; font-weight:700; color:var(--red);
  margin-top:12px; opacity:0; transform:translateY(6px);
  transition:all 0.25s;
}
.pcard:hover .pcard-cta { opacity:1; transform:translateY(0); }

/* ── ENERGY TEASER (interactive) ── */
#energy-teaser {
  background:var(--ink-2);
  position:relative;
  overflow:hidden;
}
.energy-bg-img {
  position:absolute; inset:0;
  background:url('/images/Solar-Energy.jpg') center/cover no-repeat;
  opacity:0.12; z-index:0;
}
.energy-teaser-inner {
  position:relative; z-index:1;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  min-height:560px;
}
.et-left {
  padding:80px 60px 80px 0;
  display:flex; flex-direction:column; justify-content:center;
}
.et-left .label { color:rgba(255,255,255,0.5); }
.et-left .label::before { background:var(--red); }
.et-left h2 { color:#fff; margin-top:16px; margin-bottom:20px; }
.et-left p { color:rgba(255,255,255,0.65); font-size:17px; margin-bottom:32px; max-width:480px; }

/* Energy tabs */
.energy-tabs { display:flex; gap:0; margin-bottom:32px; border-bottom:1px solid rgba(255,255,255,0.12); }
.etab-btn {
  padding:10px 18px; background:transparent; border:none;
  font-family:var(--ff-body); font-size:0.85rem; font-weight:600;
  color:rgba(255,255,255,0.45); cursor:pointer;
  border-bottom:2px solid transparent; margin-bottom:-1px;
  transition:all 0.2s;
}
.etab-btn.active { color:var(--red); border-bottom-color:var(--red); }
.etab-btn:hover { color:rgba(255,255,255,0.8); }

.etab-content { display:none; }
.etab-content.active { display:block; animation:fadeInUp 0.35s ease; }
@keyframes fadeInUp { from{opacity:0;transform:translateY(12px);} to{opacity:1;transform:translateY(0);} }
.etab-content h4 { font-family:var(--ff-body); font-size:1.05rem; font-weight:700; color:#fff; margin-bottom:10px; }
.etab-content p { font-size:16px; color:rgba(255,255,255,0.6); line-height:1.7; margin-bottom:20px; }

.et-right {
  position:relative;
  display:flex; align-items:stretch;
}
.et-right-img {
  width:100%; height:100%; min-height:460px;
  object-fit:cover;
  display:block;
}
.et-right-placeholder {
  width:100%; min-height:460px;
  background:linear-gradient(135deg,#1a2a1a,#0d1f0d);
  display:flex; align-items:center; justify-content:center; flex-direction:column;
  gap:12px; color:rgba(255,255,255,0.2); font-size:4rem;
}
.et-stat-bar {
  position:absolute; bottom:0; left:0; right:0;
  display:flex;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(8px);
}
.et-stat {
  flex:1; padding:16px 20px; border-right:1px solid rgba(255,255,255,0.08);
  text-align:center;
}
.et-stat:last-child { border-right:none; }
.et-stat .sv { font-family:var(--ff-head); font-size:1.5rem; font-weight:800; color:#fff; line-height:1; }
.et-stat .sd { font-size:0.72rem; color:rgba(255,255,255,0.4); margin-top:4px; font-family:var(--ff-mono); letter-spacing:0.1em; text-transform:uppercase; }

/* ── WATER TEASER ── */
#water-teaser { background:var(--surface); border-top:1px solid var(--border); }
.water-inner {
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
}
.water-img { position:relative; }
.water-img img { width:100%; height:420px; object-fit:cover; border-radius:4px; }
.water-img-badge {
  position:absolute; top:24px; right:-20px;
  background:var(--red); color:#fff;
  padding:14px 18px; border-radius:2px;
  text-align:center;
}
.water-img-badge .bv { font-family:var(--ff-head); font-size:1.6rem; font-weight:800; line-height:1; }
.water-img-badge .bd { font-size:0.72rem; letter-spacing:0.08em; text-transform:uppercase; opacity:0.8; margin-top:4px; }
.water-text .label { margin-bottom:16px; }
.water-text h2 { margin-bottom:20px; }
.water-text p { font-size:17px; margin-bottom:20px; }
.water-pills {
  display:flex; flex-wrap:wrap; gap:8px; margin-top:24px; margin-bottom:32px;
}
.pill {
  padding:7px 16px; background:var(--white); border:1px solid var(--border-2);
  border-radius:50px; font-size:0.84rem; color:var(--ink-3); font-weight:500;
  transition:all 0.2s;
}
.pill:hover { background:var(--red-light); border-color:var(--red); color:var(--red); }

/* ── LEGACY / OFFICES ── */
#offices {
  background:var(--white);
  border-top:1px solid var(--border);
}
.offices-grid { display:grid; grid-template-columns:1fr 1fr; gap:2px; background:var(--border); }
.office-card {
  background:var(--white);
  padding:48px;
  position:relative; overflow:hidden;
}
.office-card::before {
  content:''; position:absolute;
  top:0; left:0; width:4px; height:100%;
  background:var(--red);
}
.office-flag { font-size:2.5rem; margin-bottom:20px; }
.office-card h3 { font-size:1.3rem; margin-bottom:8px; }
.office-card .office-loc { font-family:var(--ff-mono); font-size:0.68rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--red); margin-bottom:20px; }
.office-detail { display:flex; flex-direction:column; gap:10px; margin-top:16px; }
.od {
  display:flex; align-items:flex-start; gap:12px;
  font-size:16px; color:var(--ink-3); line-height:1.5;
}
.od .icon { color:var(--red); flex-shrink:0; font-size:0.9rem; width:16px; text-align:center; margin-top:2px; }

/* ── PARTNERS BAND ── */
#partners-band {
  background:var(--surface);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding: 64px 0;
}
.pb-inner { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.pb-left h2 { margin-bottom:16px; }
.pb-left p { font-size:17px; margin-bottom:28px; }
.cert-box {
  display:inline-flex; align-items:center; gap:14px;
  padding:16px 22px; background:#fff; border:1px solid var(--border);
  box-shadow:var(--shadow-sm); border-radius:4px;
}
.cert-icon { font-size:1.8rem; }
.cert-box .ct { font-family:var(--ff-body); font-weight:700; font-size:0.92rem; color:var(--ink); }
.cert-box .cs { font-size:0.8rem; color:var(--muted); }
.trust-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); }
.tcard {
  background:var(--white); padding:24px;
  transition:background 0.2s;
}
.tcard:hover { background:var(--red-light); }
.tcard .ti { font-size:1.4rem; margin-bottom:12px; }
.tcard h4 { font-size:0.94rem; margin-bottom:6px; color:var(--ink); }
.tcard p { font-size:0.84rem; color:var(--muted); line-height:1.6; }

/* ── CTA ── */
#cta-band {
  position:relative;
  background:#7b7d1b;
  overflow:hidden;
  padding:100px 0;
  text-align:center;
}
.cta-bg {
  position:absolute; inset:0;
  background:url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1400&q=80') center/cover no-repeat;
  opacity:0.08; z-index:0;
}
.cta-glow {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:700px; height:500px;
  background:radial-gradient(ellipse,rgba(200,16,46,0.15),transparent 70%);
  z-index:0; pointer-events:none;
}
.cta-content { position:relative; z-index:1; }
.cta-content .label { justify-content:center; color:rgba(255,255,255,0.5); }
.cta-content .label::before { background:var(--red); }
.cta-content h2 { color:#fff; max-width:720px; margin:16px auto 20px; }
.cta-content p { color:rgba(255,255,255,0.6); max-width:540px; margin:0 auto 40px; font-size:17px; }
.cta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }


/* ═══════════════════════════════════════════════════════════
   RUP EXPORT LIMITED — Exports Page Specific Styles
   ═══════════════════════════════════════════════════════════ */

/* Intro 2-col */
.intro-2col { display:grid; grid-template-columns:1.1fr 1fr; gap:80px; align-items:start; margin-bottom:80px; }
.intro-main p { font-size:17px; line-height:1.8; color:var(--ink-3); margin-bottom:16px; }
.highlight-list { margin-top:24px; display:flex; flex-direction:column; gap:14px; }
.highlight-list li { display:flex; align-items:flex-start; gap:12px; font-size:17px; color:var(--ink-3); }
.highlight-list li::before { content:'→'; color:var(--red); font-weight:700; flex-shrink:0; margin-top:2px; }

.sidebar-card {
  background:var(--surface);
  border:1px solid var(--border);
  border-left:4px solid var(--red);
  padding:32px;
  border-radius:var(--radius);
  position:sticky; top:90px;
}
.sidebar-card h4 { font-size:1.05rem; margin-bottom:12px; }
.sidebar-card p { font-size:16px; color:var(--muted); line-height:1.7; margin-bottom:24px; }
.sidebar-badge {
  display:flex; align-items:center; gap:10px;
  padding:12px 16px; background:#fff; border:1px solid var(--border);
  border-radius:var(--radius); margin-bottom:16px;
  font-size:0.88rem; font-weight:600; color:var(--ink);
}
.sidebar-badge span { color:var(--red); font-size:1.2rem; }

/* Categories grid */
.categories-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:2px; background:var(--border); margin-bottom:80px; }
.cat-card { background:var(--white); padding:0; overflow:hidden; }
.cat-img { width:100%; object-fit:cover; display:block; }
.cat-img-ph {
  width:100%; height:220px;
  background:linear-gradient(135deg,var(--surface),var(--surface-2));
  display:flex; align-items:center; justify-content:center; font-size:3.5rem;
}
.cat-body { padding:28px; }
.cat-num { font-family:var(--ff-mono); font-size:0.62rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--red); display:block; margin-bottom:10px; }
.cat-card h3 { font-size:1.4rem; margin-bottom:10px; }
.cat-card p { font-size:16px; color:var(--muted); line-height:1.65; margin-bottom:20px; }
.cat-products { display:flex; flex-wrap:wrap; gap:6px; margin-top:16px; }
.cpill { padding:5px 12px; background:var(--surface); border:1px solid var(--border); border-radius:50px; font-size:0.8rem; color:var(--ink-3); }

/* Value prop */
.value-prop {
  background:var(--red);
  padding:64px 72px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
  margin-bottom:80px;
  border-radius:var(--radius);
}
.vp-left h2 { color:#fff; margin-bottom:16px; }
.vp-left p { color:rgba(255,255,255,0.8); font-size:17px; line-height:1.75; }
.vp-right { display:flex; flex-direction:column; gap:20px; }
.vp-item { display:flex; gap:16px; align-items:flex-start; }
.vp-icon { width:44px; height:44px; background:rgba(255,255,255,0.15); border-radius:4px; display:flex; align-items:center; justify-content:center; font-size:1.1rem; flex-shrink:0; }
.vp-text h4 { font-family:var(--ff-body); font-size:0.94rem; font-weight:700; color:#fff; margin-bottom:4px; }
.vp-text p { font-size:0.86rem; color:rgba(255,255,255,0.7); line-height:1.6; }

/* LEON brand section */
.leon-band { background:var(--surface); border:1px solid var(--border); padding:56px; margin-bottom:80px; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; border-radius:var(--radius); }
.leon-img { width:100%; height:300px; object-fit:cover; border-radius:var(--radius); }
.leon-text h3 { margin-bottom:16px; }
.leon-text p { font-size:17px; color:var(--muted); margin-bottom:16px; line-height:1.75; }

/* Process strip */
.process-strip { display:grid; grid-template-columns:repeat(4,1fr); gap:0; background:var(--surface); border:1px solid var(--border); margin-bottom:80px; }
.ps-step { padding:28px; border-right:1px solid var(--border); position:relative; }
.ps-step:last-child { border-right:none; }
.ps-num { font-family:var(--ff-mono); font-size:2rem; font-weight:500; color:var(--red-mid); line-height:1; margin-bottom:12px; }
.ps-step h4 { font-size:0.94rem; margin-bottom:8px; }
.ps-step p { font-size:0.84rem; color:var(--muted); line-height:1.6; }
.ps-arrow { position:absolute; right:-10px; top:50%; transform:translateY(-50%); color:var(--border-2); font-size:1.1rem; z-index:1; }

@media(max-width:1024px){
  .intro-2col { grid-template-columns:1fr; gap:40px; }
  .categories-grid { grid-template-columns:1fr; }
  .value-prop { grid-template-columns:1fr; padding:40px; gap:32px; }
  .leon-band { grid-template-columns:1fr; padding:36px; gap:32px; }
  .process-strip { grid-template-columns:1fr 1fr; }
}
@media(max-width:768px){
  .process-strip { grid-template-columns:1fr; }
  .ps-arrow { display:none; }
}

/* Masonry Layout Configuration */
.masonry-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  column-count: 4; 
  column-gap: 24px; 
}

/* Grid Items Card Style */
.masonry-card {
  display: inline-block;
  width: 100%;
  margin-bottom: 24px; 
  break-inside: avoid;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Card Image Treatment */
.masonry-card img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  transition: filter 0.3s ease;
}

/* Hover Micro-interactions */
.masonry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.masonry-card:hover img {
  filter: brightness(0.95);
}

/* Lightbox System Overlay */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 17, 20, 0.95);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-frame {
  position: relative;
  max-width: 90%;
  max-height: 85%;
}

.lightbox-frame img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Clean Minimalist Close Button */
.close-overlay {
  position: absolute;
  top: -50px;
  right: 0;
  color: #ffffff;
  font-size: 44px;
  line-height: 1;
  font-weight: 200;
  cursor: pointer;
  user-select: none;
  transition: opacity 0.2s;
}

.close-overlay:hover {
  opacity: 0.7;
}

@media (max-width: 1100px) {
  .masonry-container {
    column-count: 3;
    column-gap: 20px;
  }
  .masonry-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .masonry-container {
    column-count: 2;
    column-gap: 16px;
  }
  .masonry-card {
    margin-bottom: 16px;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .masonry-container {
    column-count: 1;
    column-gap: 0;
  }
  .masonry-card {
    margin-bottom: 16px;
  }
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 48px;
  font-weight: 200;
  padding: 20px;
  cursor: pointer;
  user-select: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 2100;
  opacity: 0.6;
}

.nav-arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.left-arrow { left: 20px; }
.right-arrow { right: 20px; }

.lightbox-frame img {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

.lightbox-frame img.fade-out {
  opacity: 0;
}

@media (max-width: 580px) {
  .nav-arrow {
    font-size: 36px;
    padding: 10px;
  }
  .left-arrow { left: 8px; }
  .right-arrow { right: 8px; }
}


/* ═══════════════════════════════════════════════════════════
   RUP EXPORT LIMITED — Energy Page Specific Styles
   ═══════════════════════════════════════════════════════════ */

/* ── Segment Explorer (main interactive) ── */
.seg-explorer {
  display:grid; grid-template-columns:340px 1fr; gap:0;
  background:var(--olive); min-height:600px; overflow:hidden;
  border-radius:var(--radius);
  margin-bottom:80px;
}
.seg-list { border-right:1px solid rgba(255,255,255,0.08); }
.seg-tab {
  padding:28px 32px; cursor:pointer;
  border-bottom:1px solid rgba(255,255,255,0.06);
  transition:background 0.2s; display:flex; gap:16px; align-items:flex-start;
}
.seg-tab:last-child { border-bottom:none; }
.seg-tab:hover { background:rgba(255,255,255,0.04); }
.seg-tab.active { background:rgba(200,16,46,0.12); border-left:3px solid var(--red); }
.seg-tab .st-icon { font-size:1.5rem; flex-shrink:0; margin-top:2px; }
.seg-tab .st-body .st-title { font-family:var(--ff-body); font-weight:700; font-size:0.96rem; color:#fff; margin-bottom:4px; }
.seg-tab .st-body .st-sub { font-size:0.8rem; color:rgba(255,255,255,0.4); line-height:1.45; }
.seg-tab.active .st-body .st-title { color:#fff; }

.seg-panel { display:none; flex-direction:column; }
.seg-panel.active { display:flex; }

.seg-panel-img {
  width:100%; height:280px; object-fit:cover;
  flex-shrink:0;
}
.seg-panel-img-ph {
  width:100%; height:280px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-size:5rem;
  background:linear-gradient(135deg,#1a2a1a,#0d1f0d);
}

.seg-panel-body { padding:40px; flex:1; }
.seg-panel-body .ep-label {
  font-family:var(--ff-mono); font-size:0.65rem; letter-spacing:0.18em;
  text-transform:uppercase; color:var(--red); margin-bottom:10px; display:block;
}
.seg-panel-body h3 { color:#fff; font-size:1.8rem; margin-bottom:8px; }
.seg-panel-body h4 { font-family:var(--ff-body); font-size:1rem; color:rgba(255,255,255,0.55); font-weight:400; margin-bottom:20px; }
.seg-panel-body p { font-size:17px; color:rgba(255,255,255,0.7); line-height:1.75; margin-bottom:20px; }
.seg-points { list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:28px; }
.seg-points li { display:flex; align-items:flex-start; gap:10px; font-size:16px; color:rgba(255,255,255,0.65); }
.seg-points li::before { content:'◆'; color:var(--red); font-size:0.5rem; flex-shrink:0; margin-top:6px; }

/* ── Approach Section ── */
.approach-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:2px; background:var(--border); margin-bottom:80px; }
.ap-card { background:var(--white); padding:40px; transition:background 0.2s; }
.ap-card:hover { background:#fcffe0; }
.ap-icon { font-size:2rem; margin-bottom:16px; }
.ap-card h4 { font-size:1.05rem; margin-bottom:10px; }
.ap-card p { font-size:16px; color:var(--muted); line-height:1.7; }

/* ── Partners band ── */
.partner-logos {
  display:flex; gap:0; background:var(--border);
  border:1px solid var(--border); margin-bottom:80px;
}
.pl-item {
  flex:1; padding:28px; background:var(--white);
  border-right:1px solid var(--border); text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:10px;
}
.pl-item:last-child { border-right:none; }
.pl-flag { font-size:1.8rem; }
.pl-name { font-weight:700; font-size:0.9rem; color:var(--ink); }
.pl-desc { font-size:0.8rem; color:var(--muted); }

/* ── Animated counter ── */
.metrics-row { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--border); border:1px solid var(--border); margin-bottom:80px; }
.metric-box { background:var(--white); padding:32px 24px; text-align:center; transition:background 0.2s; }
.metric-box:hover { background:var(--surface); }
.metric-val { font-family:var(--ff-head); font-size:2.5rem; font-weight:800; color:var(--red); line-height:1; }
.metric-desc { font-family:var(--ff-mono); font-size:0.65rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--muted); margin-top:8px; }

/* ── Target clients ── */
.clients-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:80px; }
.client-card {
  padding:28px; border:1px solid var(--border);
  border-radius:var(--radius);
  transition:all 0.22s;
}
.client-card:hover { border-color:var(--red); background:var(--red-light); transform:translateY(-3px); box-shadow:var(--shadow-md); }
.cc-icon { font-size:1.8rem; margin-bottom:14px; }
.client-card h4 { font-size:1rem; margin-bottom:8px; }
.client-card p { font-size:0.88rem; color:var(--muted); line-height:1.6; }

/* ── CTA ── */
.energy-cta { background:var(--red); padding:64px; border-radius:var(--radius); text-align:center; margin-bottom:0; }
.energy-cta h2 { color:#fff; margin-bottom:16px; }
.energy-cta p { color:rgba(255,255,255,0.8); font-size:17px; max-width:540px; margin:0 auto 32px; }

@media(max-width:1024px){
  .seg-explorer { grid-template-columns:1fr; }
  .seg-list { display:flex; overflow-x:auto; border-right:none; border-bottom:1px solid rgba(255,255,255,0.08); }
  .seg-tab { border-bottom:none; border-right:1px solid rgba(255,255,255,0.06); flex-shrink:0; min-width:200px; }
  .seg-tab.active { border-left:none; border-bottom:3px solid var(--red); }
  .approach-grid { grid-template-columns:1fr; }
  .metrics-row { grid-template-columns:repeat(2,1fr); }
  .clients-grid { grid-template-columns:1fr 1fr; }
  .partner-logos { flex-wrap:wrap; }
  .pl-item { flex:0 0 50%; }
  .energy-cta { padding:40px; }
}
@media(max-width:768px){
  .metrics-row { grid-template-columns:1fr 1fr; }
  .clients-grid { grid-template-columns:1fr; }
  .pl-item { flex:0 0 100%; }
}


/* ═══════════════════════════════════════════════════════════
   RUP EXPORT LIMITED — Water Page Specific Styles
   ═══════════════════════════════════════════════════════════ */

/* Intro split */
.water-intro { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; margin-bottom:80px; }
.water-intro-img { position:relative; }
.water-intro-img img { width:100%; height:500px; object-fit:cover; border-radius:var(--radius); }
.water-intro-img-ph { width:100%; height:500px; background:linear-gradient(135deg,#e8f4f8,#c8e8f0); display:flex; align-items:center; justify-content:center; font-size:6rem; border-radius:var(--radius); }
.wi-badge {
  position:absolute; bottom:-20px; right:20px;
  background:var(--red); color:#fff;
  padding:18px 24px; border-radius:var(--radius); text-align:center;
  box-shadow:var(--shadow-md);
}
.wi-badge .wbv { font-family:var(--ff-head); font-size:2rem; font-weight:800; line-height:1; }
.wi-badge .wbd { font-size:0.72rem; letter-spacing:0.1em; text-transform:uppercase; opacity:0.85; margin-top:4px; }
.water-intro-text .label { margin-bottom:16px; }
.water-intro-text h2 { margin-bottom:20px; }
.water-intro-text p { font-size:17px; line-height:1.78; color:var(--ink-3); margin-bottom:16px; }

/* Focus areas accordion */
.focus-accordion { margin-bottom:80px; }
.fa-item {
  border:1px solid var(--border);
  border-bottom:none;
  overflow:hidden;
}
.fa-item:last-child { border-bottom:1px solid var(--border); }
.fa-header {
  padding:22px 28px; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between;
  background:var(--white); transition:background 0.2s;
}
.fa-header:hover { background:var(--surface); }
.fa-header.open { background:#f9ffbf; }
.fa-header-left { display:flex; align-items:center; gap:16px; }
.fa-icon { font-size:1.4rem; width:44px; text-align:center; }
.fa-title { font-family:var(--ff-body); font-weight:700; font-size:1.02rem; color:var(--ink); }
.fa-subtitle { font-size:0.84rem; color:var(--muted); margin-top:3px; }
.fa-toggle { font-size:1.1rem; color:var(--muted); transition:transform 0.3s; flex-shrink:0; }
.fa-header.open .fa-toggle { transform:rotate(45deg); color:var(--red); }
.fa-body { max-height:0; overflow:hidden; transition:max-height 0.4s ease; background:var(--white); }
.fa-body.open { max-height:600px; }
.fa-body-inner {
  display:grid; grid-template-columns:1fr 1fr; gap:40px; padding:0 28px 28px;
  align-items:start;
}
.fa-body-inner img { width:100%; object-fit:cover; border-radius:var(--radius); }
.fa-body-inner .ph { width:100%; height:200px; background:linear-gradient(135deg,var(--surface),var(--surface-2)); display:flex; align-items:center; justify-content:center; font-size:3rem; border-radius:var(--radius); }
.fa-body p { font-size:16px; color:var(--ink-3); line-height:1.75; margin-bottom:14px; }
.fa-body ul { list-style:none; display:flex; flex-direction:column; gap:8px; }
.fa-body ul li { display:flex; align-items:flex-start; gap:10px; font-size:16px; color:var(--ink-3); }
.fa-body ul li::before { content:'◆'; color:var(--red); font-size:0.45rem; flex-shrink:0; margin-top:7px; }

/* Solutions grid */
.solutions-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:80px; }
.sol-card { padding:32px; border:1px solid var(--border); border-radius:var(--radius); border-top:3px solid transparent; transition:all 0.25s; }
.sol-card:hover { border-top-color:var(--red); background:var(--red-light); transform:translateY(-3px); box-shadow:var(--shadow-md); }
.sol-icon { font-size:2rem; margin-bottom:16px; }
.sol-card h4 { font-size:1.05rem; margin-bottom:10px; }
.sol-card p { font-size:0.9rem; color:var(--muted); line-height:1.65; }

/* Credibility strip */
.cred-strip {
  background:var(--ink); padding:56px 64px;
  border-radius:var(--radius);
  display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center;
  margin-bottom:80px;
}
.cs-left h3 { color:#fff; margin-bottom:16px; }
.cs-left p { color:rgba(255,255,255,0.7); font-size:17px; line-height:1.75; margin-bottom:24px; }
.cs-right { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.cs-stat { background:rgba(255,255,255,0.06); padding:22px; border-radius:var(--radius); text-align:center; }
.cs-val { font-family:var(--ff-head); font-size:2rem; font-weight:800; color:var(--red); line-height:1; }
.cs-desc { font-size:0.78rem; color:rgba(255,255,255,0.45); margin-top:6px; font-family:var(--ff-mono); letter-spacing:0.1em; text-transform:uppercase; }

/* Application sectors */
.sectors-band { background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:64px 0; margin-bottom:80px; }
.sectors-list { display:flex; gap:0; background:var(--border); border:1px solid var(--border); }
.sect-item { flex:1; padding:24px 20px; background:var(--white); border-right:1px solid var(--border); text-align:center; transition:background 0.2s; }
.sect-item:last-child { border-right:none; }
.sect-item:hover { background:var(--red-light); }
.sect-item .si { font-size:1.6rem; margin-bottom:10px; }
.sect-item h5 { font-family:var(--ff-body); font-size:0.88rem; font-weight:700; color:var(--ink); margin-bottom:4px; }
.sect-item p { font-size:0.78rem; color:var(--muted); line-height:1.5; }

/* Why choose water */
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:2px; background:var(--border); margin-bottom:80px; }
.why-card { background:var(--white); padding:36px; }
.why-card:hover { background:var(--surface); }
.wc-num { font-family:var(--ff-mono); font-size:0.62rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--red); margin-bottom:14px; }
.why-card h4 { font-size:1.02rem; margin-bottom:10px; }
.why-card p { font-size:16px; color:var(--muted); line-height:1.7; }

/* CTA box */
.water-cta-box { background:var(--surface); border:1px solid var(--border); border-left:4px solid var(--red); padding:48px; display:flex; justify-content:space-between; align-items:center; gap:32px; flex-wrap:wrap; border-radius:var(--radius); }
.wcb-text h3 { margin-bottom:10px; }
.wcb-text p { font-size:17px; color:var(--muted); max-width:560px; }
.wcb-actions { display:flex; gap:12px; flex-shrink:0; flex-wrap:wrap; }

@media(max-width:1024px){
  .water-intro { grid-template-columns:1fr; gap:48px; }
  .wi-badge { bottom:16px; right:16px; }
  .solutions-grid { grid-template-columns:1fr 1fr; }
  .cred-strip { grid-template-columns:1fr; padding:40px; gap:36px; }
  .sectors-list { flex-wrap:wrap; }
  .sect-item { flex:0 0 33.33%; }
  .why-grid { grid-template-columns:1fr; }
  .fa-body-inner { grid-template-columns:1fr; gap:20px; }
}
@media(max-width:768px){
  .solutions-grid { grid-template-columns:1fr; }
  .cs-right { grid-template-columns:1fr 1fr; }
  .sect-item { flex:0 0 50%; }
  .water-cta-box { flex-direction:column; align-items:flex-start; }
}


/* ═══════════════════════════════════════════════════════════
   RUP EXPORT LIMITED — Products Catalogues Page Styles
   ═══════════════════════════════════════════════════════════ */

/* Category tabs nav */
.cat-tabs-bar {
  background:var(--white);
  border-bottom:2px solid var(--border);
  position:sticky; top:74px; z-index:50;
}
.cat-tabs-inner {
  display:flex; gap:0;
  overflow-x:auto;
  -ms-overflow-style:none; scrollbar-width:none;
}
.cat-tabs-inner::-webkit-scrollbar { display:none; }
.ctab {
  padding:18px 28px; background:transparent; border:none;
  font-family:var(--ff-body); font-size:0.9rem; font-weight:600;
  color:var(--muted); cursor:pointer; white-space:nowrap;
  border-bottom:2px solid transparent; margin-bottom:-2px;
  transition:all 0.2s; display:flex; align-items:center; gap:8px;
}
.ctab:hover { color:var(--ink); }
.ctab.active { color:var(--red); border-bottom-color:var(--red); }

/* Category section anchor */
.cat-section { padding:80px 0; border-bottom:1px solid var(--border); }
.cat-section:last-child { border-bottom:none; }
.cat-section-alt { background:var(--surface); }

/* Category hero band */
.cat-hero-band {
  display:grid; grid-template-columns:1fr 1fr; gap:0;
  margin-bottom:56px;
  border:1px solid var(--border); overflow:hidden;
  border-radius:var(--radius);
}
.chb-img { position:relative; height:320px; overflow:hidden; }
.chb-img img { width:100%; height:100%; object-fit:cover; }
.chb-img-ph { width:100%; height:320px; display:flex; align-items:center; justify-content:center; font-size:5rem; }
.chb-content { padding:40px; display:flex; flex-direction:column; justify-content:center; background:var(--white); }
.chb-content .cat-num-lg { font-family:var(--ff-mono); font-size:0.65rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--red); margin-bottom:12px; display:block; }
.chb-content h2 { font-size:2rem; margin-bottom:12px; }
.chb-content p { font-size:17px; color:var(--muted); line-height:1.72; margin-bottom:24px; }

/* Product grid */
.product-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.product-card {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  transition:all 0.25s;
}
.product-card:hover { border-color:var(--red); transform:translateY(-4px); box-shadow:var(--shadow-md); }
.pc-img { height:160px; overflow:hidden; }
.pc-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s; }
.product-card:hover .pc-img img { transform:scale(1.07); }
.pc-img-ph { height:160px; display:flex; align-items:center; justify-content:center; font-size:2.5rem; background:linear-gradient(135deg,var(--surface),var(--surface-2)); }
.pc-body { padding:16px; }
.pc-body h4 { font-size:0.94rem; margin-bottom:6px; }
.pc-body p { font-size:0.82rem; color:var(--muted); line-height:1.55; margin-bottom:12px; }
.pc-tag { display:inline-block; padding:3px 10px; background:var(--red-light); border:1px solid var(--red-mid); border-radius:50px; font-size:0.72rem; color:var(--red); font-weight:600; }

/* Featured product card */
.featured-product {
  display:grid; grid-template-columns:1fr 1.4fr; gap:0;
  border:1px solid var(--border);
  border-radius:var(--radius); overflow:hidden; margin-bottom:24px;
}
.fp-img { position:relative; }
.fp-img img { width:100%; height:100%; object-fit:cover; min-height:240px; }
.fp-img-ph { min-height:240px; display:flex; align-items:center; justify-content:center; font-size:4rem; background:linear-gradient(135deg,var(--surface),var(--surface-2)); }
.fp-badge {
  position:absolute; top:16px; left:16px;
  background:var(--red); color:#fff; padding:5px 12px;
  border-radius:2px; font-size:0.72rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
}
.fp-body { padding:32px; background:var(--white); display:flex; flex-direction:column; justify-content:center; }
.fp-body h3 { font-size:1.4rem; margin-bottom:10px; }
.fp-body p { font-size:16px; color:var(--muted); line-height:1.7; margin-bottom:20px; }
.fp-specs { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:20px; }
.fp-spec { padding:4px 12px; background:var(--surface); border:1px solid var(--border); border-radius:50px; font-size:0.78rem; color:var(--ink-3); }

/* Section CTA strip */
.sec-cta { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:24px 32px; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); margin-top:40px; flex-wrap:wrap; }
.sec-cta p { font-size:16px; color:var(--ink-3); }

/* LEON brand banner */
.leon-banner {
  background:var(--ink); padding:40px 48px;
  display:flex; align-items:center; justify-content:space-between;
  gap:32px; flex-wrap:wrap; border-radius:var(--radius); margin:64px 0;
}
.leon-banner h3 { font-family:var(--ff-head); font-size:1.6rem; color:#fff; margin-bottom:8px; }
.leon-banner p { font-size:16px; color:rgba(255,255,255,0.65); max-width:500px; }
.leon-right { display:flex; gap:12px; flex-shrink:0; flex-wrap:wrap; }

/* Enquiry prompt */
.enquiry-prompt {
  background:var(--red); padding:64px; text-align:center;
  border-radius:var(--radius);
}
.enquiry-prompt h2 { color:#fff; margin-bottom:14px; }
.enquiry-prompt p { color:rgba(255,255,255,0.8); font-size:17px; max-width:500px; margin:0 auto 32px; }

@media(max-width:1024px){
  .product-grid { grid-template-columns:repeat(2,1fr); }
  .cat-hero-band { grid-template-columns:1fr; }
  .chb-img { height:250px; }
  .featured-product { grid-template-columns:1fr; }
  .fp-img img { min-height:220px; max-height:220px; }
  .leon-banner { flex-direction:column; align-items:flex-start; padding:32px; }
  .enquiry-prompt { padding:40px; }
}
@media(max-width:768px){
  .product-grid { grid-template-columns:1fr 1fr; }
  .ctab { padding:14px 18px; font-size:0.82rem; }
}
@media(max-width:480px){
  .product-grid { grid-template-columns:1fr; }
}


/* ═══════════════════════════════════════════════════════════
   RUP EXPORT LIMITED — Contact Page Specific Styles
   ═══════════════════════════════════════════════════════════ */
#contact {
  padding-top: 120px;
}
