@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Rowdies:wght@300;400;700&display=swap");

/* =====================================================
   CORE DESIGN SYSTEM & TOKENS
===================================================== */
:root {
  --primary-color: #0b1f3a; /* Dark Navy */
  --primary-light: #163a63; /* Slate Blue */
  --primary-accent: #1976ad; /* Royal Blue */
  --gold-accent: #ffbd00; /* Warm Gold */
  --gold-dark: #d99a00; /* Deep Gold */

  --white-color: #ffffff; /* Pure White */
  --off-white: #f7f9fc; /* Soft Light Blue-Gray */

  --text-color: #26364a; /* Main Body Text */
  --text-light: #667085; /* Muted Text */

  --border-color: #d9e1ea; /* Soft Borders */
  --hover-color: #eaf1f8; /* Light Hover Tint */

  --body-font: "Poppins", sans-serif;
  --heading-font: "Rowdies", "Poppins", sans-serif;

  --border-radius-sm: 6px;
  --border-radius-md: 10px;
  --border-radius-lg: 16px;

  --shadow-sm: 0 4px 12px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 31, 58, 0.1);
  --shadow-lg: 0 16px 40px rgba(11, 31, 58, 0.16);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================================================
   BASE & RESET
===================================================== */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--body-font);
  color: var(--text-color);
  background-color: var(--white-color);
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* =====================================================
   HEADER & TOPBARS
===================================================== */
header {
  width: 100%;
  position: relative;
  z-index: 1000;
}

/* Topbar 1 - Contact Info & Socials */
.topbar1 {
  min-height: 42px;
  background-color: #061426;
  width: 100%;
  padding: 6px 5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar1-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-contact-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.topbar-contact-link:hover {
  color: var(--gold-accent);
}

.topbar-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-social-link {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--primary-color);
  background-color: var(--white-color);
  border-radius: 50%;
  font-size: 0.95rem;
  transition: var(--transition);
}

.topbar-social-link:hover {
  background-color: var(--gold-accent);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Main Topbar Nav Header */
.topbar {
  background-color: rgba(11, 31, 58, 0.96);
  backdrop-filter: blur(12px);
  width: 100%;
  padding: 12px 5%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.topbar-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 140px;
  height: 48px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.logo-h3 {
  color: var(--white-color);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  font-family: var(--body-font);
  letter-spacing: -0.2px;
}

/* Nav Toggle Button */
.nav-toggle {
  display: none;
  background: var(--primary-light);
  color: var(--white-color);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-sm);
  width: 42px;
  height: 42px;
  font-size: 1.4rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.nav-toggle:hover,
.nav-toggle.active {
  background: var(--primary-accent);
  color: var(--gold-accent);
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
}

.navbar-list {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar-links {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0;
  display: block;
  position: relative;
  transition: var(--transition);
}

.navbar-links::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--gold-accent);
  transition: var(--transition);
}

.navbar-links:hover {
  color: var(--gold-accent);
}

.navbar-links:hover::after {
  width: 100%;
}

/* Mobile Nav Breakpoint */
@media (max-width: 992px) {
  .nav-toggle {
    display: flex;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
  }

  .navbar-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    background-color: rgba(6, 20, 38, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }

  .navbar-list.active {
    max-height: 420px;
    opacity: 1;
    padding: 10px 0;
    pointer-events: auto;
  }

  .navbar-item {
    width: 100%;
  }

  .navbar-links {
    padding: 14px 24px;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .navbar-links::after {
    display: none;
  }

  .navbar-item:last-child .navbar-links {
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  .topbar1-container {
    justify-content: center;
  }
  .logo-h3 {
    font-size: 0.95rem;
  }
  .logo {
    width: 120px;
    height: 40px;
  }
}

/* =====================================================
   HERO SECTION
===================================================== */
.hero-section {
  min-height: 85vh;
  background-image:
    linear-gradient(
      180deg,
      rgb(6 20 38 / 23%) 0%,
      rgb(6 20 38 / 39%) 50%,
      rgba(6, 20, 38, 0.88) 100%
    ),
    url(../images/alloy.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.hero-contents {
  width: min(1200px, 92%);
  margin: auto;
  color: var(--white-color);
  padding: 4rem 0 5rem;
}

.tagline {
  max-width: 850px;
  font-family: var(--heading-font);
  font-size: clamp(1.6rem, 4.5vw, 3.2rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-contents p {
  max-width: 800px;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
}

.btn1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0.95rem 1.8rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.primarybtn {
  background-color: var(--white-color);
  color: var(--primary-color);
}

.primarybtn:hover {
  background-color: var(--gold-accent);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.secondarybtn {
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  color: var(--white-color);
  background-color: transparent;
}

.secondarybtn:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn1 {
    width: 100%;
    text-align: center;
  }
}

/* =====================================================
   COUNTER SECTION
===================================================== */
.counter-section {
  width: 100%;
  padding: 60px 8%;
  background-color: var(--primary-color);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.counter-box {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--white-color);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}

.counter-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--gold-accent);
}

.counter-box i {
  font-size: 38px;
  color: var(--primary-light);
}

.counter-box h2 {
  margin: 12px 0 6px;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--primary-color);
}

.counter-box p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .counter-section {
    grid-template-columns: repeat(2, 1fr);
    padding: 45px 5%;
  }
}

@media (max-width: 480px) {
  .counter-section {
    grid-template-columns: 1fr;
    padding: 40px 5%;
  }
}

/* =====================================================
   PRODUCT RANGE SECTION
===================================================== */
.industrial-products {
  width: min(1400px, 92%);
  margin: 0 auto;
  padding: 90px 0;
  display: grid;
  grid-template-columns: 0.8fr 2fr;
  gap: 60px;
}

.product-intro {
  position: sticky;
  top: 100px;
  align-self: start;
}

.product-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.product-intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.25;
  color: var(--primary-color);
  margin: 0 0 20px;
  font-family: var(--body-font);
  font-weight: 700;
}

.product-intro p {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.product-intro-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  transition: var(--transition);
}

.product-intro-btn:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.industrial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.industrial-card {
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.industrial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.industrial-image {
  height: 220px;
  position: relative;
  overflow: hidden;
  background-color: var(--hover-color);
}

.industrial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.industrial-card:hover .industrial-image img {
  transform: scale(1.06);
}

.image-arrow {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 65px;
  height: 85px;
  background: var(--primary-light);
  clip-path: polygon(0 0, 65% 50%, 0 100%, 0 75%, 40% 50%, 0 25%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 12px;
  color: white;
  font-size: 20px;
  opacity: 0.95;
}

.industrial-image::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background-color: var(--primary-accent);
}

.industrial-content {
  padding: 24px;
}

.industrial-content h3 {
  font-family: var(--heading-font);
  font-size: 1.35rem;
  color: var(--primary-color);
  margin: 0 0 12px;
}

.industrial-content p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0 0 18px;
}

.industrial-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-light);
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
}

.industrial-content a:hover {
  color: var(--primary-accent);
  gap: 12px;
}

@media (max-width: 992px) {
  .industrial-products {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }
  .product-intro {
    position: static;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .industrial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .industrial-image {
    height: 200px;
  }
}

/* =====================================================
   MATERIALS WE DEAL IN SECTION
===================================================== */
.section3 {
  width: 100%;
  padding: 90px 5%;
  background: var(--off-white);
}

.page3-contents {
  max-width: 1400px;
  margin: 0 auto;
}

.page3-contents h6 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.page3-contents h6::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--gold-dark);
  display: inline-block;
}

.page3-contents h1 {
  color: var(--primary-color);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 50px;
}

.boxes {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.box {
  position: relative;
  padding: 32px 26px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.box.show {
  opacity: 1;
  transform: translateY(0);
}

.box1.show {
  transition-delay: 0.1s;
}
.box2.show {
  transition-delay: 0.2s;
}
.box3.show {
  transition-delay: 0.3s;
}
.box4.show {
  transition-delay: 0.4s;
}

.box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-light);
  transition: background 0.3s ease;
}

.box::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  right: -40px;
  bottom: -40px;
  border-radius: 50%;
  background: rgba(217, 154, 0, 0.08);
  transition: transform 0.4s ease;
}

.box:hover {
  transform: translateY(-8px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}

.box:hover::before {
  background: var(--gold-dark);
}

.box:hover::after {
  transform: scale(2.2);
}

.box1 {
  --number: "01";
}
.box2 {
  --number: "02";
}
.box3 {
  --number: "03";
}
.box4 {
  --number: "04";
}

.box h4::before {
  content: var(--number);
  display: block;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.box h4 {
  color: var(--primary-color);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 20px;
}

.box p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

@media (max-width: 1024px) {
  .boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .section3 {
    padding: 60px 5%;
  }
  .page3-contents h1 {
    margin-bottom: 35px;
  }
  .boxes {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* =====================================================
   MATERIAL CTA SECTION
===================================================== */
.section4 {
  background-image:
    linear-gradient(180deg, rgba(6, 20, 38, 0.92), rgba(6, 20, 38, 0.82)),
    url("../images/corrosion.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 320px;
  width: 100%;
  padding: 60px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sec4-contents {
  max-width: 850px;
  margin: 0 auto;
}

.sec4-contents h2 {
  color: var(--white-color);
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.25;
  margin-bottom: 16px;
}

.sec4-contents p {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  line-height: 1.6;
  margin-bottom: 26px;
}

/* =====================================================
   WHY CHOOSE US SECTION
===================================================== */
.why-section {
  width: min(1400px, 92%);
  margin: 0 auto;
  padding: 90px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-label {
  display: inline-block;
  color: var(--primary-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.why-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.2;
  color: var(--primary-color);
  margin: 0 0 20px;
}

.why-content > p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.why-features {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--border-radius-md);
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-feature:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  min-width: 44px;
  height: 44px;
  border-radius: var(--border-radius-sm);
  display: grid;
  place-items: center;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 22px;
}

.why-feature h4 {
  margin: 0 0 4px;
  color: var(--primary-color);
  font-size: 1rem;
}

.why-feature p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.6;
}

.why-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.image-frame {
  width: 100%;
  max-width: 600px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.image-frame:hover img {
  transform: scale(1.04);
}

.image-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background-color: rgba(11, 31, 58, 0.92);
  backdrop-filter: blur(8px);
  color: var(--white-color);
  padding: 14px 22px;
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  border-left: 4px solid var(--gold-accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 5;
}

.image-badge strong {
  font-size: 1.1rem;
  color: var(--white-color);
}

.image-badge span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
  .why-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }
  .image-frame img {
    height: 380px;
  }
}

@media (max-width: 576px) {
  .image-frame img {
    height: 280px;
  }
}

/* =====================================================
   READY STOCK SECTION
===================================================== */
.ready-stock {
  width: min(1250px, 92%);
  margin: auto;
  padding: 90px 0;
}

.ready-stock-header {
  max-width: 800px;
  margin-bottom: 60px;
}

.ready-stock-header span {
  display: block;
  color: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.ready-stock-header h2 {
  margin: 0 0 16px;
  color: var(--primary-color);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.2;
}

.ready-stock-header p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.stock-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  margin-bottom: 50px;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    box-shadow 0.3s ease;
}

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

.stock-visual {
  width: 100%;
  height: 100%;
  min-height: 350px;
  overflow: hidden;
}

.stock-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.stock-card:hover .stock-visual img {
  transform: scale(1.05);
}

.stock-info {
  padding: 45px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white-color);
}

.stock-info small {
  color: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.stock-info h3 {
  color: var(--primary-color);
  font-size: 1.6rem;
  margin: 0 0 6px;
}

.stock-info h4 {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0 18px;
}

.stock-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.stock-info li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.5;
}

.stock-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-light);
  font-weight: 700;
}

.stock-btn {
  width: fit-content;
  padding: 10px 22px;
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius-sm);
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.stock-btn:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--white-color);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .stock-card {
    grid-template-columns: 1fr;
  }
  .stock-visual {
    min-height: 240px;
    height: 240px;
  }
  .stock-info {
    padding: 30px 24px;
  }
}

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
  background-image:
    linear-gradient(
      180deg,
      rgba(6, 20, 38, 0.96) 0%,
      rgba(6, 20, 38, 0.98) 100%
    ),
    url("../images/Petrochemical.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white-color);
  padding: 70px 5% 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.2fr;
  gap: 45px;
}

.footer-column h2,
.footer-column h3 {
  color: var(--white-color);
  margin-top: 0;
}

.footer-column h2 {
  font-size: 1.6rem;
  line-height: 1.25;
  margin-bottom: 20px;
}

.footer-column h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 20px;
}

.footer-company p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

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

.footer-column li {
  margin-bottom: 10px;
}

.footer-column li a {
  color: var(--gold-accent);
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-column li a:hover {
  color: var(--white-color);
  padding-left: 4px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-sm);
  font-size: 1.2rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background-color: var(--gold-accent);
  border-color: var(--gold-accent);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.contact-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background-color: var(--gold-dark);
  color: var(--white-color);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-item a,
.contact-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

.contact-item a:hover {
  color: var(--gold-accent);
}

.footer-countries {
  max-width: 1400px;
  margin: 60px auto 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-countries p {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .site-footer {
    padding: 50px 20px 0;
  }
}

/* =====================================================
   FLOATING WHATSAPP BUTTON
===================================================== */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

@media (max-width: 576px) {
  .floating-whatsapp {
    width: 50px;
    height: 50px;
    right: 16px;
    bottom: 16px;
    font-size: 1.75rem;
  }
}
