/* ===========================================================
   A.M Rising Energy LLP — Stylesheet
   Brand: Deep navy + vibrant orange + cream (from client logo)
   Easy to edit: tweak CSS variables in :root below.
   =========================================================== */

:root {
  /* Brand palette — Sky/Royal Blue + Orange (matched to user reference image) */
  --bg:           #f6f2eb;    /* warm cream body */
  --bg-2:         #e8efff;    /* pale blue section accent */
  --ink:          #0d3a6e;    /* deep blue text */
  --ink-2:        #1c4a82;
  --muted:        #6a7c95;

  --brand:        #2068b1;    /* vibrant sky-royal blue */
  --brand-dark:   #0d4a8f;    /* deep blue */
  --brand-2:      #3784d4;    /* lighter sky blue */
  --accent:       #ff7a2b;    /* vibrant orange */
  --accent-2:     #ee4f1d;    /* deeper red-orange */
  --accent-soft:  #ffb775;

  --white:        #ffffff;
  --line:         rgba(13, 58, 110, 0.14);

  --radius:       18px;
  --radius-sm:    12px;
  --shadow-sm:    0 2px 10px rgba(15, 42, 30, 0.06);
  --shadow:       0 12px 40px rgba(15, 42, 30, 0.10);
  --shadow-lg:    0 28px 60px rgba(15, 42, 30, 0.18);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Manrope', system-ui, -apple-system, sans-serif;

  --max:          1200px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; }    /* kills horizontal scroll */
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; color: var(--ink); letter-spacing: -0.01em; line-height: 1.15; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.01em; }
p  { margin: 0 0 1em; color: var(--ink-2); }
.accent { color: var(--accent-2); font-style: italic; }
em { color: var(--accent-2); font-style: italic; }

.eyebrow, .section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff !important;
  padding: 8px 18px;
  background: #ff7a2b !important;
  background-color: #ff7a2b !important;
  border-radius: 999px;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 18px rgba(255, 122, 43, 0.35);
}
.section-eyebrow.light { color: var(--accent-soft) !important; background: rgba(255,255,255,0.12) !important; background-color: rgba(255,255,255,0.12) !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--brand); color: var(--white); box-shadow: 0 8px 20px rgba(32, 104, 177, 0.35); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(32, 104, 177, 0.45); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: rgba(13, 58, 110, 0.06); transform: translateY(-2px); }
.btn-lg { padding: 16px 28px; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 242, 231, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 100px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; transition: opacity .25s ease, transform .25s ease; }
.brand:hover { opacity: 0.92; transform: translateY(-1px); }
.brand::after { display: none !important; }
.brand-mark {
  width: 120px; height: 88px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.brand-tag  { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-2); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 0.95rem; font-weight: 500; color: var(--ink-2); position: relative; }
.nav a:not(.btn):hover { color: var(--brand); }
.nav a:not(.btn)::after {
  content: ""; position: absolute; bottom: -6px; left: 0;
  height: 2px; width: 0; background: var(--accent-2);
  transition: width .3s ease;
}
.nav a:not(.btn):hover::after { width: 100%; }
.nav-cta { padding: 10px 20px; font-size: 0.9rem; background: var(--accent); box-shadow: 0 6px 16px rgba(255, 122, 43, 0.35); }
.nav-cta:hover { background: var(--accent-2); box-shadow: 0 10px 22px rgba(255, 122, 43, 0.45); }

/* Header social icons */
.header-socials {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 8px;
  border-right: 1px solid var(--line);
  margin-right: 4px;
}
.header-socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--brand);
  font-size: 1rem;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.header-socials a:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }
.header-socials a::after { display: none !important; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 9px;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%; background: var(--ink);
  border-radius: 2px; transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(40px, 8vw, 100px) 0 clamp(40px, 6vw, 80px); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 90% 10%, rgba(255, 122, 43, 0.20), transparent 70%),
    radial-gradient(700px 500px at 10% 90%, rgba(13, 58, 110, 0.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  align-items: center;
}
.hero-copy h1 { margin-top: 0.4em; }
.lead { font-size: clamp(1rem, 1.4vw, 1.18rem); color: var(--ink-2); max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-stats { display: flex; gap: 36px; margin-top: 44px; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-display); font-size: 2rem; color: var(--brand); }
.hero-stats span { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.04em; }

.hero-art {
  position: relative; min-height: 480px;
  display: grid; place-items: center;
}
.hero-photo {
  position: relative;
  width: min(440px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(13, 58, 110, 0.25);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo .quality-badge {
  position: absolute; top: 18px; right: 18px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #ff7a2b 0%, #ee4f1d 100%);
  color: #fff; font-weight: 800; font-size: 0.78rem;
  letter-spacing: 0.06em;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(255, 122, 43, 0.4);
}
.hero-photo .photo-label {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(255,255,255,0.95);
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  max-width: 70%;
}
.hero-photo .photo-label small {
  display: block;
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 4px;
}
.hero-photo .photo-label strong {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.1rem; color: var(--ink); line-height: 1.2;
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(8px);
  animation: float 8s ease-in-out infinite;
  z-index: 0; opacity: 0.55;
}
.orb-mango  { width: 180px; height: 180px; background: radial-gradient(circle at 30% 30%, #ffb066, var(--accent-2)); top: -30px; right: -40px; }
.orb-spice  { width: 140px; height: 140px; background: radial-gradient(circle at 30% 30%, #f47b3c, #b3361a); bottom: -20px; left: -30px; animation-delay: -2s; }
.orb-leaf   { width: 120px; height: 120px; background: radial-gradient(circle at 30% 30%, #3a5694, var(--brand)); top: 55%; right: -30px; animation-delay: -4s; }
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50%      { transform: translateY(-22px) translateX(8px); }
}

.glass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 18px 50px rgba(13, 58, 110, 0.22);
  border-radius: var(--radius);
}
.hero-card {
  position: absolute; z-index: 3;
  right: -30px; bottom: -40px;
  width: min(320px, 80%);
  padding: 22px;
  display: grid; gap: 16px;
}
.hc-row { display: flex; gap: 14px; align-items: flex-start; }
.hc-row i {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, #ff7a2b 0%, #ee4f1d 100%) !important;
  background-color: #ff7a2b !important;
  color: #ffffff !important;
  font-size: 18px;
}
.hc-row h4 { margin: 0; color: var(--ink); font-weight: 700; }
.hc-row p  { margin: 2px 0 0; font-size: 0.92rem; color: var(--ink-2); font-weight: 500; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--brand);
  color: var(--accent-soft);
  padding: 18px 0;
  margin-top: -2px;  /* close any sub-pixel gap with the section above */
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex; gap: 24px; white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}
.marquee-track span { color: var(--accent-soft); }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section { padding: clamp(60px, 8vw, 110px) 0; position: relative; }
.section-head { max-width: 780px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-sub { color: var(--muted); font-size: 1rem; max-width: 600px; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- About ---------- */
.about { background: var(--bg-2); }
.grid-2 { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.checklist { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: center; font-weight: 500; color: var(--ink); }
.checklist i {
  width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  background: var(--brand); color: var(--accent); font-size: 11px;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feature {
  padding: 26px; border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature i {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white); font-size: 18px;
  margin-bottom: 16px;
}
.feature h4 { margin-bottom: 6px; }
.feature p  { font-size: 0.92rem; margin: 0; color: var(--muted); }

/* ---------- Products ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: 24px;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(232, 160, 43, 0.4); }
.cat-image { width: 100%; height: 240px; overflow: hidden; }
.cat-image img { width: 100%; height: 100%; object-fit: cover; }
.cat-head { display: flex; align-items: center; gap: 16px; padding: 22px 28px 22px; margin-bottom: 0; border-bottom: 1px dashed var(--line); }
.cat-icon {
  width: 54px; height: 54px; min-width: 54px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--accent); font-size: 22px;
}
.cat-title-link { flex: 1; min-width: 0; }
.cat-title-link h3 {
  margin: 0; display: inline-flex; align-items: center; gap: 10px;
  color: var(--brand); transition: color .25s ease;
  font-size: 1.35rem; line-height: 1.2;
}
.cat-title-link h3 i { font-size: 0.72em; opacity: 0.6; transition: transform .25s ease, opacity .25s ease; }
.cat-title-link:hover h3 { color: var(--accent-2); }
.cat-title-link:hover h3 i { transform: translate(2px, -2px); opacity: 1; }

.cat-body { display: grid; gap: 18px; padding: 22px 28px 28px; }
.cat-group h4 { color: var(--ink); margin: 0 0 6px; font-size: 0.92rem; letter-spacing: 0.02em; }
.cat-group p  { margin: 0; font-size: 0.92rem; color: var(--ink-2); line-height: 1.65; }
.badge {
  display: inline-block; padding: 2px 8px; margin-left: 2px;
  background: var(--accent-2); color: #fff; border-radius: 999px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; vertical-align: middle;
}

/* ---------- Certifications ---------- */
.certifications { background: var(--bg-2); }
.cert-image-wrap {
  max-width: 1000px; margin: 0 auto;
  padding: 36px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.cert-image-wrap img { width: 100%; height: auto; }

/* ---------- Markets ---------- */
.market-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 22px; }
.market-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s ease, box-shadow .3s ease;
}
.market-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.flag {
  display: block;
  width: 64px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(13, 58, 110, 0.18);
}
.flag img { width: 100%; height: 100%; object-fit: cover; display: block; }
.market-tag {
  display: inline-block; margin-top: 12px; padding: 5px 12px;
  background: rgba(13, 58, 110, 0.08); color: var(--brand);
  border-radius: 999px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--white);
  color: var(--ink);
  padding-bottom: 24px;
}
.contact h2, .contact h3 { color: var(--brand); }
.contact p { color: var(--ink-2); }

/* Top intro: illustration + heading */
.contact-intro {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.2fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 50px;
}
.contact-illu img {
  width: 100%;
  max-width: 460px;
  height: auto;
}
.contact-intro-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 0.5em;
  color: var(--brand);
  font-weight: 700;
}
.contact-intro-copy p {
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.55;
  max-width: 560px;
}

.contact-heading { margin-bottom: 36px; }
.contact-heading h3 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--brand);
  margin-bottom: 0.4em;
  font-weight: 700;
}
.contact-heading p {
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.55;
}

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 56px);
  box-shadow: 0 10px 40px rgba(13, 58, 110, 0.08);
  display: grid;
  gap: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.form-field label .req { color: var(--accent-2); }
.form-field label .opt { color: var(--muted); font-weight: 500; font-size: 0.88rem; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink);
  background: #e8f1ff;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 18px 20px;
  width: 100%;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #f0f6ff;
  box-shadow: 0 0 0 4px rgba(13, 58, 110, 0.10);
}
.form-field textarea { resize: vertical; min-height: 180px; }
.form-field input[type="file"] {
  background: transparent;
  padding: 12px 0;
  font-size: 0.98rem;
  border: none;
}
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%230f1c44' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-color: #e8f1ff;
  padding-right: 46px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--ink-2);
  cursor: pointer;
}
.form-check input {
  margin-top: 3px;
  width: 20px; height: 20px;
  accent-color: var(--brand);
}

.form-submit {
  justify-self: start;
  padding: 16px 36px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

/* Direct contact cards below form */
.contact-direct { margin-top: 60px; }
.contact-direct h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--brand);
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 18px;
}
.contact-card {
  padding: 24px;
  background: #f4f8ff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-card h4 { color: var(--brand); margin-bottom: 10px; }
.contact-card p  { color: var(--ink-2); font-size: 0.92rem; margin-bottom: 14px; }
.contact-card a {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink); font-size: 0.92rem; margin-top: 6px;
  transition: color .25s ease;
}
.contact-card a:hover { color: var(--accent-2); }
.cc-flag { font-size: 1.8rem; display: block; margin-bottom: 8px; }

/* ---------- Footer ---------- */
/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: 50px 0 20px;
  font-size: 0.9rem;
}
.footer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.foot-brand { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.foot-brand .brand-mark {
  width: 100px; height: 80px;
  background: var(--white);
  border-radius: 12px;
  padding: 8px;
}
.foot-brand strong { display: block; color: var(--white); font-family: var(--font-display); font-size: 1.2rem; }
.foot-brand span { font-size: 0.82rem; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; }

.foot-socials {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.foot-socials a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  color: var(--white);
  font-size: 1.05rem;
  transition: background .25s ease, transform .25s ease;
}
.foot-socials a:hover { background: var(--accent); transform: translateY(-3px); }

.foot-bottom {
  padding-top: 22px;
  display: flex; justify-content: center; align-items: center; gap: 16px;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  text-align: center;
}

/* ---------- Language switcher ---------- */
.lang-switch {
  position: relative;
  margin-left: 8px;
}
.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font: 500 0.88rem var(--font-body);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.lang-switch-btn:hover { background: rgba(13, 58, 110, 0.05); border-color: var(--brand); }
.lang-switch-btn .lang-current { color: var(--accent-2); font-weight: 700; }
.lang-switch-btn .fa-caret-down { font-size: 0.75rem; color: var(--accent-2); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(13, 58, 110, 0.2);
  border: 1px solid var(--line);
  padding: 8px;
  list-style: none;
  margin: 0;
  z-index: 110;
  display: none;
  animation: fadeDown .25s ease;
}
.lang-switch.open .lang-menu { display: block; }
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.lang-menu li button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 10px 14px;
  font: 500 0.95rem var(--font-body);
  color: var(--ink);
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.lang-menu li button:hover,
.lang-menu li button.active {
  background: rgba(32, 104, 177, 0.08);
  color: var(--brand);
}

/* Hide the Google Translate UI/banner (we use our own) */
.goog-te-banner-frame, .goog-te-gadget, #google_translate_element { display: none !important; }
body { top: 0 !important; }

/* ---------- Page hero (sub-pages: Products, About) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--white);
  padding: clamp(60px, 9vw, 110px) 0 clamp(50px, 7vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 90% 20%, rgba(255, 122, 43, 0.25), transparent 60%),
    radial-gradient(500px 400px at 10% 80%, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin: 0.4em 0 0.3em;
}
.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- Active nav state ---------- */
.nav a.active { color: var(--brand); font-weight: 700; }
.nav a.active::after { width: 100% !important; background: var(--accent) !important; }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--white);
  padding: clamp(36px, 6vw, 60px);
  border-radius: var(--radius);
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(500px 300px at 90% 50%, rgba(255, 122, 43, 0.25), transparent 60%);
  pointer-events: none;
}
.cta-strip > * { position: relative; z-index: 1; }
.cta-strip h3 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  margin-bottom: 0.4em;
}
.cta-strip p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 24px;
}
.cta-strip .btn-primary { background: var(--accent); box-shadow: 0 8px 20px rgba(255, 122, 43, 0.45); }
.cta-strip .btn-primary:hover { background: var(--accent-2); }

/* ---------- Prose (About page) ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose .lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--ink); font-weight: 500; }
.prose h2 {
  margin-top: 1.6em;
  margin-bottom: 0.5em;
  color: var(--brand);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  position: relative;
  padding-left: 18px;
}
.prose h2::before {
  content: "";
  position: absolute; left: 0; top: 0.25em; bottom: 0.25em;
  width: 4px; background: var(--accent); border-radius: 2px;
}
.prose p { font-size: 1.02rem; }
.prose .checklist { margin-bottom: 1em; }

/* ---------- Product showcase gallery (Home page) ---------- */
.showcase {
  background: var(--bg-2);
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 18px;
  margin-top: 40px;
}
.showcase-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--ink);
  box-shadow: 0 10px 30px rgba(13, 58, 110, 0.12);
  transition: transform .35s ease, box-shadow .35s ease;
  cursor: default;
}
.showcase-tile:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(13, 58, 110, 0.22); }
.showcase-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .35s ease;
}
.showcase-tile:hover img { transform: scale(1.06); }
.showcase-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13, 58, 110, 0.9) 0%, rgba(13, 58, 110, 0.0) 55%);
  pointer-events: none;
}
.showcase-tile .tile-label {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  color: var(--white);
  z-index: 2;
}
.showcase-tile .tile-label h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 4px;
  color: var(--white);
}
.showcase-tile .tile-label span {
  font-size: 0.82rem;
  color: var(--accent-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Wide hero card (with image) */
.feature-banner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(13, 58, 110, 0.12);
  margin-top: 30px;
}
.feature-banner-img {
  background: var(--ink);
  min-height: 300px;
}
.feature-banner-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.feature-banner-copy {
  padding: clamp(28px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-banner-copy h3 {
  color: var(--brand);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin-bottom: 0.6em;
}
.feature-banner-copy p { font-size: 1rem; }

/* ---------- Blue contact panel (matches user reference image) ---------- */
.contact-panel {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--white);
  padding: clamp(40px, 6vw, 70px) 0 28px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.contact-panel::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 80% 30%, rgba(255, 122, 43, 0.18), transparent 60%);
}
.contact-panel .container { position: relative; z-index: 1; }
.contact-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-panel h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-panel h3 i {
  color: var(--accent);
  font-size: 0.8em;
  padding: 8px;
  border: 2px solid var(--accent);
  border-radius: 6px;
}
.contact-person { margin-bottom: 28px; }
.contact-person strong {
  display: block;
  font-family: var(--font-body);
  color: var(--accent-soft);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.contact-person a {
  display: block;
  color: var(--white);
  font-size: 0.98rem;
  padding: 4px 0;
  transition: color .2s ease, transform .2s ease;
}
.contact-person a:hover { color: var(--accent); transform: translateX(3px); }
.contact-address { font-size: 0.98rem; line-height: 1.95; color: rgba(255,255,255,0.92); }
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.15rem;
  box-shadow: 0 10px 30px rgba(32, 104, 177, 0.45);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .2s ease;
  z-index: 95;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover { background: var(--brand-dark); transform: translateY(-3px); }


/* ---------- Animations on scroll ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
[data-reveal].in {
  opacity: 1; transform: translateY(0);
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */

/* Tablet */
@media (max-width: 960px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--white);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.open a { padding: 14px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .nav.open a:last-child { border-bottom: none; margin-top: 8px; justify-content: center; }
  .nav.open a::after { display: none; }

  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-art { min-height: 380px; max-width: 480px; margin: 0 auto; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .contact-intro { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .contact-illu img { margin: 0 auto; max-width: 320px; }
  .contact-intro-copy p { margin-left: auto; margin-right: auto; }
  .form-row { grid-template-columns: 1fr; gap: 18px; }
  .footer-wrap { gap: 20px; }
  .foot-brand { grid-column: auto; }
  .feature-banner { grid-template-columns: 1fr; }
  .feature-banner-img { min-height: 240px; }
  .contact-panel-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Mobile */
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  body { font-size: 15.5px; }
  .brand-tag { display: none; }
  .brand-name { font-size: 0.95rem; }
  .brand-mark { width: 90px; height: 68px; }

  .hero { padding: 30px 0 60px; }
  .hero-stats { gap: 22px; }
  .hero-stats strong { font-size: 1.55rem; }
  .hero-card { padding: 20px; }

  .section { padding: 56px 0; }
  .section-head { margin-bottom: 32px; }

  .cat-card { }
  .cat-head { gap: 12px; padding: 20px 22px 14px; }
  .cat-body { padding: 18px 22px 22px; }
  .cat-image { height: 200px; }
  .cat-icon { width: 46px; height: 46px; min-width: 46px; font-size: 18px; }
  .cat-title-link h3 { font-size: 1.1rem; }

  .about-grid { grid-template-columns: 1fr; }
  .cert-image-wrap { padding: 18px; }

  .market-card { padding: 24px; }
  .contact-card { padding: 20px; }

  .footer-wrap { grid-template-columns: 1fr; gap: 24px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

  .scroll-top { bottom: 18px; right: 18px; width: 46px; height: 46px; }
  .header-socials { display: none; }
  .lang-switch { margin-left: 0; width: 100%; padding: 8px 0; border-top: 1px solid var(--line); }
  .lang-switch-btn { width: 100%; justify-content: space-between; border: none; padding: 14px 0; }
  .lang-menu { position: static; box-shadow: none; border: none; padding: 0; margin-top: 6px; }
  .footer-wrap { gap: 18px; }

  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* Very small */
@media (max-width: 380px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero-stats { gap: 16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Hide Google Translate UI banner (we use our own dropdown) ---------- */
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
.goog-te-banner-frame,
.goog-te-spinner-pos,
#goog-gt-tt,
.goog-te-balloon-frame,
.skiptranslate > iframe { display: none !important; visibility: hidden !important; }
body { top: 0 !important; position: static !important; }
body > .skiptranslate { display: none !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background: transparent !important; box-shadow: none !important; }
font[style*="background-color: rgb(255, 255, 153)"] { background-color: transparent !important; }

/* ---------- Merged Footer: brand block inside Registered Office column ---------- */
.cp-rightcol-brand {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.cp-rightcol-brand .cp-brand-text { display: flex; flex-direction: column; gap: 6px; }
.cp-rightcol-brand .cp-brand-text strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.cp-rightcol-brand .cp-brand-text span {
  font-size: 0.82rem;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.cp-rightcol-brand .cp-socials {
  display: flex; gap: 12px;
  margin-top: 4px;
}
.cp-rightcol-brand .cp-socials a {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 1.1rem;
  transition: background .25s ease, transform .25s ease;
}
.cp-rightcol-brand .cp-socials a:hover { background: var(--accent); transform: translateY(-2px); }

.cp-copy-row {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.14);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
}

/* Hide unused */
.cp-divider, .cp-bottom, .cp-logo { display: none !important; }

@media (max-width: 720px) {
  .cp-rightcol-brand { align-items: flex-start; }
}

/* ---------- Mobile hero-photo adjustments ---------- */
@media (max-width: 920px) {
  .hero-art { min-height: auto; margin-top: 24px; }
  .hero-photo { width: min(380px, 100%); aspect-ratio: 1 / 1; }
  .hero-card { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 24px; }
}

/* ===========================================================
   COMPLETELY ISOLATED THANK YOU POPUP
   =========================================================== */
.site-unique-modal {
  position: fixed !important; 
  inset: 0 !important;
  background: rgba(13, 58, 110, 0.75) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none !important; 
  align-items: center;
  justify-content: center;
  z-index: 999999 !important; 
  padding: 20px;
  animation: uniqueFadeIn .2s ease;
}

.site-unique-modal.popup-is-active { 
  display: flex !important; 
}

.site-unique-modal-box {
  position: relative;
  background: #fff !important;
  border-radius: 22px;
  padding: 48px 40px 40px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.30);
  animation: uniquePopIn .3s cubic-bezier(.18,.89,.32,1.28);
}
.site-unique-close {
  position: absolute;
  top: 14px; right: 16px;
  width: 36px; height: 36px;
  border: none; background: transparent;
  color: #666;
  font-size: 1.6rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background .2s ease, color .2s ease;
}
.site-unique-close:hover { background: rgba(0,0,0,0.06); color: #000; }
.site-unique-icon {
  width: 84px; height: 84px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a2b 0%, #ee4f1d 100%);
  color: #fff;
  display: grid; place-items: center;
  font-size: 2.4rem;
  box-shadow: 0 12px 30px rgba(255, 122, 43, 0.40);
}

.site-unique-modal-box h3 {
  color: #0d3a6e !important;
  font-size: 2rem;
  margin: 0 0 12px;
  font-weight: 700;
}

.site-unique-modal-box p {
  color: #333 !important;
  font-size: 1.05rem;
  margin: 0 0 28px;
  line-height: 1.55;
}

.site-unique-modal-box .btn { min-width: 140px; justify-content: center; }

@keyframes uniqueFadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes uniquePopIn   { 0% { opacity: 0; transform: scale(.85); } 100% { opacity: 1; transform: scale(1); } }