@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
  --ink: #102a43;
  --muted: #627d98;
  --line: rgba(16, 42, 67, 0.08);
  --panel: #f0f4f8;
  --blue: #0f96e2;
  --blue-dark: #07345f;
  --blue-glow: rgba(15, 150, 226, 0.15);
  --green: #00a651;
  --green-glow: rgba(0, 166, 81, 0.15);
  --white: #102a43;
  --bg: #ffffff;
  --card-bg: rgba(16, 42, 67, 0.02);
  --card-border: rgba(16, 42, 67, 0.08);
  --card-hover-border: rgba(15, 150, 226, 0.5);
  --shadow: 0 20px 50px rgba(16, 42, 67, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: 'Outfit', 'Inter', sans-serif;
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px clamp(20px, 4vw, 64px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 300ms ease, opacity 300ms ease, background 300ms ease;
}

body.chat-open .site-header {
  transform: translateY(-100%);
  opacity: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink);
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.brand span {
  font-size: 20px;
  background: linear-gradient(135deg, #07345f, #0f96e2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  font-weight: 700;
  font-size: 15px;
}

.site-nav a {
  color: #829ab1;
  text-decoration: none;
  transition: color 250ms ease, transform 250ms ease;
}

.site-nav a:hover {
  color: var(--blue);
  transform: translateY(-1px);
}

.language-tabs {
  display: flex;
  gap: 8px;
  align-items: center;
}

.language-tabs a {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: #627d98;
  transition: all 250ms ease;
}

.language-tabs a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.language-tabs .active {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 14px var(--blue-glow);
}

.menu-toggle {
  display: none;
  color: var(--ink);
  background: rgba(16, 42, 67, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 160px clamp(20px, 6vw, 96px) 100px;
  overflow: hidden;
  color: var(--ink);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(224, 242, 254, 0.5), rgba(15, 150, 226, 0.25), rgba(224, 242, 254, 0.1)),
    linear-gradient(180deg, rgba(15, 150, 226, 0.15), rgba(224, 242, 254, 0.5));
}

.hero-content {
  position: relative;
  max-width: 900px;
  animation: heroRise 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 12px var(--blue-glow);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 6.5vw, 84px);
  line-height: 1.05;
  letter-spacing: -1px;
  font-weight: 900;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
  font-weight: 800;
}

h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.hero-copy {
  max-width: 680px;
  margin: 28px 0 0;
  color: #102a43;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 8px 24px var(--blue-glow);
}

.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 150, 226, 0.5);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.motion-banner {
  overflow: hidden;
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.motion-track {
  display: flex;
  width: max-content;
  gap: 48px;
  padding: 20px 0;
  animation: marquee 35s linear infinite;
}

.motion-track span {
  position: relative;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #829ab1;
}

.motion-track span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -28px;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 8px var(--blue-glow);
}

.section,
.split-section,
.image-band,
.video-showcase,
.contact-section,
.process-section,
.service-timeline,
.media-callout,
.product-panel,
.procurement-grid,
.equipment-catalog {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 6vw, 96px);
}

.intro-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  background: #09121f;
  border-bottom: 1px solid var(--line);
}

.intro-section p:last-child,
.split-copy p,
.image-band p,
.contact-section p,
.company-panel p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.company-section {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 24px;
  background: var(--bg);
}

.company-panel {
  padding: clamp(30px, 5vw, 48px);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
}

.company-photo {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.company-photo img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.company-photo:hover img {
  transform: scale(1.06);
}

.company-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 14px 18px;
  color: var(--white);
  background: rgba(6, 12, 20, 0.85);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.company-facts {
  display: grid;
  gap: 16px;
}

.company-facts article {
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 130px;
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.company-facts article:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.company-facts strong {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
}

.company-facts span {
  color: #829ab1;
  font-size: 14px;
}

.section-heading {
  grid-column: 1 / -1;
  max-width: 800px;
  margin-bottom: 24px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: #09121f;
}

.service-card,
.product-grid article,
.procurement-grid article,
.service-timeline article,
.product-panel article,
.process-grid article {
  position: relative;
  padding: 34px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover,
.product-grid article:hover,
.procurement-grid article:hover,
.service-timeline article:hover,
.product-panel article:hover,
.process-grid article:hover {
  transform: translateY(-6px);
  border-color: var(--card-hover-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 24px var(--blue-glow);
}

.service-card span,
.process-grid span,
.service-timeline span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
}

.service-card p,
.product-grid p,
.procurement-grid p,
.service-timeline p,
.product-panel p,
.process-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg);
}

.split-section img,
.image-band img,
.media-callout img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: #a3b8cc;
  font-size: 16px;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-weight: 900;
  text-shadow: 0 0 8px var(--blue-glow);
}

.product-section {
  background: var(--panel);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.image-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg);
}

.video-showcase {
  background: var(--bg);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.video-grid video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.video-grid video:hover {
  border-color: var(--card-hover-border);
  box-shadow: 0 0 24px var(--blue-glow);
}

.video-grid.single-video {
  grid-template-columns: 1fr;
}

.video-grid.single-video video {
  max-height: 600px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, #09121f, #060b13);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.contact-section h2 {
  color: #ffffff;
}

.contact-section p {
  color: #829ab1;
}

.contact-section .eyebrow {
  color: var(--blue);
}

address {
  min-width: 320px;
  padding: 30px;
  font-style: normal;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

address strong {
  color: #ffffff;
  font-size: 20px;
}

address a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  transition: color 200ms ease;
}

address a:hover {
  color: #ffffff;
}

.page-hero {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 96px) 80px;
  color: var(--white);
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(224, 242, 254, 0.15), rgba(224, 242, 254, 0.5));
  z-index: 1;
}

.page-hero > div {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  color: var(--ink);
  background: var(--line);
}

.feature-strip span {
  padding: 24px;
  background: rgba(16, 42, 67, 0.03);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.procurement-grid,
.service-timeline,
.media-callout,
.product-panel,
.equipment-catalog {
  background: var(--bg);
}

.procurement-grid article {
  padding-bottom: 26px;
}

.procurement-grid img,
.equipment-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  transition: transform 300ms ease;
}

.procurement-grid article:hover img,
.equipment-grid article:hover img {
  transform: scale(1.02);
}

.procurement-grid h3,
.procurement-grid p {
  padding: 0 24px;
}

.procurement-grid h3 {
  margin-top: 24px;
}

.process-section {
  background: var(--panel);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.equipment-grid article {
  display: grid;
  gap: 12px;
}

.equipment-grid h3 {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.hp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hp-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  font-weight: 800;
  transition: all 250ms ease;
}

.hp-grid span:hover {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 0 18px var(--blue-glow);
  transform: translateY(-2px);
}

/* Chat Option Buttons Styling */
.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
  padding: 4px;
  justify-content: flex-start;
}

.chat-opt-btn {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(15, 150, 226, 0.25);
  border-radius: 16px;
  color: #07345f;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.chat-opt-btn:hover {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--blue-glow);
}

.chat-launcher {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  color: var(--white);
  background: #0ea5e9;
  border: none;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-launcher:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 12px 40px rgba(15, 150, 226, 0.6);
}

.chat-panel {
  position: fixed;
  z-index: 95;
  right: 24px;
  bottom: 96px;
  width: min(400px, calc(100vw - 48px));
  height: min(600px, calc(100vh - 120px));
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  font-family: inherit;
}

.chat-panel[hidden] {
  display: none;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
}

.chat-tabs {
  display: inline-flex;
  background: #f3f4f6;
  border-radius: 100px;
  padding: 4px;
  width: 100%;
}

.chat-tab {
  flex: 1;
  text-align: center;
  border: none;
  background: transparent;
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  transition: all 200ms;
}

.chat-tab.active {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.chat-close {
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 200ms;
}

.chat-close:hover {
  color: #0f172a;
}

.chat-messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 20px;
  overflow-y: auto;
  background: #ffffff;
}

.message {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 20px;
  color: #0f172a;
  background: #f1f5f9;
  font-size: 15px;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.message.user {
  align-self: flex-end;
  color: #ffffff;
  background: #6366f1;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.message:not(.user) {
  border-bottom-left-radius: 4px;
}

.message.email-action {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  color: #ffffff;
  background: #10b981;
  font-weight: 800;
  text-decoration: none;
  border-radius: 20px;
}

.chat-input-area {
  padding: 16px 20px 24px;
  background: #ffffff;
}

.chat-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #f3f4f6;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  padding: 16px;
  margin-bottom: 12px;
  transition: border-color 200ms;
}

.chat-form:focus-within {
  border-color: #cbd5e1;
}

.chat-form input {
  width: 100%;
  order: 1;
  margin-bottom: 16px;
  background: transparent;
  border: none;
  color: #0f172a;
  font-size: 15px;
  outline: none;
}

.chat-attach-btn {
  order: 2;
  background: transparent;
  border: none;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.chat-form-center {
  order: 3;
  flex: 1;
  display: flex;
  justify-content: center;
}

.chat-cancel-btn {
  order: 4;
  margin-right: 12px;
  background: transparent;
  border: none;
  color: #334155;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-submit-btn {
  order: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #0ea5e9;
  color: #0ea5e9;
  cursor: pointer;
  transition: all 200ms;
}

.chat-submit-btn.recording {
  background: #6366f1;
  border-color: #6366f1;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.sound-wave {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 24px;
}
.sound-wave .bar {
  width: 4px;
  background-color: #6366f1;
  border-radius: 4px;
  animation: sound 0.8s infinite alternate ease-in-out;
}
.sound-wave .bar:nth-child(1) { height: 8px; animation-delay: 0.1s; }
.sound-wave .bar:nth-child(2) { height: 16px; animation-delay: 0.2s; }
.sound-wave .bar:nth-child(3) { height: 24px; animation-delay: 0.3s; }
.sound-wave .bar:nth-child(4) { height: 16px; animation-delay: 0.4s; }
.sound-wave .bar:nth-child(5) { height: 8px; animation-delay: 0.5s; }

@keyframes sound {
  0% { transform: scaleY(0.5); }
  100% { transform: scaleY(1); }
}



.chat-submit-btn:hover {
  background: #0ea5e9;
  color: #ffffff;
}

.chat-disclaimer {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
}

.site-footer {
  background: #07111d;
  color: #829ab1;
  padding: clamp(60px, 8vw, 96px) clamp(20px, 6vw, 96px) 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: clamp(40px, 6vw, 80px);
  padding-bottom: 48px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
}

.footer-brand span {
  font-size: 20px;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: #829ab1;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #829ab1;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-nav a:hover {
  color: #baf5d2;
}

.footer-graphic-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-graphic-container {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
  line-height: 0;
}

.footer-graphic {
  width: 100%;
  height: 128px;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 300ms ease, transform 300ms ease;
}

.footer-graphic:hover {
  opacity: 1;
  transform: scale(1.02);
}

.footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-certs span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #baf5d2;
  border: 1px solid rgba(186, 245, 210, 0.2);
  border-radius: 20px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
}

.footer-copy {
  color: #627d98;
}

.footer-meta-links {
  display: flex;
  gap: 24px;
}

.footer-meta-links a {
  color: #627d98;
  text-decoration: none;
  font-weight: 700;
  transition: color 200ms ease;
}

.footer-meta-links a:hover {
  color: var(--blue);
}

.intro-section,
.company-section,
.card-grid,
.split-section,
.product-section,
.image-band,
.video-showcase,
.process-section,
.service-timeline,
.media-callout,
.product-panel,
.procurement-grid,
.contact-section {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

  .intro-section,
  .company-section,
  .card-grid,
  .split-section,
  .product-section,
  .image-band,
  .video-showcase,
  .process-section,
  .service-timeline,
  .media-callout,
  .product-panel,
  .procurement-grid,
  .contact-section {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav,
  .language-tabs {
    grid-column: 1 / -1;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    padding-top: 12px;
    gap: 16px;
    text-align: center;
  }

  .site-nav.open {
    display: flex;
  }

  .language-tabs {
    overflow-x: auto;
    justify-content: center;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .intro-section,
  .company-section,
  .card-grid,
  .split-section,
  .product-grid,
  .image-band,
  .video-grid,
  .feature-strip,
  .procurement-grid,
  .process-grid,
  .service-timeline,
  .media-callout,
  .product-panel,
  .equipment-grid,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .intro-section {
    gap: 40px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 16px 20px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding-top: 170px;
  }

  .section,
  .split-section,
  .image-band,
  .video-showcase,
  .contact-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }
}

/* Premium Glassmorphic Lead Contact Form */
.contact-form-container {
  width: 100%;
  max-width: 580px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.lead-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
  min-height: 48px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  color: #ffffff;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: all 250ms ease;
}

.form-group select option {
  background: #09121f;
  color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 12px var(--blue-glow);
  background: rgba(255, 255, 255, 0.06);
}

.form-submit-btn {
  align-self: flex-start;
  padding: 14px 28px;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 6px 20px var(--blue-glow);
  transition: all 250ms ease;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 150, 226, 0.5);
}

.form-status-msg {
  font-size: 14px;
  font-weight: 700;
  margin-top: 5px;
  text-align: left;
}

.form-status-msg.success {
  color: #00e676;
}

.form-status-msg.error {
  color: #ff5252;
}

.contact-address-block {
  margin-top: 30px;
}

/* Subpage Hero Background Images */
.service-hero {
  background: url('../images/about/field-service-site.jpg') no-repeat center/cover;
}

.procurement-hero,
.compact-hero {
  background: url('../images/about/heat-exchanger.jpg') no-repeat center/cover;
}

.equipment-hero {
  background: url('../images/about/drilling-rig.jpg') no-repeat center/cover;
}

.oil-hero {
  background: url('../images/bg/oil-gas-refinery.jpg') no-repeat center/cover;
}

.contact-hero {
  background: url('../images/about/contact_hero_bg.png') no-repeat center/cover;
}

/* Premium Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, calc(100vw - 32px));
  background: rgba(7, 26, 45, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(15, 150, 226, 0.2);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: bottom 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  bottom: 24px;
}

.cookie-content {
  color: #e2e8f0;
  font-size: 14px;
  line-height: 1.5;
  font-family: inherit;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.cookie-btn {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-btn.accept {
  background: var(--blue);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 12px var(--blue-glow);
}

.cookie-btn.accept:hover {
  background: #ffffff;
  color: var(--blue-dark);
  transform: translateY(-2px);
}

.cookie-btn.decline {
  background: transparent;
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn.decline:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 16px;
    gap: 12px;
  }
  .cookie-actions {
    flex-direction: column;
  }
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}
