/* Main Stylesheet for Plastrade Group Website */

:root {
  --svg-color: #e73137;
  --primary-color: #e73137;
  --secondary-color: #0f3556;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --dark-gray: #495057;
  --text-color: #212529;
  --white: #ffffff;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --dark-blue: #263173;
}

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

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

.btn.disabled,
.btn.disabled:hover {
  background-color: var(--light-gray) !important;
  color: var(--medium-gray) !important;
  border-color: var(--light-gray) !important;
  cursor: not-allowed !important; /* Shows the user they can't click it */
  pointer-events: none !important; /* Prevents click events from firing */
}

.btn.primary {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}

.btn.primary:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.btn.secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.btn.secondary:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  z-index: 1000;
  transition: var(--transition);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo img {
  height: 50px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

nav ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
  width: 100%;
}

.mobile-toggle {
  display: none;
}
@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
}

.mobile-toggle .bar {
  display: block;
  width: 24px;
  height: 3px;
  margin: 4px 0;
  background-color: var(--dark-blue);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-toggle.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  //background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/shipping-image.jpg');
  background: url(" https://res.cloudinary.com/plastrade/image/upload/w_1920,f_auto,q_auto/landing-hero-background-image.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 180px 0 100px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Products Showcase */
.products-showcase {
  padding: 80px 0;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.product-card {
  padding: 30px;
  border-radius: 8px;
  background-color: var(--light-gray);
  transition: var(--transition);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.product-icon {
  margin-bottom: 20px;
}

.product-icon img {
  height: 90px;
  border-radius: 16px;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background-color: var(--light-gray);
  text-align: center;
}

.testimonial {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.testimonial p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  text-align: right;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--medium-gray);
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 15px;
}

.footer-col h4 {
  position: relative;
  padding-bottom: 3px;
}

.footer-col h4:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

address {
  font-style: normal;
}

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

/* About Page */
.page-header {
  //  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),    url("images/hero-bg.jpg");
  background: url("https://res.cloudinary.com/plastrade/image/upload/w_1920,f_auto,q_auto/off-page-hero-background-image_cwo0np.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 150px 0 80px;
  text-align: center;
  @media (max-width: 450px) {
    padding: 110px 0 40px;
  }
}

.about-section {
  padding: 80px 0;
}

.about-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.about-image {
  max-height: 400px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 2px solid #e9ecef; /* A very light gray border, almost like an inner bevel */
  /* More obvious shadow */
  box-shadow: 0 10px 25px rgba(40, 49, 115, 0.15); /* Shadow using your dark blue as a base, but very transparent */
  /* Or a more standard darker shadow: */
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 50px auto;
}

.timeline:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: var(--primary-color);
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 50px;
  position: relative;
}

.timeline-content {
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  position: relative;
  width: calc(50% - 40px);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-content:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 20px;
}

.timeline-item:nth-child(odd) .timeline-content:before {
  left: -50px;
}

.timeline-item:nth-child(even) .timeline-content:before {
  right: -50px;
}

.timeline-year {
  position: absolute;
  top: 20px;
  font-weight: bold;
  color: var(--primary-color);
}

.timeline-item:nth-child(odd) .timeline-year {
  left: -120px;
}

.timeline-item:nth-child(even) .timeline-year {
  right: -120px;
}

/* Products Page */
.products-container {
  padding: 80px 0;
}

.product-filters {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  padding: 8px 16px;
  background-color: var(--light-gray);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.product-item {
  border: 1px solid var(--medium-gray);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.product-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-item:hover .product-image img {
  transform: scale(1.1);
}

/* Styles for placeholder image containers */
.product-image-placeholder {
  height: 200px;
  background-color: #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-image-placeholder img {
  width: auto;
  height: auto;
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
  opacity: 0.4;
  transition: none;
  transform: none;
}

/* Disable the hover effect for placeholder images */
.product-item:hover .product-image-placeholder img {
  transform: scale(1);
}

.product-details {
  padding: 20px;
}

.product-details h3 {
  margin-bottom: 10px;
}

.product-details p {
  min-height: 80px;
}

.product-meta {
  margin: 15px 0;
  display: flex;
  justify-content: space-between;
}

.product-actions {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}

.add-to-quote {
  padding: 8px 16px;
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.add-to-quote:hover {
  background-color: var(--primary-color);
}

.pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.pagination-btn.active,
.pagination-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.quantity-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--medium-gray);
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: bold;
}

.quantity-input {
  width: 40px;
  height: 24px;
  margin: 0 5px;
  text-align: center;
  border: 1px solid var(--medium-gray);
}

/* Global Network Page */
.network-section {
  padding: 80px 0;
}

.world-map {
  position: relative;
  margin: 50px 0;
}

.world-map img {
  width: 100%;
  height: auto;
}

.map-marker {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.map-marker:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.region-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.region-card {
  background-color: var(--light-gray);
  padding: 20px;
  border-radius: 8px;
  transition: var(--transition);
}

.region-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.region-card h3 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.region-card h3:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
}

.region-card ul {
  list-style: none;
}

.region-card ul li {
  padding: 5px 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .intro .container {
    flex-direction: column;
  }

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

  .timeline:before {
    left: 30px;
  }

  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }

  .timeline-content:before {
    left: -40px !important;
  }

  .timeline-year {
    left: -60px !important;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 72.55px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    flex-direction: column;
    padding: 20px;
  }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    margin: 10px 0;
  }

  /* .mobile-toggle {
        display: flex;
    }
     */
  .hero {
    padding: 150px 0 80px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

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

@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 15px;
  }

  .timeline-content {
    padding: 15px;
  }
}

/* Additional styles for the Products page */

.intro-text {
  margin-bottom: 40px;
  font-size: 1.1rem;
  max-width: 1000px;
}

.section-intro {
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Additional Services Section */
.additional-services {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  margin-bottom: 20px;
}

.service-icon img {
  height: 60px;
}

/* Product Specifications Section */
.product-specifications {
  padding: 80px 0;
}

.spec-tabs {
  margin-top: 40px;
}

.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--medium-gray);
  padding-bottom: 10px;
}

.tab-btn {
  padding: 10px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.tab-btn:after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -10px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  color: var(--primary-color);
}

.tab-btn.active:after,
.tab-btn:hover:after {
  width: 100%;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.spec-table th,
.spec-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--medium-gray);
}

.spec-table th {
  background-color: var(--secondary-color);
  color: var(--white);
  font-weight: 500;
}

.spec-table tbody tr:nth-child(even) {
  background-color: var(--light-gray);
}

.spec-table tbody tr:hover {
  background-color: rgba(231, 49, 55, 0.05);
}

/* Notification */
.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 15px 20px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

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

/* Success Message */
.success-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 400px;
  width: 90%;
  z-index: 1001;
}

.success-message h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.success-message button {
  margin-top: 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .spec-tabs .tab-nav {
    flex-direction: column;
    gap: 5px;
  }

  .tab-btn:after {
    display: none;
  }

  .tab-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
  }
}

@media (max-width: 768px) {
  .service-card {
    padding: 20px;
  }

  .spec-table {
    font-size: 0.9rem;
  }

  .spec-table th,
  .spec-table td {
    padding: 8px 10px;
  }
}

@media (max-width: 576px) {
  .spec-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Container for logo and text */
.brand-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo wrapper */
.logo-wrapper {
  flex-shrink: 0;
}

/* Logo image */
.logo-image {
  width: 60px;
  height: auto;
  display: block;
}

/* Brand text container */
.brand-text {
  display: flex;
  flex-direction: column;
}

/* Company Name */
.company-name {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.03em;
  color: #0f3556; /* Dark blue from company profile */
  margin: 0;
  line-height: 1.1;
}

/* Company Tagline */
.company-tagline {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 0.9rem;
  color: #e73137; /* Red from company profile */
  margin: 0;
  letter-spacing: 0.02em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .company-name {
    font-size: 1.7rem;
  }

  .company-tagline {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .logo-image {
    width: 40px;
  }

  .company-name {
    font-size: 1.4rem;
  }

  .company-tagline {
    font-size: 0.7rem;
  }
}

.logo img,
.structure-logo img,
.footer-logo,
.value-icon img,
.product-icon img {
  max-width: 100%;
  height: auto;
  max-height: 60px; /* Adjust this value based on your preference */
  width: auto;
}

/* Specific control for structure section logos */
.structure-logo img {
  max-height: 50px; /* Slightly smaller for the company structure logos */
}

/* Control for footer logo specifically */
.footer-logo {
  max-height: 45px;
}

/* For SVGs that need to maintain aspect ratio */
svg {
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* Company structure card improvements */
.structure-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: 8px;
  transition: var(--transition);
}

.structure-item:hover {
  box-shadow: var(--box-shadow);
  transform: translateY(-5px);
}

.structure-logo {
  flex-shrink: 0;
  width: 80px;
}

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

.structure-content {
  flex: 1;
}

.structure-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.structure-content p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

/* Mobile responsiveness */
@media (max-width: 576px) {
  .structure-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .structure-logo {
    width: 70px;
    margin-bottom: 10px;
  }
}

/* Footer Styles */
footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

/* Brand container in footer (similar to header) */
.footer-brand-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-logo-wrapper {
  flex-shrink: 0;
}

.footer-logo-image {
  width: 45px;
  height: auto;
  display: block;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
}

.footer-company-name {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
  line-height: 1.1;
  padding-bottom: 0;
}

.footer-company-name:after {
  display: none; /* Remove the underline that other footer h4s have */
}

.footer-company-tagline {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.footer-established {
  margin-top: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

address {
  font-style: normal;
}

address a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

address a:hover {
  color: var(--primary-color);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-company-name {
    font-size: 1.3rem;
  }

  .footer-company-tagline {
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .footer-logo-image {
    width: 35px;
  }

  .footer-company-name {
    font-size: 1.2rem;
  }

  .footer-company-tagline {
    font-size: 0.7rem;
  }
}

/* Contact Icon Size Fix */

/* Define the container size */

.quantity-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.min-order-note {
  font-size: 0.8rem;
  color: #666;
  margin-top: 4px;
  font-style: italic;
}

/* --- Button Visibility Fixes for Hero Section --- */

/* Improve visibility of the SECONDARY button (Contact Us) in its default state */
.hero .btn.secondary {
  color: var(--white); /* Use white text for high contrast */
  border-color: var(--white); /* Use a white border */
  /* Optional: Add a subtle shadow for text separation */
  /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); */
}

/* Improve visibility of the SECONDARY button hover state (ensure it remains clear) */
.hero .btn.secondary:hover {
  background-color: var(--white); /* White background on hover */
  color: var(--secondary-color); /* Dark blue text */
  border-color: var(--white); /* Keep white border or match background */
}

/* Improve visibility of the PRIMARY button (Explore Products) hover state */
.hero .btn.primary:hover {
  background-color: var(--white); /* Use a solid white background on hover */
  color: var(--primary-color); /* Keep the primary red text */
  border-color: var(--white); /* Match the background with a white border */
}

.cta-final {
  padding: 80px 0;
  background-color: var(--primary-color); /* Plastrade Red */
  color: var(--white);
  text-align: center;
}

.cta-final h2 {
  color: var(--white); /* Ensure h2 color is white */
  margin-bottom: 1.5rem; /* Add some space below heading */
}

.cta-final p {
  max-width: 700px; /* Keep text readable */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  font-size: 1.1rem; /* Slightly larger for impact */
  line-height: 1.7;
}

.cta-final .btn.primary {
  background-color: var(--white); /* White button background */
  color: var(--primary-color); /* Red text */
  border: 2px solid var(--white); /* White border (ensures border thickness is consistent) */
  font-weight: 700; /* Make button text bolder */
  padding: 15px 30px; /* Make button a bit larger */
}

.cta-final .btn.primary:hover {
  background-color: transparent; /* Transparent background on hover */
  color: var(--white); /* White text on hover */
  border-color: var(--white); /* White border on hover */
}

/* --- VERTICAL LIST REWORK FOR "OUR VALUES" SECTION --- */

.values {
  padding: 80px 0;
  background-color: var(--light-gray);
  color: var(--text-color);
}

/* Consistent H2 styling for sections */
.values h2,
.products-showcase h2,
.intro-content h2 {
  text-align: left;
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 3rem; /* Increased margin for better section separation */
  color: var(--secondary-color);
}

.values h2::after,
.products-showcase h2::after,
.intro-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 3px;
  background-color: var(--primary-color);
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 50px; /* Increased gap for more visual separation between items */
  max-width: 800px; /* Constrain width for better readability of a single column */
}

.values-list-condensed {
  gap: 20px !important;
}

.value-item {
  display: flex; /* Arrange number and content side-by-side */
  align-items: flex-start; /* Align items to the top */
  gap: 25px; /* Space between number and content */
  position: relative; /* For potential future decorative elements */
  padding-bottom: 30px; /* Add padding below each item */
}

/* Add a subtle border below each item except the last one */
.value-item:not(:last-child) {
  border-bottom: 1px solid var(--medium-gray);
}

.value-number {
  display: inline-flex; /* Use inline-flex for alignment */
  align-items: center;
  justify-content: center;
  font-size: 1.4rem; /* Size of the number */
  font-weight: 700; /* Bold number */
  color: var(--primary-color); /* Red color for the number */
  background-color: rgba(
    231,
    49,
    55,
    0.1
  ); /* Very light red background tint for the tag */
  min-width: 45px; /* Minimum width of the number tag */
  height: 45px; /* Height of the number tag */
  padding: 5px; /* Padding inside the tag */
  border-radius: 8px; /* Rounded corners for the tag */
  line-height: 1; /* Ensure number is centered vertically */
  flex-shrink: 0; /* Prevent the number tag from shrinking */
  margin-top: 5px; /* Align a bit with the H3 if H3 has more line-height */
}

.value-content {
  flex-grow: 1; /* Allow content to take remaining space */
}

.value-item h3 {
  font-size: 1.75rem; /* INCREASED from 1.75rem */
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 0.75rem; /* Slightly more space after H3 */
  font-weight: 700; /* Make it bolder to match H2 weight */
}

.value-item p {
  font-size: 1.1rem; /* INCREASED from 1rem */
  line-height: 1.8; /* Slightly increased line height for better readability */
  color: var(--text-color);
  margin-bottom: 0;
}

/* Adjust number tag if H3 becomes much taller, mostly for vertical alignment */
.value-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem; /* Slightly increased number size */
  font-weight: 700;
  color: var(--primary-color);
  background-color: rgba(231, 49, 55, 0.1);
  min-width: 55px; /* Adjusted slightly for potentially larger font */
  height: 55px;
  padding: 5px;
  border-radius: 8px; /* Or try 10px for a softer look with larger tag */
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0; /* Reset margin-top, flex-start on parent should handle alignment */
}

/* --- Remove Desktop Grid for Values --- */
/* Comment out or delete the @media queries that created a grid for .values-list */
/*
@media (min-width: 768px) {
    .values-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1200px;
    }
    .value-item {
        padding: 10px;
        text-align: left;
    }
}

@media (min-width: 992px) {
    .values-list {
        gap: 40px;
    }
     .value-item h3 {
        font-size: 1.75rem;
    }
    .value-item p {
        font-size: 1.05rem;
    }
}
*/

/* Optional: Adjust spacing for smaller screens if needed */
@media (max-width: 576px) {
  .values-list {
    gap: 30px;
  }
  .value-item {
    gap: 15px; /* Smaller gap between number and text on mobile */
    padding-bottom: 20px;
  }
  .value-number {
    font-size: 1.3rem; /* Adjusted */
    min-width: 45px; /* Adjusted */
    height: 45px; /* Adjusted */
  }
  .value-item h3 {
    font-size: 1.6rem; /* INCREASED */
  }
  .value-item p {
    font-size: 1rem; /* INCREASED */
  }
}

.products-container h2,
.product-specifications h2,
.additional-services h2,
.key-service-regions .container h2,
.network-section h2,
.about-section h2,
.values h2,
.products-showcase h2, /* If you want to make "Our Core Products" H2 consistent */
.intro-content h2 /* Your existing intro H2 already has similar styling */ {
  text-align: left; /* Left align the heading text */
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 2.5rem; /* Or 3rem as you have for .values h2 */
  color: var(
    --secondary-color
  ); /* Or var(--text-color) depending on background */
  /* If on a dark background like the original .values, use var(--white) */
}

.products-container h2::after,
.product-specifications h2::after,
.additional-services h2::after,
.key-service-regions .container h2::after,
.network-section h2::after,
.about-section h2::after,
.values h2::after,
.products-showcase h2::after,
.intro-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0; /* Align underline to the left */
  transform: none; /* No need for translateX if left-aligned */
  width: 70px; /* Or adjust width as desired - e.g., 50px, 100px */
  height: 3px;
  background-color: var(--primary-color);
}

.page-header p {
  font-size: 1.25rem;
}

 

@media (max-width: 449px) {
  body:has(.quote-cart.open) {
    overflow: hidden;
  }
}

@media screen and (-webkit-min-device-pixel-ratio:0) { 
  select,
  textarea,
  input {
    font-size: 16px;
  }
}