/* ================================
   ORA TRADING - MAIN STYLES
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #06183b;
  background: #ffffff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1216px, calc(100% - 48px));
  margin: 0 auto;
}


/* ================================
   HEADER
================================ */

.header {
  width: 100%;
  height: 82px;
  background: #ffffff;
  border-bottom: 1px solid #dce3ec;
  position: relative;
  z-index: 100;
}

.navbar {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  width: 123px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  white-space: nowrap;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a:first-child {
  color: #071a3f;
}

.quote-btn {
  background: #08a4f4;
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 25px;
  border-radius: 999px;
  white-space: nowrap;
  transition: 0.2s ease;
}

.quote-btn:hover {
  background: #008bd5;
}


/* ================================
   HERO
================================ */

.hero {
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(4, 25, 58, 0.98) 0%,
      rgba(6, 38, 76, 0.94) 45%,
      rgba(9, 46, 79, 0.75) 100%
    ),
    url("../assets/images/hero-port.jpg") center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 300px;
  border-radius: 50%;
  background: rgba(0, 140, 230, 0.18);
  left: -120px;
  bottom: -120px;
  transform: rotate(-10deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  align-items: center;
  gap: 80px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.hero-content {
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #098ddc;
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
}

.hero-badge span {
  color: #09a8ff;
  font-size: 14px;
}

.hero h1 {
  font-size: 54px;
  line-height: 1.08;
  letter-spacing: -1.8px;
  color: white;
  max-width: 700px;
  margin-bottom: 22px;
}

.hero h1 span {
  color: #009cf5;
}

.hero-content > p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.6;
  max-width: 650px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #08a4f4;
  color: white;
  padding: 13px 23px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  transition: 0.2s ease;
}

.primary-btn:hover {
  background: #008bd5;
}

.secondary-btn {
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 0;
}

.hero-stats {
  background: rgba(10, 10, 30, 0.82);
  border: 3px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  padding: 27px 26px 24px;
  color: white;
  backdrop-filter: blur(4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.small-title {
  color: #00a6ff;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 25px;
}

.stat-row {
  min-height: 61px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-row span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  letter-spacing: 1.4px;
  font-weight: 700;
}

.stat-row strong {
  color: white;
  font-size: 24px;
}


/* ================================
   GENERAL SECTIONS
================================ */

.section {
  padding: 88px 0;
}

.light-section {
  background: #f6f9fd;
}

.eyebrow {
  color: #45aaf2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.3px;
  margin-bottom: 12px;
}

.section h2,
.cta-section h2 {
  font-size: 31px;
  line-height: 1.18;
  letter-spacing: -0.7px;
  color: #06183b;
}

.section-content > p:not(.eyebrow) {
  margin-top: 20px;
  color: #58657b;
  font-size: 16px;
  line-height: 1.5;
  max-width: 500px;
}

.text-link {
  display: inline-block;
  margin-top: 25px;
  color: #07152e;
  font-weight: 700;
  font-size: 14px;
}

.text-link:hover {
  color: #069de9;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 38px;
}

.section-heading-row .text-link {
  margin-top: 0;
}


/* ================================
   ABOUT
================================ */

.about-section {
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: 80px;
  align-items: center;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.info-card {
  min-height: 164px;
  background: #f8faff;
  border: 1px solid #dce5ef;
  border-radius: 11px;
  padding: 25px;
}

.check {
  width: 19px;
  height: 19px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #4ab4f7;
  color: #27a9f6;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 16px;
}

.info-card h3,
.why-card h3,
.service-card h3 {
  font-size: 16px;
  color: #020d26;
  margin-bottom: 7px;
}

.info-card p,
.why-card p,
.service-card p {
  color: #5c687b;
  font-size: 14px;
  line-height: 1.55;
}


/* ================================
   SERVICES
================================ */

.four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 192px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #dbe3ec;
  border-radius: 13px;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 4px;
  height: 32px;
  background: #35aaff;
  border-radius: 0 4px 4px 0;
}

.icon-circle,
.product-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e8f7ff;
  color: #008eec;
  font-weight: 700;
}

.icon-circle {
  margin-bottom: 20px;
}


/* ================================
   PRODUCTS
================================ */

.products-section {
  background: #ffffff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.product-card {
  min-height: 82px;
  border: 1px solid #dce4ed;
  border-radius: 13px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
}

.product-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.product-card strong {
  font-size: 14px;
  line-height: 1.3;
  color: #06152e;
}


/* ================================
   INDUSTRIES
================================ */

.industries-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  gap: 70px;
  align-items: center;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.industry-item {
  min-height: 74px;
  background: #ffffff;
  border: 1px solid #dbe4ed;
  border-radius: 13px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.industry-item strong {
  color: #06152e;
  font-size: 14px;
}


/* ================================
   GLOBAL SOURCING
================================ */

.global-section {
  position: relative;
  min-height: 375px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      rgba(6, 29, 68, 0.96),
      rgba(6, 29, 68, 0.96)
    ),
    url("../assets/images/global.jpg") center/cover no-repeat;
}

.global-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 30, 68, 0.4);
}

.global-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  color: white;
}

.global-content > div {
  max-width: 650px;
}

.global-content h2 {
  color: white;
  font-size: 31px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.global-content > div > p:last-child {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  max-width: 590px;
}

.white-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 274px;
  padding: 13px 20px;
  background: white;
  color: #06152e;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
}


/* ================================
   REGISTERED VENDORS
================================ */

.vendor-section {
  background: #ffffff;
}

.vendor-intro {
  max-width: 720px;
  color: #58657b;
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 16px;
}

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.vendor-item {
  min-height: 55px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 20px;
  background: #f8faff;
  border: 1px solid #dbe4ed;
  border-radius: 8px;
  color: #07152e;
  font-size: 14px;
  font-weight: 500;
}

.vendor-item span {
  width: 17px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #4bb5f8;
  border-radius: 50%;
  color: #28a8f5;
  font-size: 9px;
}

.vendor-link {
  margin-top: 32px;
}


/* ================================
   WHY CHOOSE US
================================ */

.why-grid {
  margin-top: 40px;
}

.why-card {
  min-height: 163px;
  background: white;
  border: 1px solid #dce4ed;
  border-radius: 10px;
  padding: 24px;
}


/* ================================
   CTA
================================ */

.cta-section {
  background: #ffffff;
  padding: 28px 0 95px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 70px;
}

.cta-grid > div:first-child {
  max-width: 620px;
}

.cta-section p {
  color: #58657b;
  margin-top: 12px;
  font-size: 15px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.email-btn {
  min-width: 215px;
  padding: 12px 20px;
  border: 1px solid #55baff;
  border-radius: 30px;
  text-align: center;
  color: #0076d6;
  font-size: 14px;
  font-weight: 700;
}


/* ================================
   FOOTER
================================ */

.footer {
  background: #02081e;
  color: white;
  padding: 65px 0 45px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 1fr;
  gap: 80px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
}

.footer-logo {
  width: 112px;
  height: auto;
  object-fit: contain;
}

.footer-logo-row span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  letter-spacing: 1.8px;
  white-space: nowrap;
}

.footer-about > p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

.footer-tagline {
  display: block;
  margin-top: 17px;
  color: #00a8ff;
  font-size: 11px;
  letter-spacing: 2px;
}

.footer h4 {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  letter-spacing: 1.6px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  color: white;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: #00a8ff;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 50px;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1100px) {

  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .four-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    gap: 40px;
  }
}


@media (max-width: 850px) {

  .container {
    width: min(100% - 32px, 1216px);
  }

  .header {
    height: auto;
  }

  .navbar {
    min-height: 75px;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .industries-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .global-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .vendor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}


@media (max-width: 600px) {

  .container {
    width: calc(100% - 28px);
  }

  .section {
    padding: 65px 0;
  }

  .logo img {
    width: 105px;
  }

  .quote-btn {
    padding: 9px 15px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .hero h1 {
    font-size: 37px;
  }

  .hero-content > p {
    font-size: 15px;
  }

  .hero-buttons {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-cards,
  .four-grid,
  .product-grid,
  .industry-list,
  .vendor-grid {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .section h2,
  .global-content h2,
  .cta-section h2 {
    font-size: 27px;
  }

  .global-section {
    padding: 65px 0;
  }

  .white-btn {
    min-width: auto;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .email-btn {
    min-width: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-about {
    grid-column: auto;
  }

  .footer-logo-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-logo-row span {
    white-space: normal;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}


/* =====================================================
   ABOUT PAGE
===================================================== */

/* ---------- ABOUT HERO ---------- */

.about-hero {
  background: #10213f;
  color: #ffffff;
  padding: 80px 0 82px;
}

.about-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 13px;
  color: #d7dfec;
}

.about-hero .breadcrumb a {
  color: #d7dfec;
  text-decoration: none;
}

.about-hero .breadcrumb a:hover {
  color: #49b8ff;
}

.about-hero .eyebrow {
  color: #42b6ff;
  margin-bottom: 14px;
}

.about-hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -1.3px;
  color: #ffffff;
}

.about-hero-text {
  max-width: 680px;
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.55;
  color: #e0e6ef;
}


/* =====================================================
   GENERAL ABOUT SECTIONS
===================================================== */

.section {
  padding: 88px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: #45aef2;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  color: #061536;
  font-size: 31px;
  line-height: 1.15;
  letter-spacing: -0.8px;
}

.section-content > p:not(.eyebrow) {
  margin-top: 24px;
  color: #526078;
  font-size: 16px;
  line-height: 1.55;
}


/* =====================================================
   WHO WE ARE
===================================================== */

.about-who {
  background: #ffffff;
}

.who-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 90px;
  align-items: start;
}

.about-who .section-content h2 {
  max-width: 520px;
}

.about-who .section-content > p:not(.eyebrow) {
  max-width: 500px;
}

.about-bullets {
  display: flex;
  gap: 70px;
  margin-top: 25px;
}

.about-bullets ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-bullets li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 11px;
  color: #12213d;
  font-size: 14px;
}

.about-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #48b8f5;
}


/* ---------- WHAT WE SUPPLY ---------- */

.supply-area {
  width: 100%;
}

.supply-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.supply-item {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid #dce3ed;
  border-radius: 10px;
  background: #f8fafd;
  color: #071631;
  font-size: 14px;
  font-weight: 500;
}


/* =====================================================
   COMPANY PROFILE
===================================================== */

.company-profile {
  background: #ffffff;
  border-top: 1px solid #f0f2f5;
}

.company-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.company-profile .section-content h2 {
  max-width: 560px;
}

.company-profile .section-content > p:not(.eyebrow) {
  max-width: 570px;
  margin-top: 23px;
}

.company-profile-image {
  width: 100%;
}

.company-profile-image img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}


/* =====================================================
   VALUES
===================================================== */

.values-section {
  background: #f6f8fb;
}

.values-section h2 {
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-card {
  min-height: 188px;
  padding: 24px;
  border: 1px solid #dce3ed;
  border-radius: 10px;
  background: #ffffff;
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 21px;
  border-radius: 8px;
  background: #dff2ff;
  color: #0b294f;
  font-size: 20px;
  font-weight: 700;
}

.value-card h3 {
  margin: 0 0 10px;
  color: #061536;
  font-size: 16px;
  font-weight: 700;
}

.value-card p {
  margin: 0;
  color: #59667c;
  font-size: 15px;
  line-height: 1.55;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

  .who-grid,
  .company-profile-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-profile-image img {
    height: 360px;
  }
}


@media (max-width: 700px) {

  .about-hero {
    padding: 60px 0;
  }

  .about-hero h1 {
    font-size: 36px;
  }

  .section {
    padding: 65px 0;
  }

  .section h2 {
    font-size: 28px;
  }

  .supply-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-bullets {
    flex-direction: column;
    gap: 0;
  }

  .company-profile-image img {
    height: 280px;
  }
}


/* =========================================
   RESET
========================================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #071633;
    background: #ffffff;
}

.container {
    width: calc(100% - 136px);
    max-width: 1216px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    width: 100%;
    height: 81px;
    background: #ffffff;
    border-bottom: 1px solid #dce3eb;
}

.header-inner {
    height: 81px;
    display: flex;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo img {
    width: 123px;
    height: 58px;
    object-fit: contain;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: 100px;
}

.main-nav a {
    color: #3e485a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}

.main-nav a.active {
    color: #071633;
    font-weight: 500;
}

.header-cta {
    margin-left: auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 40px;
    padding: 0 20px;

    background: #00a5ed;
    color: #ffffff;

    border-radius: 25px;
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}


/* =========================================
   SERVICES HERO
========================================= */

.services-hero {
    background: #10264b;
    color: #ffffff;
    padding: 80px 0 82px;
}

.services-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 26px;

    font-size: 13px;
    color: #ffffff;
}

.services-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.services-label {
    color: #43b8f5;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;

    margin-bottom: 14px;
}

.services-hero h1 {
    max-width: 720px;

    margin: 0 0 22px;

    color: #ffffff;

    font-size: 44px;
    font-weight: 700;
    line-height: 1.05;
}

.services-hero p {
    max-width: 690px;

    margin: 0;

    color: #ffffff;

    font-size: 17px;
    line-height: 1.55;
}


/* =========================================
   SERVICES CARDS
========================================= */

.services-section {
    background: #ffffff;
    padding: 96px 0 32px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    min-height: 212px;

    padding: 24px;

    background: #f7f9fc;

    border: 1px solid #dbe3ed;
    border-radius: 11px;
}

.service-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background: #ffffff;
    border: 1px solid #dbe3ed;
    border-radius: 9px;

    color: #071c43;
    font-size: 20px;
    font-weight: 600;
}

.service-card h3 {
    margin: 0 0 10px;

    color: #001538;

    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.service-card p {
    margin: 0;

    color: #52627e;

    font-size: 15px;
    line-height: 1.55;
}


/* =========================================
   CTA
========================================= */

.services-cta-section {
    background: #ffffff;
    padding: 0 0 96px;
}

.services-cta {
    min-height: 142px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 30px 32px;

    background: #f7f9fc;

    border: 1px solid #dbe3ed;
    border-radius: 11px;
}

.services-cta-text h3 {
    margin: 0 0 12px;

    color: #001538;

    font-size: 18px;
    font-weight: 700;
}

.services-cta-text p {
    max-width: 550px;

    margin: 0;

    color: #52627e;

    font-size: 15px;
    line-height: 1.55;
}

.services-cta-btn {
    min-width: 177px;
    height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    padding: 0 20px;

    background: #0c2147;
    color: #ffffff;

    border-radius: 8px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: #020719;
    color: #ffffff;

    padding: 68px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.8fr 1fr;
    gap: 90px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 24px;

    margin-bottom: 40px;
}

.footer-brand img {
    width: 112px;
    height: auto;
    display: block;
}

.footer-brand span {
    color: #aebbd1;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1.7px;

    white-space: nowrap;
}

.footer-about > p {
    max-width: 430px;

    margin: 0 0 17px;

    color: #d7deea;

    font-size: 15px;
    line-height: 1.55;
}

.footer-about strong {
    color: #00a8f3;

    font-size: 12px;
    letter-spacing: 2px;
}

.footer-company h4,
.footer-office h4 {
    margin: 0 0 23px;

    color: #aebbd1;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.footer-company {
    display: flex;
    flex-direction: column;
}

.footer-company a {
    margin-bottom: 14px;

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;
}

.footer-office p {
    margin: 0 0 11px;

    color: #ffffff;

    font-size: 15px;
    line-height: 1.35;
}

.footer-bottom {
    margin-top: 48px;

    padding: 27px 0 55px;

    border-top: 1px solid #1c273e;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #9dabc4;

    font-size: 13px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .main-nav {
        gap: 15px;
        margin-left: 40px;
    }

    .main-nav a {
        font-size: 12px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .container {
        width: calc(100% - 40px);
    }

    .main-nav {
        display: none;
    }

    .services-hero h1 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-cta-btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}


/* ==================================================
   PRODUCTS PAGE
================================================== */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #07152f;
    background: #ffffff;
}

.container {
    width: calc(100% - 136px);
    max-width: 1216px;
    margin: 0 auto;
}


/* ================= HEADER ================= */

.site-header {
    height: 82px;
    background: #ffffff;
    border-bottom: 1px solid #dce3ec;
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.header-logo img {
    width: 123px;
    height: 58px;
    object-fit: contain;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: #4d5565;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}

.main-nav a.active {
    color: #07152f;
    font-weight: 600;
}

.header-btn {
    margin-left: auto;
    padding: 13px 21px;
    border-radius: 24px;
    background: #09a6ed;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}


/* ================= HERO ================= */

.products-hero {
    background: #11284c;
    color: #ffffff;
    padding: 80px 0 79px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 27px;
    font-size: 13px;
}

.breadcrumb a,
.breadcrumb span {
    color: #ffffff;
    text-decoration: none;
}

.hero-label {
    margin: 0 0 13px;
    color: #38b9ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.products-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-description {
    width: 680px;
    max-width: 100%;
    margin: 20px 0 0;
    color: #e4e9f2;
    font-size: 17px;
    line-height: 1.6;
}


/* ================= PRODUCT CARDS ================= */

.products-section {
    padding: 96px 0;
    background: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.product-card {
    position: relative;
    min-height: 208px;
    padding: 28px;
    background: #f7f9fc;
    border: 1px solid #d9e1eb;
    border-radius: 11px;
}

.product-number {
    position: absolute;
    top: 28px;
    right: 28px;
    color: #4f607c;
    font-size: 12px;
    font-weight: 700;
}

.product-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border: 1px solid #d9e1eb;
    border-radius: 9px;

    color: #071d46;
    font-size: 23px;
    font-weight: 700;
}

.product-card h3 {
    margin: 0 0 17px;
    color: #061630;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}

.product-card ul {
    margin: 0;
    padding: 0;
    list-style: none;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 36px;
    row-gap: 8px;
}

.product-card li {
    position: relative;
    padding-left: 13px;
    color: #53627c;
    font-size: 15px;
    line-height: 1.35;
}

.product-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #35b9ff;
}


/* ================= FOOTER ================= */

.site-footer {
    background: #02081b;
    color: #ffffff;
    padding: 68px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.75fr 1fr;
    gap: 80px;
    padding-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 39px;
}

.footer-logo {
    width: 110px;
    height: auto;
    display: block;
    object-fit: contain;
}

.footer-brand span {
    color: #b8c7df;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    white-space: nowrap;
}

.footer-about > p {
    max-width: 430px;
    margin: 0;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.55;
}

.footer-tagline {
    margin-top: 18px;
    color: #00aaff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-links h4,
.footer-contact h4 {
    margin: 0 0 25px;
    color: #b9c8df;
    font-size: 12px;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 15px;
    text-decoration: none;
}

.footer-contact p {
    margin: 0 0 11px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.35;
}

.footer-contact p:first-of-type {
    line-height: 1.35;
}

.footer-contact p span {
    display: inline-block;
    margin-left: 27px;
}

.footer-bottom {
    min-height: 88px;
    border-top: 1px solid #1c2940;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #9eb3d4;
    font-size: 13px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1050px) {

    .container {
        width: calc(100% - 60px);
    }

    .main-nav {
        gap: 15px;
    }

    .footer-grid {
        gap: 40px;
    }
}

@media (max-width: 850px) {

    .main-nav {
        display: none;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 10px;
    }
}


/* ==================================================
   INDUSTRIES PAGE
================================================== */


/* ================= HERO ================= */

.industries-hero {
    background: #11284c;
    color: #ffffff;
    padding: 80px 0 79px;
}

.industries-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 27px;

    font-size: 13px;
}

.industries-breadcrumb a,
.industries-breadcrumb span {
    color: #ffffff;
    text-decoration: none;
}

.industries-label {
    margin-bottom: 13px;

    color: #38b9ff;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.industries-hero h1 {
    margin: 0;

    max-width: 700px;

    color: #ffffff;

    font-size: 44px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1px;
}

.industries-hero-text {
    width: 650px;
    max-width: 100%;

    margin: 21px 0 0;

    color: #e4e9f2;

    font-size: 17px;
    line-height: 1.55;
}


/* ================= CARDS SECTION ================= */

.industries-section {
    padding: 95px 0 96px;

    background: #ffffff;
}

.industries-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* ================= INDUSTRY CARD ================= */

.industry-card {
    min-height: 188px;

    padding: 24px;

    background: #f7f9fc;

    border: 1px solid #d9e1eb;
    border-radius: 11px;
}

.industry-icon {
    width: 41px;
    height: 41px;

    margin-bottom: 21px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dff3ff;

    border-radius: 8px;

    color: #071d46;

    font-size: 20px;
    font-weight: 700;
}

.industry-card h3 {
    margin: 0 0 10px;

    color: #061630;

    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
}

.industry-card p {
    margin: 0;

    color: #53627c;

    font-size: 15px;
    line-height: 1.55;
}


/* ==================================================
   FOOTER
================================================== */

.site-footer {
    background: #02081b;
    color: #ffffff;

    padding: 68px 0 0;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 0.75fr 1fr;

    gap: 80px;

    padding-bottom: 48px;
}


/* ================= FOOTER LEFT ================= */

.footer-brand {
    display: flex;
    align-items: center;

    gap: 25px;

    margin-bottom: 39px;
}

.footer-logo {
    width: 110px;
    height: auto;

    display: block;

    object-fit: contain;
}

.footer-brand span {
    color: #b8c7df;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 2px;

    white-space: nowrap;
}

.footer-about > p {
    max-width: 430px;

    margin: 0;

    color: #ffffff;

    font-size: 15px;
    line-height: 1.55;
}

.footer-tagline {
    margin-top: 18px;

    color: #00aaff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* ================= FOOTER LINKS ================= */

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h4,
.footer-contact h4 {
    margin: 0 0 25px;

    color: #b9c8df;

    font-size: 12px;

    letter-spacing: 2px;
}

.footer-links a {
    margin-bottom: 14px;

    color: #ffffff;

    font-size: 15px;

    text-decoration: none;
}


/* ================= FOOTER CONTACT ================= */

.footer-contact p {
    margin: 0 0 11px;

    color: #ffffff;

    font-size: 15px;
    line-height: 1.35;
}

.footer-contact p span {
    display: inline-block;

    margin-left: 27px;
}


/* ================= FOOTER BOTTOM ================= */

.footer-bottom {
    min-height: 88px;

    border-top: 1px solid #1c2940;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #9eb3d4;

    font-size: 13px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .industries-hero h1 {
        font-size: 36px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;

        justify-content: center;
        align-items: flex-start;

        gap: 10px;
    }

}


/* =========================================================
   GLOBAL SOURCING
   ========================================================= */


/* ================= HERO ================= */

.gs-hero {
    background: #102446;
    color: #ffffff;
    padding: 78px 0 80px;
}

.gs-hero .container,
.gs-process .container,
.gs-capabilities .container {
    width: calc(100% - 136px);
    max-width: 1220px;
    margin: 0 auto;
}


.gs-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    font-size: 13px;
}

.gs-breadcrumb a,
.gs-breadcrumb span {
    color: #ffffff;
    text-decoration: none;
}


.gs-eyebrow {
    display: block;
    color: #28aef4;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 14px;
}


.gs-hero h1 {
    margin: 0 0 22px;

    color: #ffffff;

    font-size: 44px;
    line-height: 1.05;
    font-weight: 700;

    max-width: 850px;
}


.gs-hero p {
    margin: 0;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.65;

    max-width: 850px;
}



/* ================= HOW SOURCING WORKS ================= */

.gs-process {
    background: #ffffff;
    padding: 95px 0 85px;
}


.gs-process-grid {
    display: grid;

    grid-template-columns: 478px 1fr;

    gap: 48px;

    align-items: center;
}


/* IMAGE */

.gs-process-image {
    width: 100%;
    height: 410px;

    border-radius: 9px;

    overflow: hidden;

    background: #001124;
}


.gs-process-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}



/* CONTENT */

.gs-process-content h2 {
    margin: 0 0 24px;

    color: #00163b;

    font-size: 31px;
    line-height: 1.2;
    font-weight: 700;
}



/* STEPS */

.gs-step {
    display: grid;

    grid-template-columns: 38px 1fr;

    gap: 15px;

    align-items: start;

    margin-bottom: 25px;
}


.gs-step > span {
    width: 36px;
    height: 37px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #071c45;

    color: #ffffff;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;
}


.gs-step h3 {
    margin: 2px 0 5px;

    color: #00163b;

    font-size: 16px;
    font-weight: 700;
}


.gs-step p {
    margin: 0;

    color: #4c5d7b;

    font-size: 15px;
    line-height: 1.5;
}



/* ================= CAPABILITIES ================= */

.gs-capabilities {
    background: #f5f8fc;

    padding: 28px 0 75px;
}


.gs-section-label {
    display: block;

    color: #28aef4;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 14px;
}


.gs-capabilities h2 {
    margin: 0 0 38px;

    color: #00163b;

    font-size: 31px;
    font-weight: 700;
}


.gs-capability-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}


.gs-capability-card {
    min-height: 188px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #d8e1ee;

    border-radius: 10px;

    padding: 24px;
}


.gs-card-icon {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #d9f1ff;

    color: #071c45;

    border-radius: 8px;

    font-size: 17px;

    margin-bottom: 20px;
}


.gs-capability-card h3 {
    margin: 0 0 10px;

    color: #00163b;

    font-size: 16px;
    font-weight: 700;
}


.gs-capability-card p {
    margin: 0;

    color: #4c5d7b;

    font-size: 15px;
    line-height: 1.55;
}



/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {

    .gs-process-grid {
        grid-template-columns: 1fr;
    }


    .gs-process-image {
        max-width: 600px;
    }


    .gs-capability-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}



@media (max-width: 700px) {

    .gs-hero .container,
    .gs-process .container,
    .gs-capabilities .container {
        width: calc(100% - 40px);
    }


    .gs-hero {
        padding: 55px 0;
    }


    .gs-hero h1 {
        font-size: 35px;
    }


    .gs-hero br {
        display: none;
    }


    .gs-process {
        padding: 60px 0;
    }


    .gs-process-image {
        height: 330px;
    }


    .gs-capability-grid {
        grid-template-columns: 1fr;
    }


    .gs-capabilities h2,
    .gs-process-content h2 {
        font-size: 27px;
    }

}


/* =========================================================
   REGISTERED VENDORS PAGE
   ========================================================= */


/* ================= HERO ================= */

.vendors-container {
    width: calc(100% - 136px);
    max-width: 1220px;
    margin: 0 auto;
}


.vendors-hero {
    background: #102446;
    color: #ffffff;

    padding: 78px 0 80px;
}


.vendors-breadcrumb {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

    font-size: 13px;
}


.vendors-breadcrumb a,
.vendors-breadcrumb span {
    color: #ffffff;
    text-decoration: none;
}


.vendors-eyebrow {
    display: block;

    margin-bottom: 14px;

    color: #28aef4;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}


.vendors-hero h1 {
    margin: 0 0 22px;

    color: #ffffff;

    font-size: 44px;
    line-height: 1.05;

    font-weight: 700;

    max-width: 850px;
}


.vendors-hero p {
    margin: 0;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.65;

    max-width: 850px;
}



/* ================= TABLE SECTION ================= */

.vendors-section {
    background: #ffffff;

    padding: 95px 0 95px;
}


.vendors-table-wrapper {
    width: 100%;

    overflow: hidden;

    border: 1px solid #d8e1ee;

    border-radius: 10px;
}


.vendors-table {
    width: 100%;

    border-collapse: collapse;

    table-layout: fixed;
}



/* TABLE HEADER */

.vendors-table thead {
    background: #f5f8fc;
}


.vendors-table th {
    padding: 17px 24px;

    color: #4d5d78;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-align: left;
}


.vendors-table th:nth-child(1) {
    width: 50%;
}


.vendors-table th:nth-child(2) {
    width: 24%;
}


.vendors-table th:nth-child(3) {
    width: 26%;
}



/* TABLE ROWS */

.vendors-table td {
    padding: 16px 24px;

    height: 56px;

    box-sizing: border-box;

    border-bottom: 1px solid #d8e1ee;

    color: #00163b;

    font-size: 14px;

    vertical-align: middle;
}


.vendors-table tbody tr:last-child td {
    border-bottom: none;
}



/* VENDOR ID */

.vendors-table td:nth-child(2) {
    font-size: 13px;

    color: #00163b;
}



/* ================= APPROVED BADGE ================= */

.vendor-approved {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 5px 11px;

    background: #d9f1ff;

    color: #00163b;

    border-radius: 20px;

    font-size: 12px;

    font-weight: 600;

    line-height: 1;
}


.vendor-approved i {
    font-size: 11px;
}



/* ================= NOTE ================= */

.vendors-note {
    margin: 32px 0 0;

    color: #4c5d7b;

    font-size: 14px;

    line-height: 1.6;
}



/* ================= RESPONSIVE ================= */

@media (max-width: 800px) {

    .vendors-container {
        width: calc(100% - 40px);
    }


    .vendors-hero {
        padding: 55px 0;
    }


    .vendors-hero h1 {
        font-size: 35px;
    }


    .vendors-hero h1 br,
    .vendors-hero p br {
        display: none;
    }


    .vendors-section {
        padding: 60px 0;
    }


    .vendors-table-wrapper {
        overflow-x: auto;
    }


    .vendors-table {
        min-width: 700px;
    }

}


/* =========================================================
   ORA HOLDING PAGE
   ========================================================= */


.holding-container {
    width: calc(100% - 136px);
    max-width: 1220px;
    margin: 0 auto;
}


/* ================= HERO ================= */

.holding-hero {
    background: #102446;
    color: #ffffff;
    padding: 78px 0 80px;
}


.holding-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 25px;

    font-size: 13px;
}


.holding-breadcrumb a,
.holding-breadcrumb span {
    color: #ffffff;
    text-decoration: none;
}


.holding-eyebrow {
    display: block;

    margin-bottom: 14px;

    color: #29aef4;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}


.holding-hero h1 {
    margin: 0 0 22px;

    color: #ffffff;

    font-size: 44px;
    line-height: 1.05;

    font-weight: 700;
}


.holding-hero p {
    margin: 0;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.65;
}



/* ================= COMPANIES ================= */

.holding-companies {
    background: #ffffff;

    padding: 94px 0 100px;
}


.holding-companies h2 {
    margin: 0 0 14px;

    color: #00183e;

    font-size: 31px;
    line-height: 1.2;

    font-weight: 700;
}


.holding-intro {
    margin: 0 0 48px;

    color: #53617b;

    font-size: 15px;
    line-height: 1.65;
}



/* ================= GRID ================= */

.holding-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}



/* ================= CARD ================= */

.holding-card {
    min-height: 188px;

    padding: 24px;

    box-sizing: border-box;

    background: #f7f9fc;

    border: 1px solid #d7e1ee;
    border-radius: 10px;
}


.holding-logo {
    height: 55px;

    display: flex;
    align-items: center;

    margin-bottom: 6px;
}


.holding-logo img {
    display: block;

    max-width: 110px;
    max-height: 50px;

    width: auto;
    height: auto;

    object-fit: contain;
}


.holding-logo.pa-logo img {
    max-width: 270px;
}


.holding-year {
    display: block;

    margin: 3px 0 14px;

    color: #35aaf0;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1.7px;
}


.holding-card h3 {
    margin: 0 0 11px;

    color: #00163b;

    font-size: 16px;
    line-height: 1.3;

    font-weight: 700;
}


.holding-card p {
    margin: 0;

    color: #53617b;

    font-size: 14px;
    line-height: 1.55;
}



/* ================= RESPONSIVE ================= */

@media (max-width: 950px) {

    .holding-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .holding-container {
        width: calc(100% - 40px);
    }


    .holding-hero {
        padding: 55px 0;
    }


    .holding-hero h1 {
        font-size: 35px;
    }


    .holding-hero h1 br,
    .holding-hero p br,
    .holding-intro br {
        display: none;
    }


    .holding-companies {
        padding: 60px 0;
    }


    .holding-grid {
        grid-template-columns: 1fr;
    }


    .holding-card {
        min-height: 180px;
    }

}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-container {
    width: calc(100% - 136px);
    max-width: 1220px;
    margin: 0 auto;
}


/* ================= HERO ================= */

.contact-hero {
    background: #102446;
    color: #ffffff;
    padding: 78px 0 80px;
}


.contact-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 25px;

    font-size: 13px;
}


.contact-breadcrumb a,
.contact-breadcrumb span {
    color: #ffffff;
    text-decoration: none;
}


.contact-eyebrow {
    display: block;

    margin-bottom: 14px;

    color: #29aef4;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}


.contact-hero h1 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: 44px;
    line-height: 1.08;

    font-weight: 700;
}


.contact-hero p {
    margin: 0;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.65;
}



/* ================= MAIN CONTACT ================= */

.contact-section {
    background: #ffffff;

    padding: 96px 0;
}


.contact-layout {
    display: grid;

    grid-template-columns: 0.8fr 1.15fr;

    gap: 48px;

    align-items: start;
}



/* ================= LEFT INFO ================= */

.contact-info {
    padding-top: 2px;
}


.contact-info h2 {
    margin: 0 0 30px;

    color: #00183e;

    font-size: 21px;
    font-weight: 700;
}


.contact-info-row {
    display: flex;

    align-items: flex-start;

    gap: 16px;

    margin-bottom: 24px;
}


.contact-info-row i {
    width: 14px;

    margin-top: 4px;

    color: #36aef3;

    font-size: 17px;

    text-align: center;
}


.contact-info-row p {
    margin: 0;

    color: #071a3c;

    font-size: 14px;
    line-height: 1.65;
}



/* ================= WORKING HOURS ================= */

.working-hours {
    margin-top: 38px;

    padding: 24px;

    background: #f7f9fc;

    border: 1px solid #d8e2ee;

    border-radius: 10px;
}


.working-hours span {
    display: block;

    margin-bottom: 10px;

    color: #3caaf0;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.7px;
}


.working-hours p {
    margin: 0;

    color: #00183e;

    font-size: 14px;
}



/* ================= QUOTATION CARD ================= */

.quotation-card {
    padding: 32px;

    background: #ffffff;

    border: 1px solid #d8e2ee;

    border-radius: 10px;

    box-shadow: 0 1px 2px rgba(0, 20, 55, 0.08);
}


.quotation-card h2 {
    margin: 0 0 6px;

    color: #00183e;

    font-size: 21px;

    font-weight: 700;
}


.quotation-intro {
    margin: 0 0 26px;

    color: #53617b;

    font-size: 14px;
}



/* ================= FORM ================= */

.quotation-form {
    width: 100%;
}


.form-row {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}


.form-group {
    display: flex;

    flex-direction: column;

    margin-bottom: 20px;
}


.form-group label {
    margin-bottom: 9px;

    color: #00183e;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.form-group label span {
    color: #35aef3;
}


.form-group input,
.form-group textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 12px;

    color: #00183e;

    background: #ffffff;

    border: 1px solid #d7e1ed;

    border-radius: 8px;

    outline: none;

    font-family: inherit;

    font-size: 14px;

    transition: 0.2s ease;
}


.form-group input {
    height: 43px;
}


.form-group textarea {
    min-height: 122px;

    resize: vertical;
}


.form-group textarea::placeholder {
    color: #8792a6;
}


.form-group input:focus,
.form-group textarea:focus {
    border-color: #35aef3;

    box-shadow: 0 0 0 2px rgba(53, 174, 243, 0.08);
}



/* ================= FORM BOTTOM ================= */

.form-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 10px;
}


.form-bottom span {
    color: #53617b;

    font-size: 12px;
}


.form-bottom button {
    min-width: 139px;

    padding: 14px 20px;

    background: #071a3e;

    color: #ffffff;

    border: 0;

    border-radius: 8px;

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.2s ease;
}


.form-bottom button:hover {
    background: #0d2b59;
}



/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .contact-layout {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 700px) {

    .contact-container {
        width: calc(100% - 40px);
    }


    .contact-hero {
        padding: 55px 0;
    }


    .contact-hero h1 {
        font-size: 35px;
    }


    .contact-hero p br {
        display: none;
    }


    .contact-section {
        padding: 60px 0;
    }


    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .quotation-card {
        padding: 24px 20px;
    }


    .form-bottom {
        align-items: flex-start;

        flex-direction: column;
    }


    .form-bottom button {
        width: 100%;
    }

}
/* =========================================================
   FINAL HOME + STICKY HEADER FIX
   ========================================================= */

.header,
.site-header {
    position: sticky !important;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: #ffffff;
}

/* Home industries section: remove the oversized empty space and
   keep the text/cards balanced without affecting Industries page */
.section.light-section:has(.industry-list) {
    padding: 72px 0 !important;
}

.section.light-section:has(.industry-list) .industries-grid {
    grid-template-columns: 0.95fr 1.05fr !important;
    gap: 54px !important;
    align-items: center !important;
}

.section.light-section:has(.industry-list) .industry-list {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.section.light-section:has(.industry-list) .industry-item {
    width: 100%;
    min-height: 100px;
    padding: 16px 18px;
}

@media (max-width: 850px) {
    .section.light-section:has(.industry-list) {
        padding: 60px 0 !important;
    }

    .section.light-section:has(.industry-list) .industries-grid {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }
}

@media (max-width: 600px) {
    .section.light-section:has(.industry-list) .industry-list {
        grid-template-columns: 1fr;
    }
}







/* =====================================================
   JAVASCRIPT EFFECTS
===================================================== */


/* HEADER SCROLL */

.site-header,
.header {
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled,
.header.scrolled {
    box-shadow: 0 4px 18px rgba(0, 20, 55, 0.10);
}


/* SECTION FADE */

.hidden-section {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}

.show-section {
    opacity: 1;
    transform: translateY(0);
}


/* CARD EFFECT */

.service-card,
.product-card,
.industry-card,
.industry-item,
.info-card,
.why-card,
.value-card,
.holding-card,
.gs-capability-card {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.card-hover {
    transform: translateY(-5px);

    box-shadow:
        0 10px 28px rgba(0, 28, 70, 0.09);

    border-color: #bcd9ee !important;
}


/* BACK TO TOP */

.back-to-top {
    position: fixed;

    right: 28px;
    bottom: 28px;

    width: 45px;
    height: 45px;

    border: none;
    border-radius: 50%;

    background: #08a4f4;
    color: #ffffff;

    font-size: 20px;
    font-weight: 700;

    cursor: pointer;

    z-index: 9998;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease;

    box-shadow: 0 7px 20px rgba(0, 80, 150, 0.22);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #008bd5;
}


/* MOBILE */

@media (max-width: 700px) {

    .back-to-top {
        right: 18px;
        bottom: 18px;

        width: 42px;
        height: 42px;
    }

}

/* =========================================================
   ORA TRADING — FINAL RESPONSIVE OVERRIDES
   ========================================================= */

/* Desktop header safety: only the actual header logos are sized. */
.header .logo img {
  width: 123px !important;
  max-width: 123px !important;
  height: auto !important;
  max-height: 58px !important;
  object-fit: contain !important;
}

.site-header .header-logo img {
  width: 123px !important;
  max-width: 123px !important;
  height: 58px !important;
  max-height: 58px !important;
  object-fit: contain !important;
}

.header,
.site-header {
  position: sticky !important;
  top: 0;
  z-index: 9990;
  background: #ffffff;
}

.header.scrolled,
.site-header.scrolled {
  box-shadow: 0 5px 22px rgba(0, 20, 55, 0.10);
}

/* JS-created mobile navigation is hidden on desktop. */
.trading-menu-toggle,
.trading-menu-overlay,
.trading-mobile-menu {
  display: none;
}

body.trading-menu-open {
  overflow: hidden;
}

/* Keep hover animation on devices that actually have a pointer. */
@media (hover: hover) and (pointer: fine) {
  .service-card,
  .product-card,
  .industry-card,
  .industry-item,
  .info-card,
  .why-card,
  .value-card,
  .holding-card,
  .gs-capability-card,
  .vendor-item,
  .supply-item {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }

  .service-card:hover,
  .product-card:hover,
  .industry-card:hover,
  .industry-item:hover,
  .info-card:hover,
  .why-card:hover,
  .value-card:hover,
  .holding-card:hover,
  .gs-capability-card:hover,
  .vendor-item:hover,
  .supply-item:hover {
    transform: translateY(-4px);
    border-color: #bdd9ea;
    box-shadow: 0 12px 28px rgba(0, 28, 70, 0.08);
  }
}

/* =========================================================
   TABLET / MOBILE NAVIGATION
   ========================================================= */
@media (max-width: 900px) {

  .container,
  .vendors-container,
  .holding-container,
  .contact-container,
  .gs-hero .container,
  .gs-process .container,
  .gs-capabilities .container {
    width: calc(100% - 40px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .header,
  .site-header {
    height: 72px !important;
    min-height: 72px !important;
  }

  .navbar,
  .header-inner {
    width: 100%;
    height: 72px !important;
    min-height: 72px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
  }

  .header .logo,
  .site-header .header-logo {
    flex: 0 0 auto !important;
    margin: 0 !important;
  }

  .header .logo img,
  .site-header .header-logo img {
    width: 106px !important;
    max-width: 106px !important;
    height: 52px !important;
    max-height: 52px !important;
    object-fit: contain !important;
  }

  .nav-links,
  .main-nav {
    display: none !important;
  }

  .header .quote-btn,
  .site-header .header-btn,
  .site-header .header-cta {
    display: none !important;
  }

  .trading-menu-toggle {
    display: inline-flex !important;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    flex: 0 0 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid #dbe4ed;
    border-radius: 10px;
    background: #ffffff;
    cursor: pointer;
  }

  .trading-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #071a3f;
    transition: transform .25s ease, opacity .2s ease;
  }

  .trading-menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .trading-menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .trading-menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .trading-menu-overlay {
    display: block !important;
    position: fixed;
    inset: 0;
    z-index: 9997;
    background: rgba(2, 13, 35, .48);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
  }

  .trading-menu-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  .trading-mobile-menu {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9998;
    width: min(360px, 88vw);
    height: 100dvh;
    padding: 22px;
    flex-direction: column;
    overflow-y: auto;
    background: #ffffff;
    box-shadow: -18px 0 45px rgba(0, 24, 58, .18);
    transform: translateX(105%);
    transition: transform .32s cubic-bezier(.22, 1, .36, 1);
  }

  .trading-mobile-menu.open {
    transform: translateX(0);
  }

  .trading-mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 17px;
    border-bottom: 1px solid #e7ecf2;
  }

  .trading-mobile-top strong {
    color: #2aaaf2;
    font-size: 11px;
    letter-spacing: 2px;
  }

  .trading-mobile-close {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f3f7fa;
    color: #071a3f;
    font-size: 27px;
    line-height: 1;
    cursor: pointer;
  }

  .trading-mobile-links {
    display: flex;
    flex-direction: column;
    margin-top: 7px;
  }

  .trading-mobile-links a {
    display: flex;
    min-height: 51px;
    align-items: center;
    padding: 0 4px;
    border-bottom: 1px solid #edf1f5;
    color: #29374d;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
  }

  .trading-mobile-links a.active {
    color: #079fe9;
    font-weight: 700;
  }

  .trading-mobile-quote {
    display: flex !important;
    width: 100%;
    min-height: 48px;
    margin-top: 24px;
    padding: 11px 18px !important;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #08a4f4;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
  }

  /* Home */
  .hero {
    min-height: auto !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(40px, 7vw, 48px) !important;
  }

  .hero-content > p {
    max-width: 700px;
  }

  .hero-stats {
    width: 100%;
    max-width: 650px;
  }

  .about-grid,
  .who-grid,
  .company-profile-grid,
  .contact-layout,
  .gs-process-grid,
  .cta-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Home Industries only */
  .section.light-section:has(.industry-list) .industries-grid {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  /* Industries page */
  .industries-section .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .four-grid,
  .product-grid,
  .services-grid,
  .products-grid,
  .values-grid,
  .holding-grid,
  .gs-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .global-content {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 32px !important;
  }

  .white-btn {
    min-width: 0 !important;
  }

  .gs-process-image {
    width: 100% !important;
    max-width: none !important;
  }

  .vendors-table-wrapper {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .vendors-table {
    min-width: 700px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 40px !important;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-brand span,
  .footer-logo-row span {
    white-space: normal !important;
  }
}

/* =========================================================
   PHONES
   ========================================================= */
@media (max-width: 620px) {

  .container,
  .vendors-container,
  .holding-container,
  .contact-container,
  .gs-hero .container,
  .gs-process .container,
  .gs-capabilities .container {
    width: calc(100% - 28px) !important;
  }

  .header,
  .site-header,
  .navbar,
  .header-inner {
    height: 68px !important;
    min-height: 68px !important;
  }

  .header .logo img,
  .site-header .header-logo img {
    width: 98px !important;
    max-width: 98px !important;
    height: 48px !important;
    max-height: 48px !important;
  }

  .trading-menu-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .trading-mobile-menu {
    width: min(330px, 92vw);
    padding: 19px;
  }

  .hero-grid {
    gap: 30px !important;
    padding-top: 46px !important;
    padding-bottom: 46px !important;
  }

  .hero-badge {
    max-width: 100%;
    padding: 5px 11px;
    font-size: 9px;
    letter-spacing: 1.1px;
    white-space: normal;
  }

  .hero h1 {
    font-size: clamp(34px, 10.5vw, 40px) !important;
    line-height: 1.08 !important;
    letter-spacing: -1px !important;
  }

  .hero-content > p {
    font-size: 15px !important;
  }

  .hero-buttons {
    width: 100%;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 11px !important;
  }

  .primary-btn {
    width: 100%;
  }

  .secondary-btn {
    text-align: center;
  }

  .hero-stats {
    padding: 22px 20px !important;
    border-radius: 15px !important;
  }

  .stat-row strong {
    font-size: 21px !important;
  }

  .section,
  .services-section,
  .products-section,
  .industries-section,
  .holding-companies,
  .contact-section,
  .vendors-section,
  .gs-process {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }

  .about-hero,
  .services-hero,
  .products-hero,
  .industries-hero,
  .vendors-hero,
  .holding-hero,
  .contact-hero,
  .gs-hero {
    padding-top: 52px !important;
    padding-bottom: 54px !important;
  }

  .about-hero h1,
  .services-hero h1,
  .products-hero h1,
  .industries-hero h1,
  .vendors-hero h1,
  .holding-hero h1,
  .contact-hero h1,
  .gs-hero h1 {
    font-size: clamp(32px, 9vw, 36px) !important;
    line-height: 1.1 !important;
  }

  .about-hero p,
  .services-hero p,
  .hero-description,
  .industries-hero-text,
  .vendors-hero p,
  .holding-hero p,
  .contact-hero p,
  .gs-hero p {
    font-size: 15px !important;
  }

  .about-hero br,
  .services-hero br,
  .products-hero br,
  .industries-hero br,
  .vendors-hero br,
  .holding-hero br,
  .contact-hero br,
  .gs-hero br {
    display: none !important;
  }

  .section h2,
  .global-content h2,
  .cta-section h2,
  .holding-companies h2,
  .gs-capabilities h2,
  .gs-process-content h2 {
    font-size: 27px !important;
    line-height: 1.18 !important;
  }

  .section-heading-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }

  .about-cards,
  .four-grid,
  .product-grid,
  .industry-list,
  .vendor-grid,
  .services-grid,
  .products-grid,
  .industries-section .industries-grid,
  .values-grid,
  .supply-grid,
  .holding-grid,
  .gs-capability-grid {
    grid-template-columns: 1fr !important;
  }

  .service-card,
  .product-card,
  .industry-card,
  .industry-item,
  .info-card,
  .why-card,
  .value-card,
  .holding-card,
  .gs-capability-card {
    min-height: 0 !important;
  }

  .product-card ul {
    grid-template-columns: 1fr !important;
    row-gap: 8px !important;
  }

  .company-profile-image img {
    height: 260px !important;
  }

  .gs-process-image {
    height: 280px !important;
  }

  .white-btn,
  .services-cta-btn,
  .email-btn {
    width: 100% !important;
    min-width: 0 !important;
  }

  .services-cta,
  .form-bottom {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .quotation-card {
    padding: 22px 18px !important;
  }

  .form-bottom button {
    width: 100% !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .footer-about {
    grid-column: auto !important;
  }

  .footer-brand,
  .footer-logo-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    margin-bottom: 26px !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 10px !important;
  }

  .back-to-top {
    right: 16px !important;
    bottom: 16px !important;
    width: 42px !important;
    height: 42px !important;
  }
}

@media (max-width: 390px) {
  .container,
  .vendors-container,
  .holding-container,
  .contact-container,
  .gs-hero .container,
  .gs-process .container,
  .gs-capabilities .container {
    width: calc(100% - 22px) !important;
  }

  .hero h1 {
    font-size: 32px !important;
  }

  .trading-mobile-menu {
    width: 94vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hidden-section,
  .show-section {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .trading-mobile-menu,
  .trading-menu-overlay,
  .back-to-top {
    transition: none !important;
  }
}

/* =========================================================
   ORA TRADING - CONTACT FORM FUNCTIONAL STATES
   ========================================================= */


/* ---------------------------------------------------------
   CONTACT FORM STATUS MESSAGE
   --------------------------------------------------------- */

.contact-status {
    width: 100%;
    margin: 18px 0 0;
    min-height: 22px;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;

    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}


/* SUCCESS */

.contact-status.success,
.contact-status.is-success {
    color: #16834b;
}


/* ERROR */

.contact-status.error,
.contact-status.is-error {
    color: #c0392b;
}



/* ---------------------------------------------------------
   SUBMIT BUTTON
   --------------------------------------------------------- */

.contact-submit {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition:
        opacity 0.25s ease,
        transform 0.2s ease,
        background-color 0.25s ease;
}


/* DISABLED / SENDING */

.contact-submit:disabled {
    cursor: not-allowed;
    opacity: 0.65;
    transform: none;
}


/* Prevent hover movement while sending */

.contact-submit:disabled:hover {
    transform: none;
}



/* ---------------------------------------------------------
   FORM INPUT STATES
   --------------------------------------------------------- */

.quotation-form input,
.quotation-form textarea {
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}


/* FOCUS */

.quotation-form input:focus,
.quotation-form textarea:focus {
    outline: none;

    border-color: #0b3954;

    box-shadow:
        0 0 0 3px rgba(11, 57, 84, 0.10);
}


/* Invalid fields only after user interaction */

.quotation-form input:invalid:not(:placeholder-shown),
.quotation-form textarea:invalid:not(:placeholder-shown) {
    border-color: #c0392b;
}



/* ---------------------------------------------------------
   MESSAGE TEXTAREA
   --------------------------------------------------------- */

.quotation-form textarea {
    resize: vertical;
    min-height: 145px;
}



/* ---------------------------------------------------------
   REQUIRED ASTERISK
   --------------------------------------------------------- */

.quotation-form label span {
    color: #c0392b;
}



/* ---------------------------------------------------------
   CONTACT LINKS
   --------------------------------------------------------- */

.contact-info-row a,
.footer-office a {
    color: inherit;
    text-decoration: none;

    transition:
        color 0.2s ease;
}


.contact-info-row a:hover,
.footer-office a:hover {
    color: #0b3954;
}



/* ---------------------------------------------------------
   FORM BOTTOM
   --------------------------------------------------------- */

.form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


.form-bottom > span {
    line-height: 1.5;
}



/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 768px) {

    .form-bottom {
        flex-direction: column;
        align-items: flex-start;
    }


    .contact-submit {
        width: 100%;
    }


    .contact-status {
        margin-top: 14px;
        font-size: 14px;
    }

}