/* ============================================================
   ROSEX EMPREENDIMENTOS — Global Stylesheet
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --green: #98ca46;
  --green-dark: #5a9e32;
  --gold: #c9922a;
  --dark: #2d2d2d;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --text-gray: #9999b3;
  --text-dark: #707271;
  --border: #e0e0e0;
  --font: "Segoe UI", Arial, sans-serif;
  --max-w: 1200px;
  --transition: 0.3s ease;
  --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font);
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input,
textarea {
  font-family: inherit;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Utility ---------- */
.section-label {
  color: #96c846;
  font-family: "Spartan", Sans-serif;
  font-size: 22px;
  font-weight: 500;
  /* text-transform: uppercase; */
  /* margin-bottom: 6px; */
  /* font-family: "Times New Roman", Times, serif; */
}
.section-label2 {
  display: block;
  font-size: 1.52rem;
  color: var(--green);
  font-weight: 400;
  letter-spacing: 1.5px;
  margin-bottom: -25px;
}
.underline-green {
  width: 90px;
  height: 4px;
  background: #fb9715;
  margin: 12px 0 22px;
}
.underline-green.center {
  margin: 12px auto 22px;
}

.btn {
  display: inline-block;
  padding: 14px 56px;
  border-radius: 11px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-dark);
}
.btn-outline {
  border: 2px solid var(--green);
  color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow);
}

/* ---- Top bar ---- */
.top-bar {
  background: var(--light-gray);
  border-bottom: 1px solid var(--border);
  padding: 5px 0;
  font-size: 0.78rem;
  color: var(--text-gray);
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-left .sep {
  color: var(--border);
}
.top-bar-right {
  font-size: 0.78rem;
}
.lang-btn {
  color: var(--text-gray);
  font-size: 0.78rem;
  text-decoration: none;
  transition: color var(--transition);
}
.lang-btn:hover {
  color: var(--green);
}
.lang-active {
  color: var(--green);
  font-weight: 600;
}

/* ---- Main nav row ---- */
.main-nav {
  padding: 8px 0;
}
.main-nav .container {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hamburger — always visible, sits left */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
  flex-shrink: 0;
  transition: var(--transition);
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Search bar — center, grows */
.nav-search {
  flex: 1;
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}
.nav-search input {
  width: 100%;
  padding: 9px 44px 9px 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
}
.nav-search input:focus {
  border-color: var(--green);
}
.nav-search .search-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-gray);
  font-size: 0.95rem;
  padding: 0;
}
.nav-search .search-btn:hover {
  color: var(--green);
}

/* Logo — right side */
.nav-logo {
  flex-shrink: 0;
}
.nav-logo img {
  height: 60px;
  width: auto;
}

/* ---- Dropdown nav panel ---- */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 999;
}
.nav-dropdown.open {
  display: block;
}

.nav-dropdown > li {
  position: relative;
}
.nav-dropdown > li > a {
  display: block;
  padding: 12px 20px;
  font-size: 0.9rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-dropdown > li:last-child > a {
  border-bottom: none;
}
.nav-dropdown > li > a:hover,
.nav-dropdown > li > a.active {
  color: var(--white);
  background: var(--green);
}

/* Has submenu indicator */
.nav-dropdown > li.has-sub > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-dropdown > li.has-sub > a::after {
  content: "›";
  font-size: 1.1rem;
  line-height: 1;
}
.nav-dropdown > li.has-sub > a.sub-open,
.nav-dropdown > li.has-sub:hover > a {
  color: var(--white);
  background: var(--green);
}

/* Sub-menu (flyout right) */
.nav-submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 998;
}
.nav-dropdown > li.has-sub:hover .nav-submenu,
.nav-dropdown > li.has-sub .nav-submenu.open {
  display: block;
}
.nav-submenu li a {
  display: block;
  padding: 10px 18px;
  font-size: 0.85rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-submenu li:last-child a {
  border-bottom: none;
}
.nav-submenu li a:hover {
  background: var(--green);
  color: var(--white);
}

/* Wrapper for hamburger + dropdown */
.nav-menu-wrap {
  position: relative;
  flex-shrink: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 600px;
  background-image: url("../images/home/banner.png");
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 60px 0;
}
.hero-content h1 {
  color: #96c846;
  font-family: "Spartan", Sans-serif;
  font-size: 110px;
  font-weight: 600;
}
.hero-content .hero-sub {
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 3px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 6px;
  font-family: "Times New Roman", Times, serif;
  text-align: center;
}
.hero-content p {
  color: #ffffff;
  font-family: "Spartan", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  margin: 24px 0px 30px 0px;
  width: 60%;
}
.main-hero-p {
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 3px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: -16px;
  font-family: "Times New Roman", Times, serif;
  text-align: center;
  display: flex;
  justify-content: center;
}

.home-btn {
  text-align: center;
  padding-top: 32px;
}
.home-about-text {
  text-align: justify;
  color: #808080;
  font-family: "Spartan", Sans-serif;
  font-size: 13px;
  line-height: 2.3em;
}
.home-about-inner-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: center;
}
/* ============================================================
   ABOUT ROSEX SECTION
   ============================================================ */
.home-about {
  background: var(--white);
  padding: 60px 0;
}
.home-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.home-about-heading-wrap {
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

.home-about-heading-wrap div:nth-of-type(2) {
  padding-left: 78px;
  padding-top: 20px;
}

.home-about-heading-wrap h2 {
  font-size: 47px;
  font-weight: 500;
  /* margin-top: 40px; */
  color: #000000;
  font-family: "Times New Roman", Times, serif;
}

.home-about-watermark {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(109, 179, 63, 0.09);
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}
/* .home-about-text h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-top: -8px;
  margin-bottom: 6px;
} */
.home-about-line {
  width: 100%;
  margin: 10px 0 18px;
}
.home-about-text p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.85;
}
.home-about-img {
  display: flex;
  justify-content: end;
  align-items: center;
}
.home-about-img img {
  max-width: 100%;
  padding-top: 28px;
}

/* ============================================================
   SHIPMENT SECTION
   ============================================================ */
.home-shipment {
  background: #d6d0d0;
  padding: 60px 0;
}
.home-shipment-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 160px;
  align-items: center;
}
.home-shipment-img img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
}
.home-shipment-text h2 {
  font-size: 3rem;
  font-weight: 500;
  margin-top: -8px;
  color: #000000;
  font-family: "Times New Roman", Times, serif;
  line-height: 1.05;
}
.home-shipment-text p {
  color: #666666;
  font-family: "Spartan", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 32px;
  margin-top: 10px;
}
.home-shipment-text .btn {
  margin-top: 22px;
}

/* ============================================================
   FREIGHT / 4-ICONS SECTION
   ============================================================ */
.home-freight {
  background: var(--white);
  padding: 65px 0;
  text-align: center;
}
.home-freight h2 {
  font-size: 3.2rem;
  font-weight: 500;
  margin: 38px 0px;
  color: #000000;
  font-family: "Times New Roman", Times, serif;
  line-height: 43px;
}
.home-freight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  /* max-width: 760px; */
  margin: 0 auto;
}
.home-freight-item img {
  width: 122px;
  height: 122px;
  object-fit: contain;
  margin: 44px auto 14px auto;
}
.home-freight-item span {
  color: #333333;
  font-family: "Spartan", Sans-serif;
  font-size: 25px;
  font-weight: 500;
}

/* ============================================================
   SUSTAINING OUR FUTURE
   ============================================================ */
.home-sustaining {
  background: var(--light-gray);
  padding: 60px 0;
}
.home-sustaining-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.home-sustaining-text h2 {
  font-size: 3rem;
  font-weight: 500;
  margin-top: -8px;
  color: #000000;
  font-family: "Times New Roman", Times, serif;
  line-height: 1.05;
}
.home-sustaining-text p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.85;
  margin-top: 8px;
  padding-right: 100px;
}
.home-sustaining-text .btn {
  margin-top: 22px;
}
.home-sustaining-img img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
  border-radius: 6px;
}

/* ============================================================
   ROSEX PRODUCTS
   ============================================================ */
.home-products {
  background: var(--white);
  padding: 65px 0;
}
.home-products-header {
  text-align: center;
  margin-bottom: 24px;
}
.home-products-header h2 {
  font-size: 3rem;
  font-weight: 500;
  margin-top: 18px;
  color: #000000;
  font-family: "Times New Roman", Times, serif;
  line-height: 1.05;
}

.home-products-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.ptab {
  background-color: #fff;
  border: 1px #b0b0b0 solid;
  border-radius: 15px;
  text-transform: capitalize;
  font-size: 15px;
  color: #000;
  padding: 1px 30px;
  margin: 0px 5px;
}
.ptab.active,
.ptab:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.home-products-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 50px;
}
.home-products-slider {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.home-product-item {
  text-align: center;
}
.home-product-item img {
  width: 150px;
  height: 132px;
  object-fit: contain;
  margin: 0 auto 10px;
}
.home-product-item span {
  font-size: 0.82rem;
  color: var(--text-gray);
}
.slider-arrow {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  cursor: pointer;
  opacity: 0.5;
  transition: var(--transition);
}
.slider-arrow:hover {
  opacity: 1;
}

/* ============================================================
   ROSEX GALLERY
   ============================================================ */
.home-gallery {
  /* background: var(--light-gray); */
  padding: 65px 0;
}
.home-gallery-header {
  text-align: center;
  margin-bottom: 28px;
}
.home-gallery-header h2 {
  font-size: 3rem;
  font-weight: 500;
  margin-top: 18px;
  color: #000000;
  font-family: "Times New Roman", Times, serif;
  line-height: 1.05;
}

.home-gallery-strip {
  display: flex;
  align-items: center;
  gap: 14px;
}
.g-arrow {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  cursor: pointer;
  opacity: 0.45;
  transition: var(--transition);
}
.g-arrow:hover {
  opacity: 1;
}

.home-gallery-photos {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.home-gallery-photos img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
}
.home-gallery-dots {
  text-align: center;
  margin-top: 18px;
}
.home-gallery-dots img {
  height: 22px;
  margin: 0 auto;
}

/* ============================================================
   OUR MANAGEMENT
   ============================================================ */
.home-mgmt {
  background: var(--white);
  padding: 65px 0;
}
.home-mgmt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.home-mgmt-text h2 {
  font-size: 3rem;
  font-weight: 500;
  margin-top: 18px;
  color: #000000;
  font-family: "Times New Roman", Times, serif;
  line-height: 1.05;
}
.home-mgmt-text p {
  text-align: justify;
  color: #666666;
  font-family: "Spartan", Sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 26px;
}
.home-mgmt-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.home-mgmt-photos .photo-tall {
  grid-row: span 2;
}
.home-mgmt-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  min-height: 160px;
}
.photo-green-block {
  background: var(--green);
  border-radius: 4px;
  min-height: 160px;
}
.obj-img {
  display: flex;
  justify-content: end;
}
/* ============================================================
   LOGISTICS SOLUTION
   ============================================================ */
.home-logistics {
  /* background: var(--light-gray); */
  /* padding: 65px 0; */
}
.home-logistics-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.home-logistics-left {
  position: relative;
}
.wh-photo {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 6px;
}
.wh-icon {
  margin-top: 40px;
  margin-bottom: 20px;
  display: flex;
  justify-content: end;
}
.home-logistics-right h2 {
  font-size: 3rem;
  font-weight: 500;
  margin-top: 18px;
  color: #000000;
  font-family: "Times New Roman", Times, serif;
  line-height: 1.05;
}
.home-logistics-right p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.85;

  margin-top: 10px;
}
.home-logistics-right .btn {
  margin-top: 22px;
}

/* ============================================================
   CTA GREEN BAR
   ============================================================ */
.home-cta-bar {
  background: var(--green);
  padding: 22px 0;
}
.home-cta-bar .container {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.home-cta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}
.home-cta-item i {
  font-size: 1.1rem;
}
.home-cta-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.38);
  flex-shrink: 0;
}

/* ============================================================
   BLOG INSIGHTS
   ============================================================ */
.home-blog {
  background: var(--white);
  padding: 65px 0;
}
.home-blog-header {
  margin-bottom: 30px;
}
.home-blog-header h2 {
  font-size: 3rem;
  font-weight: 500;
  /* margin-top: 18px; */
  color: #000000;
  font-family: "Times New Roman", Times, serif;
  line-height: 1.05;
}
.readmorefirst {
  color: #5a9e32;
  border: 1px solid #5a9e32;
  border-radius: 23%;
  padding: 14px 40px;
  margin-top: 40px;
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.home-blog-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background-color: #efefef;
  padding: 20px;
}
.readmore {
  font-weight: 500;
  font-size: 0.875em;
  padding-left: 14px;
}
.home-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.11);
}
.home-blog-card-img {
  width: 100%;
  height: 165px;
  object-fit: cover;
}
.home-blog-card-body {
  padding: 16px;
}
.home-blog-card-body {
  color: #808080;
  font-family: "Spartan", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 33px;
}
.blog-tag {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 8px;
}
.home-blog-card-body h3 {
  color: #000000;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  font-weight: 600;
}
.home-blog-card-body p {
  font-family: "Spartan", Sans-serif;
  font-size: 15px;
  line-height: 1.879em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: #ccc;
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 40px;
}
.footer-brand img {
  height: 86px;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.75;
  color: #aaa;
  max-width: 230px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  opacity: 0.85;
  transition: var(--transition);
}
.footer-social a:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.footer-social img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links ul li a {
  font-size: 0.88rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}
/* .footer-links ul li a::before {
  content: "›";
  color: var(--green);
  font-size: 1.15rem;
  line-height: 1;
}
.footer-links ul li a:hover {
  color: var(--green);
  padding-left: 4px;
} */
.footer-links i {
  color: #c9922a;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 13px;
}
.footer-contact-item img {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.86rem;
  color: #aaa;
  line-height: 1.55;
}
.footer-contact-item a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 16px 0;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
}

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.page-banner {
  position: relative;
  height: 350px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
}
.page-banner-content {
  position: relative;
  z-index: 1;
}
.page-banner-content h1 {
  font-size: 7rem;
  font-weight: 900;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
}
.page-banner-content p {
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 3px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 6px;
  font-family: "Times New Roman", Times, serif;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.who-we-are {
  background: var(--white);
  padding: 65px 0;
}
.who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.who-heading-wrap {
  position: relative;
  margin-bottom: 4px;
}
.who-watermark {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(109, 179, 63, 0.09);
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}
.who-heading-wrap {
  position: relative;
  margin-bottom: 4px;
}
.who-watermark {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(109, 179, 63, 0.09);
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}
.who-text h2 {
  font-size: 3rem;
  font-weight: 500;
  margin-top: -8px;
  color: #000000;
  font-family: "Times New Roman", Times, serif;
}
.who-text p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.85;
  margin-top: 14px;
}

/* Who we are — green block + composite image overlay */
.who-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.who-green-bg {
  height: auto;
  text-align: center;
  display: block;
  margin-left: auto;
  border-radius: 4px;
}
.who-composite {
  position: absolute;
  top: 60px;
  left: 100px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.18));
}

/* Objectives section */
.objectives-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.objectives-img img {
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.objectives-heading-wrap {
  /* display: flex;
  align-items: flex-start;
  justify-content: space-between; */
  gap: 16px;
  margin-bottom: 4px;
}
.obj-watermark {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(109, 179, 63, 0.1);
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}
.objectives-heading-wrap h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-top: -6px;
}
.obj-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
  display: flex;
  justify-content: end;
}

.video-section {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.play-btn {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.play-btn::after {
  content: "";
  border-style: solid;
  border-width: 14px 0 14px 26px;
  border-color: transparent transparent transparent var(--green);
  margin-left: 5px;
}
.play-btn:hover {
  background: var(--green);
}
.play-btn:hover::after {
  border-color: transparent transparent transparent var(--white);
}

.objectives-section {
  background: var(--light-gray);
  padding: 65px 0;
}
.objectives-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.objectives-text h2 {
  font-size: 3rem;
  font-weight: 500;
  margin-top: 8px;
  text-align: end;
  color: #000000;
  font-family: "Times New Roman", Times, serif;
}
.objectives-text p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.85;
  margin-top: 14px;
  text-align: end;
}
.objectives-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.objectives-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-gray);
}
.objectives-list li i {
  color: var(--green);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.what-we-provide {
  background: var(--white);
  padding: 65px 0;
}
.what-we-provide-header {
  text-align: center;
  margin-bottom: 34px;
}
.what-we-provide-header h2 {
  font-size: 3rem;
  font-weight: 500;
  margin-top: 8px;
  /* text-align: end; */
  color: #000000;
  font-family: "Times New Roman", Times, serif;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
}
.service-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.service-card-img {
  height: 160px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-body {
  padding: 16px 16px 0px 16px;
  margin-bottom: -17px;
}
.service-card-body .svc-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}
.ser-icon {
  /* margin-left: 20px; */
  position: relative;
  top: 34px;
  left: 20px;
}
.service-card-body h3 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 6px 6px 0px 6px;
  color: #000000;
  font-family: "Times New Roman", Times, serif;
}
.service-card-body p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}
.ser-bg {
  text-align: center;
}
.other-services {
  background: var(--light-gray);
  padding: 65px 0;
}
.other-services-header {
  text-align: center;
  margin-bottom: 30px;
}
.other-services-header h2 {
  font-size: 3rem;
  font-weight: 500;
  margin-top: 8px;
  /* text-align: end; */
  color: #000000;
  font-family: "Times New Roman", Times, serif;
}
.bg-div {
  display: flex;
  justify-content: center;
  position: relative;
  top: 360px;
}
.ser-bg {
  width: 80%;
  height: 200px;
}
.other-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.other-service-item {
  background: var(--white);
  border-right: 1px solid var(--border);
  padding: 28px 16px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.other-service-item:last-child {
  border-right: none;
}

.other-service-item img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin: 0 auto 12px;
  transition: var(--transition);
}
.other-service-item span {
  font-size: 1.1rem;
  color: rgb(100, 100, 100);
  display: block;
  line-height: 1.4;
  transition: var(--transition);
  font-weight: 500;
}

.our-work {
  background: var(--white);
  padding: 65px 0;
}
.our-work-header {
  text-align: center;
  margin-bottom: 30px;
}
.our-work-header h2 {
  font-size: 3rem;
  font-weight: 500;
  margin-top: 8px;
  color: #000000;
  font-family: "Times New Roman", Times, serif;
}

.work-gallery-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.work-gallery {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.work-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  transition: var(--transition);
}
.work-gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.work-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.work-dot {
  width: 28px;
  height: 7px;
  border-radius: 4px;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.work-dot.active {
  background: var(--green);
}

.services-cta {
  /* background: var(--light-gray); */
  padding: 48px 0;
  text-align: center;
}
.services-cta p {
  font-size: 1.2rem;
  color: var(--text-gray);
}

.services-cta a:hover {
  text-decoration: underline;
}
.services-cta .btn {
  margin-top: 20px;
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.rosex-products {
  background: var(--white);
  padding: 65px 0;
}
.rosex-products-header {
  text-align: center;
  margin-bottom: 24px;
}
.rosex-products-header h2 {
  font-size: 3rem;
  font-weight: 500;
  margin-top: -8px;
  color: #000000;
  font-family: "Times New Roman", Times, serif;
}

.products-filter-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 34px;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-btn {
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: rgb(100, 100, 100);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.products-main-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product-card {
  text-align: center;
  padding: 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow);
}
.product-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 10px;
}
.product-card span {
  font-size: 1.2rem;
  color: rgb(100, 100, 100);
  font-weight: 500;
}

.products-promo-img-wrap {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.products-promo-full-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 376px;
  object-fit: cover;
}

.rosex-products-2 {
  padding-top: 30px;
}

.products-cta {
  background: var(--white);
  padding: 28px 0 50px;
  text-align: center;
}
.products-cta p {
  font-size: 1.4rem;
  color: var(--text-gray);
}
.anchor-tag {
  margin-top: -10px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  background: var(--white);
  padding: 65px 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 164px;
}
.contact-form-wrap h2 {
  font-size: 2.6rem;
  font-weight: 400;
  margin-bottom: 26px;
  font-family: serif;
}
.form-group {
  margin-bottom: 14px;
}
.btn-contact {
  text-align: center;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 20px 16px;
  border: 1px solid #c8c5c5;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(109, 179, 63, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 200px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}
.form-success {
  display: none;
  background: rgba(109, 179, 63, 0.1);
  border: 1px solid var(--green);
  color: var(--green);
  padding: 12px 16px;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 14px;
}
.form-success.show {
  display: block;
}
.form-error {
  display: none;
  background: rgba(231, 76, 60, 0.08);
  border: 1px solid #e74c3c;
  color: #e74c3c;
  padding: 12px 16px;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 14px;
}
.form-error.show {
  display: block;
}
.contact-info h3 {
  font-size: 2.45rem;
  font-weight: 100;
  color: var(--green);
  margin-bottom: 22px;
  font-family: sans-serif;
  padding-top: 40px;
}
.contact-info-item {
  margin-bottom: 30px;
  padding-left: 14px;
}
.contact-info-item h4 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.contact-info-item p,
.contact-info-item a {
  font-size: 0.9rem;
  color: #a3a3a3;
  line-height: 1.6;
  font-family: sans-serif;
}
.contact-info-item a:hover {
  color: var(--green);
}
.map-section iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
}
.home-blog-header {
  padding-top: 0px;
}
/* ============================================================
   PAGE-SPECIFIC BACKGROUNDS
   ============================================================ */
.about-banner {
  background-image: url("../images/about/banner.png");
}
.about-video {
  background-image: url("../images/about/Asset 6.png");
}
.services-banner {
  background-image: url("../images/services/Asset 1.png");
}
.services-video {
  background-image: url("../images/services/Asset 14.png");
}
.products-banner-bg {
  background-image: url("../images/products/Asset 1.png");
}
.products-promo-bg {
  background-image: url("../images/products/banner 2.png");
}
.contact-banner {
  background-image: url("../images/contact/Asset 1.png");
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .home-freight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .other-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-main-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .who-img-wrap {
    padding-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .home-blog-header {
    padding-top: 0px;
  }
  .wh-icon {
    margin-top: 40px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }
  .home-products-tabs {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .home-about-line {
    height: 2px;
  }
  .home-about-img {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
  }
  .ptab {
  }
  .home-about-inner-home {
    grid-template-columns: 1fr;
  }
  .home-about-heading-wrap div:nth-of-type(2) {
    padding-left: 0px;
    padding-top: 14px;
    width: 100%;
  }
  .home-about-heading-wrap {
    display: flex;
    justify-content: start;
    /* align-items: center; */
    flex-direction: column;
    align-items: start;
  }
  .hero-content p {
    width: 100% !important;
  }
  .main-hero-p {
    font-size: 1.5rem;
    padding-top: 10px;
  }
  .top-bar {
    display: none;
  }
  .nav-search {
    max-width: 100%;
  }

  .home-about-inner,
  .home-shipment-inner,
  .home-sustaining-inner,
  .home-mgmt-inner,
  .home-logistics-inner,
  .who-inner,
  .objectives-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-freight-grid {
    grid-template-columns: 1fr;
  }
  .home-products-slider {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-gallery-photos {
    grid-template-columns: 1fr 1fr;
  }
  .home-blog-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .other-services-grid {
    grid-template-columns: repeat(3, 1fr);
    border-radius: 0;
  }
  .work-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .products-main-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .page-banner {
    height: 220px;
  }
  .page-banner-content h1 {
    font-size: 2.5rem;
  }
  .home-cta-bar .container {
    flex-direction: column;
    gap: 14px;
  }
  .home-cta-divider {
    display: none;
  }
  .who-composite {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
  }
  .who-green-bg {
    display: none;
  }
  .objectives-heading-wrap {
    flex-direction: column;
  }
  .obj-watermark {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    width: 100% !important;
  }
  .home-products-slider {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-gallery-photos {
    grid-template-columns: 1fr;
  }
  .other-services-grid {
    grid-template-columns: 1fr;
  }
  .work-gallery {
    grid-template-columns: 1fr;
  }
  .products-main-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .work-gallery-wrap {
    flex-direction: column;
  }
}

.top-support {
  background: #8bc34a;
  padding: 50px 20px;
  color: white;
  font-family: Arial, sans-serif;
  margin-top: 20px;
}

.support-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 30px;
}

.support-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon {
  font-size: 32px;
}

.small {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: -10px;
}

.div-h3 h3 {
  margin: 0;
  font-size: 44px;
  font-weight: 500;
  font-family: "Times New Roman", Times, serif;
}

.divider {
  width: 120px;
  border: 0;
  border-top: 2px solid white;
}

.support-right {
  text-align: left;
  font-size: 28px;
  font-weight: 400;
  font-family: "Times New Roman", Times, serif;
}

/* Responsive */

@media (max-width: 768px) {
  .home-logistics-right p,
  .home-logistics-right h2 {
    text-align: center;
  }
  .support-container {
    flex-direction: column;
    text-align: center;
  }

  .support-left {
    justify-content: center;
  }

  .support-right {
    text-align: center;
  }

  .divider {
    width: 80px;
  }
}
.homevideo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  /* background: #0a0a0a; */
}

.homevideo-wrapper {
  position: relative;
  width: 82%;
  /* max-width: 900px; */
  /* border-radius: 16px; */
  overflow: hidden;
  /* box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6); */
}

.homevideo-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.homevideo-container video,
.homevideo-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .homevideo-section {
    padding: 40px 16px;
  }
  .homevideo-wrapper {
    position: relative;
    width: 100%;
    /* max-width: 900px; */
    /* border-radius: 16px; */
    overflow: hidden;
    /* box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6); */
  }
  .bg-div {
    display: none;
  }
}
