/* ================= ROOT ================= */
:root{
  --navy:#0a192f;
  --gold:#d4af37;
  --light:#f5f7fa;
  --white:#ffffff;
}

/* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,body{
  width:100%;
  overflow-x:hidden;
  font-family:'Montserrat',sans-serif;
  background:var(--light);
  color:#222;
}
/* ================= FINAL NAVBAR (CLEAN & STABLE) ================= */

#navbar{
  position:fixed;
  top:0;
  width:100%;
  background:#0a192f;
  z-index:999;
}

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 8%;
}

.nav-links{
  list-style:none;
  display:flex;
  gap:28px;
}

.nav-links a,
.submenu-toggle{
  color:#fff;
  text-decoration:none;
  font-size:0.9rem;
  text-transform:uppercase;
  cursor:pointer;
}

/* SUBMENU DESKTOP */
.has-submenu{
  position:relative;
}

.submenu{
  display:none;
  position:absolute;
  top:120%;
  left:0;
  background:#0a192f;
  min-width:240px;
  border-radius:10px;
  padding:12px 0;
  box-shadow:0 15px 40px rgba(0,0,0,0.45);
}

.submenu li a{
  display:block;
  padding:12px 22px;
  font-size:0.85rem;
}

.submenu li a:hover{
  background:#d4af37;
  color:#0a192f;
}

@media(min-width:901px){
  .has-submenu:hover .submenu{
    display:block;
  }
}

/* MOBILE */
.menu-btn{
  display:none;
  font-size:26px;
  color:#fff;
  cursor:pointer;
}

@media(max-width:900px){
  .menu-btn{ display:block; }

  .nav-links{
    position:fixed;
    top:70px;
    right:-100%;
    width:100%;
    height:calc(100vh - 70px);
    background:#0a192f;
    flex-direction:column;
    justify-content:center;
    gap:22px;
    transition:0.4s ease;
  }

  .nav-links.active{ right:0; }

  .submenu{
    position:static;
    background:#112240;
    margin-top:10px;
    border-radius:8px;
    display:none;
  }

  .has-submenu.open .submenu{
    display:block;
  }
}


/* ================= HERO ================= */
.hero-realistic{
  min-height:100vh;
  background:
    linear-gradient(rgba(10,25,47,0.6),rgba(10,25,47,0.6)),
    url("ship-hero.png") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:140px 20px 80px;
  color:#fff;
}

.hero-realistic h1{
  font-family:'Oswald',sans-serif;
  font-size:clamp(2.4rem,5vw,4.2rem);
  letter-spacing:3px;
}

.hero-realistic p{
  margin-top:14px;
  color:var(--gold);
  letter-spacing:1.5px;
  font-weight:600;
}

.hero-cta{
  display:inline-block;
  margin-top:28px;
  padding:14px 34px;
  background:var(--gold);
  color:var(--navy);
  text-decoration:none;
  font-weight:700;
  border-radius:6px;
}

/* ================= ABOUT ================= */
.about-section{
  padding:90px 16px 60px;
  background:var(--light);
}

.about-card{
  max-width:1100px;
  margin:-60px auto 0;
  background:#fff;
  padding:42px 36px;
  border-radius:14px;
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.about-card h2{
  font-size:1.8rem;
  color:var(--navy);
  margin-bottom:18px;
}

.about-card h2::after{
  content:"";
  width:60px;
  height:4px;
  background:var(--gold);
  display:block;
  margin-top:10px;
}

.about-card p{
  font-size:1rem;
  line-height:1.7;
  color:#444;
  margin-bottom:12px;
}

/* ================= SECTION TITLE ================= */
.section-title{
  text-align:center;
  font-size:2.2rem;
  font-weight:800;
  color:var(--navy);
  margin:80px 0 50px;
}

.section-title::after{
  content:"";
  width:70px;
  height:4px;
  background:var(--gold);
  display:block;
  margin:14px auto 0;
}

/* ================= COMMODITIES ================= */
.commodities-section{
  padding:80px 6%;
  background:#f5f7fa;
}

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

.commodity-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(0,0,0,0.08);
}

.commodity-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.commodity-block{
  padding:22px;
}

.commodity-block h3{
  font-size:1.1rem;
  font-weight:800;
  color:var(--navy);
  margin-bottom:8px;
  border-left:4px solid var(--gold);
  padding-left:10px;
}

.commodity-block p{
  font-size:0.9rem;
  color:#555;
  margin-bottom:14px;
}

.commodity-btn{
  display:inline-block;
  padding:8px 18px;
  border:1px solid var(--gold);
  color:var(--gold);
  text-decoration:none;
  font-size:0.8rem;
  font-weight:700;
  border-radius:4px;
}

/* ================= TRUST + SALES ================= */
.trust-sales{
  background:var(--navy);
  padding:70px 20px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.trust-card,
.sales-card{
  background:#fff;
  padding:30px;
  border-radius:12px;
}

.trust-card h2,
.sales-card h2{
  color:var(--navy);
  margin-bottom:18px;
  border-left:4px solid var(--gold);
  padding-left:12px;
}

/* ================= FOOTER ================= */
footer{
  background:#071a2f;
  color:#ccc;
  text-align:center;
  padding:24px;
  font-size:0.85rem;
}

/* ================= MOBILE ================= */
@media(max-width:900px){

  .menu-btn{ display:block; }

  .nav-links{
    position:fixed;
    top:65px;
    right:-100%;
    width:240px;
    height:calc(100vh - 65px);
    background:var(--navy);
    flex-direction:column;
    padding:30px 20px;
    gap:18px;
    transition:0.3s ease;
  }

  .nav-links.active{ right:0; }

  .commodities-grid{
    grid-template-columns:1fr;
  }

  .trust-sales{
    grid-template-columns:1fr;
  }

  .about-card{
    margin:-40px 12px 0;
    padding:30px 22px;
  }
}
/* ================= MOBILE FIX ================= */

@media (max-width: 900px) {
  .trust-sales {
    grid-template-columns: 1fr;
    padding: 70px 20px;
  }

  .trust-card,
  .sales-card {
    padding: 30px 24px;
  }
}
/* ================= GLOBAL COMMODITIES ================= */

.commodities-section {
  background: #f6f8fb;
  padding: 90px 6%;
}

.section-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 800;
  color: #0a192f;
  margin-bottom: 14px;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #d4af37;
  display: block;
  margin: 14px auto 0;
  border-radius: 3px;
}

/* GRID */
.commodities-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* CARD */
.commodity-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.commodity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.15);
}

/* IMAGE */
.commodity-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.commodity-content {
  padding: 26px 24px 30px;
}

.commodity-content h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0a192f;
  margin-bottom: 8px;
  padding-left: 12px;
  border-left: 4px solid #d4af37;
}

.commodity-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* BUTTON */
.read-more {
  display: inline-block;
  padding: 9px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid #d4af37;
  color: #d4af37;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more:hover {
  background: #d4af37;
  color: #0a192f;
}

/* ================= CTA SECTION ================= */

.cta-section {
  background: linear-gradient(135deg, #1e88e5, #2196f3);
  padding: 80px 20px;
  text-align: center;
}

.cta-section h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.cta-section p {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}

/* CTA BUTTON */
.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #ffffff;
  color: #1e88e5;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

/* ================= MOBILE FIX ================= */

@media (max-width: 900px) {
  .commodities-grid {
    grid-template-columns: 1fr;
  }

  .commodity-card img {
    height: 210px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }
}
/* ===== FIX IMAGE TOUCHING EDGES (MOBILE + DESKTOP) ===== */

/* Card container */
.commodity-card {
  padding: 14px;              /* space from all sides */
  background: #ffffff;
  border-radius: 16px;
}

/* Image wrapper */
.commodity-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;        /* smooth corners */
  display: block;
}

/* Content spacing */
.commodity-content {
  padding: 18px 6px 10px;     /* top right bottom left */
}
/* ===== TRUST + SALES SECTION WRAPPER ===== */
.trust-sales {
  background: linear-gradient(180deg, #071a2f, #0a192f);
  padding: 90px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

/* ===== CARD BASE ===== */
.trust-card,
.sales-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 34px 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ===== HEADINGS ===== */
.trust-card h2,
.sales-card h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: #0a192f;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Gold vertical bar */
.trust-card h2::before,
.sales-card h2::before {
  content: "";
  width: 4px;
  height: 26px;
  background: #d4af37;
  border-radius: 2px;
}

/* ===== BULLET LIST ===== */
.trust-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-card li {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 14px;
  padding-left: 24px;
  position: relative;
}

.trust-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4af37;
  font-weight: 700;
}

/* ===== SUB HEADING ===== */
.trust-card h3 {
  margin-top: 28px;
  margin-bottom: 14px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0a192f;
}

/* ===== SALES INFO TEXT ===== */
.sales-card p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== FORM INPUTS ===== */
.sales-card input,
.sales-card select,
.sales-card textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fafafa;
}

.sales-card input:focus,
.sales-card select:focus,
.sales-card textarea:focus {
  outline: none;
  border-color: #d4af37;
  background: #ffffff;
}

/* ===== SEND BUTTON ===== */
.sales-card button {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  background: #d4af37;
  color: #0a192f;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sales-card button:hover {
  background: #0a192f;
  color: #ffffff;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 900px) {
  .trust-sales {
    grid-template-columns: 1fr;
    padding: 70px 16px;
  }

  .trust-card,
  .sales-card {
    padding: 28px 22px;
  }
}
/* ===== ABOUT INTRO – PREMIUM FIX ===== */
.about-section {
  background: #f5f7fa;
  padding: 70px 16px;
}

.about-section .container {
  max-width: 760px;          /* 🔥 NOT FULL WIDTH */
  margin: auto;
  background: #ffffff;
  padding: 42px 28px;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  text-align: center;
}

/* TITLE */
.about-section h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #0a192f;
  margin-bottom: 14px;
}

/* GOLD LINE */
.about-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #d4af37;
  margin: 12px auto 22px;
  border-radius: 2px;
}

/* TEXT */
.about-section p {
  font-size: 1rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 14px;
}

/* MOBILE POLISH */
@media (max-width: 600px) {
  .about-section .container {
    padding: 34px 22px;
  }

  .about-section h2 {
    font-size: 1.6rem;
  }

  .about-section p {
    font-size: 0.95rem;
  }
}
/* ===============================
   MOBILE NAVIGATION (FINAL)
=============================== */

@media (max-width: 768px) {

  body.menu-open {
    overflow: hidden;
  }

  .menu-btn {
    display: block;
    z-index: 1100;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    background: linear-gradient(180deg, #071a2f 0%, #0a2540 100%);
    padding-top: 100px;

    display: flex;
    flex-direction: column;
    align-items: center;

    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1050;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    margin: 14px 0;
  }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  /* Submenu */
  .has-submenu .submenu {
    background: #0b2a4a;
    margin-top: 10px;
    padding: 10px 0;
    border-radius: 8px;
    width: 85%;
    text-align: center;
    display: none;
  }

  .has-submenu.open .submenu {
    display: block;
  }

  .submenu li {
    margin: 10px 0;
  }
}
@media (max-width: 768px) {
  /* mobile styles */
}

/* ===========================
   NAVBAR FIX (GLOBAL)
   =========================== */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
}

.logo {
  position: relative;
  z-index: 1300;
}
/* ===== LOGO VISIBILITY FIX (FINAL) ===== */

.logo {
  color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 600;
}

#navbar {
  background: linear-gradient(180deg, #071a2f 0%, #0a2540 100%);
}

/* Keep logo always above menu overlay */
.logo {
  position: relative;
  z-index: 1301;
  display: flex;
  align-items: center;
  gap: 6px; /* controls space between icon and text */
}

/* Mobile menu should NOT cover navbar */
.nav-links {
  z-index: 1200;
}
.logo span {
  color: #c9a227;
  letter-spacing: 0 !important;
  word-spacing: 0;
  white-space: nowrap;
}
/* =========================
   NAVBAR HIDE ON SCROLL
========================= */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.3s ease-in-out;
  z-index: 1200;
}

/* When hidden */
#navbar.hide {
  transform: translateY(-100%);
}

/* ===============================
   MOBILE SIDE DRAWER NAV
================================ */

@media (max-width: 768px) {

  body.menu-open {
    overflow: hidden;
  }

  /* Overlay */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1100;
  }

  body.menu-open .menu-overlay {
    opacity: 1;
    pointer-events: all;
  }

  /* Side drawer */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;

    width: 75%;
    max-width: 320px;
    height: 100vh;

    background: linear-gradient(180deg, #071a2f, #0a2540);
    padding: 100px 25px 30px;

    display: flex;
    flex-direction: column;
    gap: 22px;

    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1200;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 1px;
    color: #fff;
  }

  /* Submenu */
  .has-submenu .submenu {
    margin-top: 10px;
    background: #0b2a4a;
    border-radius: 8px;
    padding: 10px 0;
    display: none;
  }

  .has-submenu.open .submenu {
    display: block;
  }

  .submenu li {
    padding: 8px 0;
  }

    }
@media (max-width: 768px) {

  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 65px;
    right: 12px;
    width: 200px;

    background: #0a2540;
    border-radius: 10px;
    padding: 12px 0;

    display: none;
    flex-direction: column;
    align-items: center;

    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links a {
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
  }
}
/* =========================
   ABOUT SECTION LAYOUT FIX
========================= */

.about-section {
  background: #f7f9fc;
  padding: 60px 16px;
}

.about-block {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.about-block p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 12px;
}

/* Title underline (gold) */
.section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #d4af37;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Mobile polish */
@media (max-width: 768px) {
  .about-block {
    padding: 28px 20px;
  }
}
.about-btn-wrap {
  text-align: center;
  margin-top: 20px;
}

.about-btn {
  display: inline-block;
  padding: 12px 28px;

  background: #d4af37; /* gold */
  color: #071a2f;

  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;

  border-radius: 8px;
  text-decoration: none;

  transition: all 0.25s ease;
}

.about-btn:hover {
  background: #c19b2e;
  transform: translateY(-2px);
}
/* Compact Sales Inquiry Form */
.sales-inquiry,
.contact-form {
  padding: 20px !important;
}

.sales-inquiry input,
.sales-inquiry textarea {
  padding: 10px 12px;
  font-size: 14px;
}

.sales-inquiry textarea {
  min-height: 90px;
}

.sales-inquiry .form-group {
  margin-bottom: 12px;
}

.sales-inquiry button {
  padding: 12px;
  font-size: 15px;
}
/* FOOTER */
.site-footer {
  background: #0b1f33;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.site-footer h3,
.site-footer h4 {
  color: #d4af37; /* gold */
  margin-bottom: 12px;
}

.site-footer p {
  font-size: 14px;
  line-height: 1.6;
  color: #d0d6dc;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #d4af37;
  color: #000;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #d0d6dc;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #d4af37;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}
.footer-contact {
  margin-top: 15px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #cfd8e3;
}

.contact-row i {
  color: #d4af37; /* gold */
  font-size: 15px;
  min-width: 18px; /* forces left edge alignment */
}

.contact-row span {
  line-height: 1.5;
}
.footer {
  background: #071a2f;
  color: #cfd6df;
  padding: 40px 20px 15px;
}

.footer-wrap {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-block h3,
.footer-block h4 {
  color: #d4af37;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.footer-block p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 520px;
}

.footer-contact,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  font-size: 0.95rem;
}

.footer-contact i {
  color: #d4af37;
  width: 18px;
}

.footer-links li {
  margin: 6px 0;
}

.footer-links a {
  color: #cfd6df;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 25px;
  padding-top: 12px;
  text-align: left;
  font-size: 0.85rem;
  color: #9aa4b2;
}

/* Desktop improvement */
@media (min-width: 768px) {
  .footer-wrap {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-dark {
  background: #07162c;
  color: #cfd6df;
  padding: 50px 20px 20px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 35px;
}

.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-list.check li::before {
  content: "✓";
  color: #2ea6ff;
  margin-right: 8px;
}

.footer-note {
  font-size: 13px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #9aa4b2;
}

/* Desktop */
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
.contact-section {
  background: #f5f7fa;   /* light professional grey */
  padding: 60px 15px;
}

.contact-card {
  max-width: 420px;
  margin: auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.contact-subtitle {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-bottom: 6px;
}

.contact-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 22px;
  color: #000;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1b6fd8;
}

.contact-form button {
  width: 100%;
  padding: 13px;
  background: #d4af37;   /* gold – matches your site */
  color: #111;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: #c9a633;
}

.contact-note {
  text-align: center;
  font-size: 14px;
  margin-top: 18px;
  color: #444;
  line-height: 1.6;
}
/* TRUST + CONTACT SECTION */
.trust-contact {
  background: #071a2d;
  padding: 70px 20px;
}

.trust-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.trust-box,
.contact-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
}

.trust-box h3,
.contact-box h3 {
  color: #0a2540;
  margin-bottom: 20px;
}

.trust-box ul {
  list-style: none;
  padding: 0;
}

.trust-box li {
  padding: 8px 0;
  font-size: 15px;
  color: #333;
  position: relative;
  padding-left: 20px;
}

.trust-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c9a227;
  font-weight: bold;
}

/* FORM */
.contact-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-box input,
.contact-box textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.contact-box textarea {
  min-height: 90px;
  resize: none;
}

.contact-box button {
  background: #c9a227;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.direct-contact {
  margin-top: 15px;
  font-size: 14px;
  color: #444;
}

/* MOBILE */
@media (max-width: 768px) {
  .trust-container {
    grid-template-columns: 1fr;
  }
}
.direct-contact {
  display: none !important;
}
.footer-contact {
  text-align: center;
  margin-top: 20px;
}

.footer-contact h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-contact p {
  color: #cfd8e3;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.form-success {
  display: none;
  margin-top: 15px;
  padding: 12px 16px;
  background: #e8f9ee;
  color: #1e7e34;
  border: 1px solid #28a745;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  animation: fadeIn 0.4s ease-in-out;
}

.form-success .check-icon {
  font-size: 18px;
  margin-right: 6px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}
.form-success {
  display: none;
  margin-top: 15px;
  padding: 12px;
  border-radius: 6px;
  background: #e9f9ef;
  color: #1e7e34;
  font-weight: 600;
  text-align: center;
}

.form-success .check-icon {
  color: #28a745;
  font-size: 18px;
  margin-right: 6px;
}
/* Success message - clean & professional */
.form-success {
  display: none;
  margin-top: 12px;
  padding: 10px;
  background: #e8f8ee;
  color: #1e7e34;
  border-left: 4px solid #28a745;
  border-radius: 4px;
  font-size: 14px;
}

.form-success .check-icon {
  font-weight: bold;
  margin-right: 6px;
}
/* =========================
   LOGO IMAGE FIX (FINAL)
   ========================= */

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Text beside logo */
.logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 2px;
}

.logo-text span {
  color: #d4af37;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .site-logo {
    height: 34px;
  }
}
/* loading spinner */
.btn-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

#submitBtn.loading .btn-text {
  display: none;
}

#submitBtn.loading .btn-loader {
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
/* ==== Mobile Menu (COMPACT DROPDOWN) ==== */
.mobile-nav {
  position: fixed;
  top: 70px; /* below header */
  left: 0;
  width: 100%;
  background: #0a1d2f;
  z-index: 2000;
  display: none;
  flex-direction: column;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.mobile-nav a {
  padding: 14px 20px;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 16px;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  background: #caa83a;
  color: #000;
}

.mobile-nav.active {
  display: flex;
}

/* Mobile only */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
    cursor: pointer;
  }
}
.site-footer {
  background: linear-gradient(180deg, #071a33, #041225);
  color: #cfd8e3;
  padding: 50px 20px 20px;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-brand img {
  width: 50px;
  margin-bottom: 10px;
}

.footer-brand h3 {
  color: #f4c430;
  margin-bottom: 5px;
}

.footer-brand p {
  font-size: 14px;
  opacity: 0.85;
}

.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.9;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand img {
    margin: auto;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3000;
} 
@media (max-width: 768px) {
  .logo span {
    letter-spacing: 0 !important;
    word-spacing: 0;
  }
}
/* ==== FORCE LOGO TEXT SPACING FIX ==== */
.logo,
.logo span,
.logo a {
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
  text-transform: none !important;
}

/* If logo text is uppercase, keep uppercase but no gap */
.logo span {
  text-transform: uppercase;
}

/* Ensure logo layout stays tight */
.logo {
  display: flex;
  align-items: center;
  gap: 4px; /* space only between icon and text */
}
/* ===== LOGO TEXT FINAL FIX ===== */
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
  white-space: nowrap;
}

.logo-text span {
  letter-spacing: 0 !important;
  margin-left: 0;
  padding-left: 0;
}
/* ===== LOGO SIZE ADJUST (MOBILE + DESKTOP) ===== */

/* Logo wrapper */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo image */
.site-logo {
  height: 38px; /* ⬅ reduce logo icon size */
  width: auto;
}

/* Logo text */
.logo-text {
  font-size: 18px;        /* ⬅ reduced from big size */
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

/* INDUSTRIAL highlight */
.logo-text span {
  font-size: 18px;
}

/* 📱 Mobile specific (important) */
@media (max-width: 768px) {
  .site-logo {
    height: 32px;        /* smaller icon on mobile */
  }

  .logo-text {
    font-size: 16px;     /* perfect mobile size */
  }

  .logo-text span {
    font-size: 16px;
  }
}
/* ================= HOW WE WORK ================= */
.how-we-work {
  background: #ffffff;
  padding: 80px 8%;
  max-width: 1200px;
  margin: 0 auto 80px;
}

.how-we-work h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #0a192f;
  margin-bottom: 40px;
}

.how-we-work ol {
  counter-reset: step;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.how-we-work li {
  background: #f5f7fa;
  padding: 26px;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  position: relative;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
}

.how-we-work li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -14px;
  left: 20px;
  background: #d4af37;
  color: #0a192f;
  font-weight: 800;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= EXPORT DOCUMENTATION ================= */
.export-docs {
  background: #0a192f;
  padding: 80px 8%;
  color: #ffffff;
}

.export-docs h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
}

.export-docs ul {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 30px;
  list-style: none;
  padding: 0;
}

.export-docs li {
  background: rgba(255,255,255,0.08);
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  position: relative;
  padding-left: 36px;
}

.export-docs li::before {
  content: "✔";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #d4af37;
  font-weight: bold;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 900px) {

  .how-we-work ol {
    grid-template-columns: 1fr;
  }

  .export-docs ul {
    grid-template-columns: 1fr;
  }

  .how-we-work,
  .export-docs {
    padding: 60px 20px;
  }
}
