:root {
  --theme-bg: #ffffff;
  --gradient-start: #e8f4fc;
  --gradient-end: #ffffff;
  --overlay1-start: rgba(0, 116, 183, 0.14);
  --overlay1-end: rgba(0, 116, 183, 0.04);
  --overlay2-start: rgba(77, 185, 230, 0.12);
  --overlay2-end: rgba(255, 255, 255, 0);
  --overlay3-start: rgba(0, 116, 183, 0.08);
  --overlay3-end: transparent;
}

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

body {
  font-family: "Montserrat", sans-serif;
  color: #000000;
  background-color: #ffffff;
}

.products-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

/* Page Header */
.page-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 16px;
}

.page-header h1 {
  font-size: 3rem;
  color: #0074b7;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-header p {
  font-size: 1.15rem;
  color: #5c6370;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Featured Products Slider */
.featured-slider-section {
  margin-bottom: 64px;
  padding: 0 16px;
}

.featured-slider-section .section-title {
  margin-bottom: 28px;
}

.section-title {
  font-size: 2.2rem;
  color: #0074b7;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 116, 183, 0.18);
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid rgba(0, 116, 183, 0.12);
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  position: relative;
  background: #e8f4fc;
}

.slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 30, 50, 0.92) 0%,
    rgba(0, 50, 80, 0.65) 45%,
    transparent 100%
  );
  color: #ffffff;
  padding: 48px 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.slide-content h3 {
  font-size: 1.85rem;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  max-width: 720px;
}

.slide-content p {
  font-size: 1.05rem;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  max-width: 600px;
}

.view-product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #0074b7;
  color: #ffffff;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 116, 183, 0.45);
}

.view-product-btn:hover {
  background: #005a8e;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 116, 183, 0.5);
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-btn:hover {
  background: white;
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bdc3c7;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #0074B7;
}

/* Categories Section */
.categories-section {
  display: none;
  margin-bottom: 60px;
}

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

.category-card {
  background: #FFFFFF;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(34, 112, 131, 0.63);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

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

.category-card:hover .category-image img {
  transform: scale(1.1);
}

.category-content {
  padding: 25px;
}

.category-content h3 {
  font-size: 1.5rem;
  color: #0074b7;
  margin-bottom: 10px;
}

.category-content p {
  color: #333333;
  line-height: 1.6;
}

/* All Products Section */
.all-products-section {
  margin-bottom: 60px;
}

.products-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: #E8EBED;
  color: #333333;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.filter-btn.active,
.filter-btn:hover {
  background: #0074b7;
  color: #ffffff;
}

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

.product-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(34, 112, 131, 0.63);
    transition: transform 0.3s ease;

    display: flex;
    flex-direction: column; /* Make card elements stack */
}

.product-card:hover {
  transform: translateY(-5px);
}

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

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

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* push content */
}

.product-info h3 {
  font-size: 1.4rem;
  color: #0074b7;
  margin-bottom: 10px;
}

.product-info p {
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.5;

    /* Modern standard property */
    line-clamp: 4;                     /* Not yet supported everywhere but included for future use */
    block-overflow: ellipsis;          /* Works together with line-clamp */

    /* WebKit compatibility (Chrome, Edge, Safari) */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;

    overflow: hidden;
    text-overflow: ellipsis;
}


.product-specs {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.spec-item {
  background: #E8EBED;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #333333;
}

.product-link {
    margin-top: auto;
    display: block;
    background: #0074B7;
    color: #ffffff;
    padding: 12px 25px;
    width: 100%;
    text-align: center;
    align-self: stretch;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.product-link:hover {
  background: #005a8e;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.2rem;
  }

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

  .slide img {
    height: 360px;
  }

  .slide-content {
    padding: 28px 24px 24px;
  }

  .slide-content h3 {
    font-size: 1.4rem;
  }

  .slide-content p {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }

  .view-product-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

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

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

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .products-page {
    padding: 10px;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .filter-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .slide img {
    height: 260px;
  }

  .slide-content h3 {
    font-size: 1.2rem;
  }

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

.hero {
  position: relative;
  height: 90vh;
  background: linear-gradient(
    130deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  overflow: hidden;
}

/* layered gradient shapes */
.overlays {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.shape {
  position: absolute;
  transform-origin: center;
}

.s1 {
  left: -20%;
  top: -10%;
  width: 90%;
  height: 120%;
  background: linear-gradient(
    130deg,
    var(--overlay1-start),
    var(--overlay1-end)
  );
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
  transform: rotate(4deg);
  opacity: 0.9;
}

.s2 {
  top: 5%;
  width: 70%;
  left: -15%;
  height: 100%;
  background: linear-gradient(
    120deg,
    var(--overlay2-start),
    var(--overlay2-end)
  );
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  transform: rotate(8deg);
  opacity: 0.6;
  mix-blend-mode: multiply;
}

.s3 {
  left: -15%;
  top: 15%;
  width: 45%;
  height: 85%;
  background: linear-gradient(
    110deg,
    var(--overlay3-start),
    var(--overlay3-end)
  );
  clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
  transform: rotate(12deg);
  opacity: 0.4;
  mix-blend-mode: screen;
}

.hero-cont {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
}

.hero p {
  margin-top: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333333;
}

.info-bar {
  background: #2C2F32;
  color: #EAECEE;
  font-size: 14px;
  margin-top: 0;
}

.info-container {
  display: flex;
  justify-content: space-between;
  background-color: #3E4347;
  padding: 5px;
  margin-top: 0;
  align-items: center;
  width: 90%;
  margin: auto;
}

.info-links a {
  color: #eaecee;
  /* Off-white text */
  margin-left: 15px;
  text-decoration: none;
  transition: color 0.3s;
}

.info-links a:hover {
  color: #0074b7;
  /* Steel blue hover */
}

.info-links a i {
  margin-right: 5px;
  color: #0074b7;
  /* Accent icons */
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2C2F32;
  color: #EAECEE;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  margin: 10px;
}

.nav-logo img {
  height: 60px;
  width: auto;
  padding: 5px;
  filter: brightness(1.65) contrast(1.3);
  /* Slightly stronger boost */
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo i {
  color: #0074b7;
  /* Accent color */
}

/* Links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #EAECEE;
  padding: 10px 15px;
  display: flex;
  gap: 5px;
  align-items: center;
  transition: color 0.3s;
}

.nav-links a i {
  margin-right: 5px;
  color: #0074b7;
  /* Subtle blue icon accent */
}

.nav-links a:hover {
  color: #0074b7;
  /* Steel blue hover */
  border-radius: 5px;
}

/* Get in Touch Button */
.get-in-touch-btn {
  background: #0074b7;
  /* Primary blue accent */
  color: #000000;
  border: none;
  margin-right: 5px;
  padding: 10px;
  border-radius: 45px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.get-in-touch-btn:hover {
  background: #005a8e;
  /* Deep marine hover */
}

/* Dropdown */
.dropdown-menu {
  display: none;
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #3E4347;
  /* Graphite gray dropdown */
  color: #333333;
  flex-direction: column;
  min-width: 150px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.dropdown-menu li a {
  padding: 10px;
  color: #333333;
  transition: background 0.3s, color 0.3s;
}

.dropdown-menu li a:hover {
  background: #0074b7;
  /* Highlight hover */
  color: #333333;
}

/* Burger */
/* Burger - Fixed Spacing */
.burger {
  display: none;
  cursor: pointer;
  background: #3E4347;
  /* Graphite gray dropdown */
  color: #333333;
  border: none;
  border-radius: 5px;
  padding: 12px 15px;
  margin: 10px 15px;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 44px;
}

.burger span {
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Spacing Fixes */
@media (max-width: 768px) {
  .burger {
    display: flex;
    margin: 8px 12px;
    padding: 10px 13px;
    height: 42px;
    min-width: 46px;
  }

  .burger span {
    font-size: 22px;
  }
}

@media (max-width: 650px) {
  .burger {
    margin: 6px 10px;
    padding: 8px 11px;
    height: 40px;
    min-width: 44px;
  }

  .burger span {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .burger {
    margin: 5px 8px;
    padding: 7px 10px;
    height: 38px;
    min-width: 42px;
  }

  .burger span {
    font-size: 18px;
  }
}

@media (max-width: 375px) {
  .burger {
    margin: 4px 6px;
    padding: 6px 8px;
    height: 36px;
    min-width: 40px;
  }

  .burger span {
    font-size: 16px;
  }
}

@media (max-width: 320px) {
  .burger {
    margin: 3px 5px;
    padding: 5px 7px;
    height: 34px;
    min-width: 38px;
  }

  .burger span {
    font-size: 14px;
  }
}

/* Enhanced Responsive Design for All Screens */

/* Large Desktop (1200px+) */
@media (min-width: 1201px) {
  .navbar {
    padding: 0 40px;
  }

  .nav-logo img {
    height: 65px;
  }

  .nav-links a {
    padding: 12px 18px;
    font-size: 1.05rem;
  }

  .get-in-touch-btn {
    padding: 12px 24px;
    font-size: 1.05rem;
  }
}

/* Standard Desktop (1024px - 1200px) */
@media (max-width: 1200px) and (min-width: 1025px) {
  .navbar {
    padding: 0 30px;
  }

  .nav-links a {
    padding: 10px 14px;
    font-size: 1rem;
  }

  .get-in-touch-btn {
    padding: 10px 20px;
  }
}

/* Small Desktop (900px - 1024px) */
@media (max-width: 1024px) and (min-width: 901px) {
  .navbar {
    padding: 0 25px;
  }

  .nav-links a {
    padding: 8px 12px;
    font-size: 0.95rem;
  }

  .get-in-touch-btn {
    padding: 8px 18px;
    font-size: 0.95rem;
  }

  .nav-logo img {
    height: 55px;
  }
}

/* Tablet Landscape (768px - 900px) */
@media (max-width: 900px) and (min-width: 769px) {
  .navbar {
    padding: 0 20px;
  }

  .nav-links a {
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .get-in-touch-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .nav-logo img {
    height: 50px;
  }

  .info-container {
    width: 95%;
  }
}

/* Tablet (768px) - Your existing breakpoint */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    right: 0;
    top: 100%;
    background: #FFFFFF;
    height: 0;
    overflow: hidden;
    flex-direction: column;
    width: 100%;
    transition: height 0.3s ease;
  }

  .nav-links.open {
    height: auto;
  }

  .nav-links li {
    text-align: center;
    width: 100%;
  }

  .nav-links a {
    padding: 15px 20px;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown-menu {
    position: relative;
    top: 0;
    width: 100%;
    background: #3E4347;
  }

  .burger {
    display: flex;
    align-items: center;
    padding: 10px 15px;
  }

  /* Info Bar Responsive */
  .info-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 10px;
  }

  .info-links a {
    margin: 0 10px;
    display: inline-block;
  }

  .nav-logo img {
    height: 50px;
  }

  .get-in-touch-btn {
    background-color: transparent;
  }
}

/* Large Mobile (650px - 768px) */
@media (max-width: 768px) and (min-width: 651px) {
  .navbar {
    padding: 0 15px;
  }

  .nav-logo img {
    height: 48px;
  }

  .burger {
    padding: 8px 12px;
  }

  .info-container {
    padding: 8px;
  }

  .get-in-touch-btn {
    background-color: transparent;
  }
}

/* Mobile (480px - 650px) */
@media (max-width: 650px) and (min-width: 481px) {
  .navbar {
    padding: 0 12px;
  }

  .nav-logo img {
    height: 45px;
  }

  .burger {
    padding: 6px 10px;
    font-size: 0.9rem;
  }

  .nav-links a {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .info-container {
    padding: 6px;
  }

  .info-links a {
    margin: 0 8px;
    font-size: 0.9rem;
  }

  .get-in-touch-btn {
    background-color: transparent;
  }
}

/* Small Mobile (375px - 480px) */
@media (max-width: 480px) and (min-width: 376px) {
  .navbar {
    padding: 0 10px;
  }

  .nav-logo img {
    height: 42px;
  }

  .burger {
    padding: 5px 8px;
    font-size: 0.85rem;
  }

  .nav-links a {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .info-container {
    padding: 5px;
  }

  .info-links a {
    margin: 0 6px;
    font-size: 0.85rem;
  }

  .get-in-touch-btn {
    margin-right: 3px;
    padding: 8px 12px;
    font-size: 0.85rem;
    background-color: transparent;
  }
}

/* Extra Small Mobile (320px - 375px) */
@media (max-width: 375px) and (min-width: 321px) {
  .navbar {
    padding: 0 8px;
  }

  .nav-logo img {
    height: 40px;
  }

  .burger {
    padding: 4px 6px;
    font-size: 0.8rem;
  }

  .nav-links a {
    padding: 8px 10px;
    font-size: 0.85rem;
  }

  .info-container {
    padding: 4px;
    width: 98%;
  }

  .info-links a {
    margin: 0 4px;
    font-size: 0.8rem;
  }

  .get-in-touch-btn {
    margin-right: 2px;
    padding: 6px 10px;
    font-size: 0.8rem;
    background-color: transparent;
  }
}

/* Ultra Small Mobile (below 320px) */
@media (max-width: 320px) {
  .navbar {
    padding: 0 5px;
  }

  .nav-logo img {
    height: 38px;
  }

  .burger {
    padding: 3px 5px;
    font-size: 0.75rem;
  }

  .nav-links a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }

  .info-container {
    padding: 3px;
    width: 99%;
    flex-direction: column;
    gap: 5px;
  }

  .info-links a {
    margin: 0 3px;
    font-size: 0.75rem;
    display: block;
  }

  .get-in-touch-btn {
    margin-right: 1px;
    padding: 5px 8px;
    font-size: 0.75rem;
    background-color: transparent;
  }
}

/* Ultra Wide Screens (1920px+) */
@media (min-width: 1920px) {
  .navbar {
    padding: 0 60px;
  }

  .nav-logo img {
    height: 70px;
  }

  .nav-links a {
    padding: 15px 22px;
    font-size: 1.1rem;
  }

  .get-in-touch-btn {
    padding: 15px 28px;
    font-size: 1.1rem;
  }

  .info-container {
    width: 85%;
    padding: 8px;
  }
}

/* Info Bar Specific Responsive */
@media (max-width: 480px) {
  .info-bar {
    font-size: 12px;
  }

  .info-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }

  .info-links a {
    margin: 2px 4px;
  }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .nav-links {
    max-height: 70vh;
    overflow-y: auto;
  }

  .nav-links a {
    padding: 10px 15px;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .nav-links,
  .nav-logo img,
  .info-links a,
  .get-in-touch-btn {
    transition: none;
  }

  .nav-links a:hover,
  .get-in-touch-btn:hover {
    transform: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .navbar {
    background: #ffffff;
    border-bottom: 2px solid #ffffff;
  }

  .nav-links a {
    color: #000000;
  }

  .nav-links a:hover {
    background: #ffffff;
    color: #000000;
  }
}

/* Print Styles */
@media print {
  .info-bar,
  .navbar {
    display: none;
  }
}

/* Contact drawer: see assets/css/contact-drawer.css (loaded via site-header) */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #000000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #000000;
}

.footer {
  background: #2C2F32;
  color: #EAECEE;
  padding: 40px 20px 20px;
  width: 100%;
  box-sizing: border-box;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  width: 100%;
  box-sizing: border-box;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 0;
  box-sizing: border-box;
}

.footer-section h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  border-bottom: 2px solid #0074b7;
  /* Steel Blue accent */
  color: #0074b7;
  /* Steel Blue accent */
  padding-bottom: 8px;
  font-weight: 600;
}

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

.footer-section ul li {
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.footer-section ul li:hover {
  transform: translateX(5px);
}

.footer-section ul li a {
  text-decoration: none;
  color: #eaecee;
  /* Off-white text */
  transition: color 0.3s ease;
  display: block;
  width: 100%;
}

.footer-section ul li:hover a {
  color: #0074b7;
}

.footer-section ul li:hover {
  color: #0074b7;
  cursor: pointer;
}

.footer-section.about {
  flex: 1.5;
  min-width: 300px;
}

.logo {
  margin-bottom: 20px;
  display: inline-block;
}

.logo img {
  width: auto;
  height: 60px;
  max-width: 100%;
  filter: brightness(1.65) contrast(1.3);
  /* Slightly stronger boost */
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.about-text {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #D3D5D8;
  /* Muted light gray text */
  text-align: left;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #eaecee;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.social-icons a:hover {
  background: #0074b7;
  color: #ffffff;
  transform: translateY(-3px);
}

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

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #D3D5D8;
  text-align: left;
}

.contact-info li i {
  margin-right: 10px;
  color: #0074b7;
  /* Accent icons */
  min-width: 20px;
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #D3D5D8;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
  .footer-container {
    max-width: 1000px;
    gap: 25px;
  }

  .footer-section {
    min-width: 220px;
  }
}

@media (max-width: 1024px) {
  .footer-container {
    gap: 20px;
  }

  .footer-section {
    min-width: 200px;
  }

  .footer-section.about {
    min-width: 280px;
  }
}

@media (max-width: 900px) {
  .footer-container {
    justify-content: space-around;
  }

  .footer-section {
    flex: 0 1 calc(50% - 20px);
    min-width: 250px;
  }

  .footer-section.about {
    flex: 0 1 100%;
    min-width: 100%;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 15px 15px;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-section {
    min-width: 100%;
    text-align: center;
  }

  .footer-section h3 {
    font-size: 1.2rem;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .contact-info li {
    justify-content: center;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .footer-section ul li {
    text-align: center;
  }
}

@media (max-width: 650px) {
  .footer-container {
    gap: 25px;
  }

  .footer-section {
    margin-bottom: 10px;
  }

  .social-icons {
    gap: 12px;
  }

  .social-icons a {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 25px 12px 15px;
  }

  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 6px;
  }

  .logo img {
    height: 50px;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .footer-bottom {
    font-size: 13px;
    margin-top: 30px;
    padding-top: 15px;
  }

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

  .contact-info li {
    margin-bottom: 12px;
    font-size: 0.95rem;
  }
}

@media (max-width: 375px) {
  .footer {
    padding: 20px 10px 15px;
  }

  .footer-section h3 {
    font-size: 1rem;
  }

  .social-icons {
    gap: 10px;
  }

  .social-icons a {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .logo img {
    height: 45px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}

@media (max-width: 320px) {
  .footer {
    padding: 15px 8px 12px;
  }

  .footer-container {
    gap: 20px;
  }

  .social-icons {
    gap: 8px;
  }

  .social-icons a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

/* Large screens above 1200px */
@media (min-width: 1201px) {
  .footer-container {
    max-width: 1200px;
  }
}

/* Extra large screens */
@media (min-width: 1440px) {
  .footer {
    padding: 50px 20px 25px;
  }

  .footer-container {
    max-width: 1400px;
  }
}

/* Ultra-wide screens */
@media (min-width: 1920px) {
  .footer-container {
    max-width: 1600px;
  }

  .footer-section h3 {
    font-size: 1.4rem;
  }

  .about-text,
  .footer-section ul li a,
  .contact-info li {
    font-size: 1.1rem;
  }
}

/* Print styles */
@media print {
  .footer {
    background: #2C2F32 !important;
    color: #EAECEE !important;
    border-top: 2px solid #000000;
  }

  .footer-section h3 {
    color: #000000 !important;
    border-bottom-color: #000000;
  }

  .social-icons {
    display: none;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .footer-section ul li,
  .social-icons a,
  .logo img {
    transition: none;
    transform: none;
  }

  .footer-section ul li:hover {
    transform: none;
  }

  .social-icons a:hover {
    transform: none;
  }

  .logo img:hover {
    transform: none;
  }
}

/* Custom Scrollbar for Entire Website */
/* Webkit Browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #f0f2f5;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: #0074b7;
  border-radius: 6px;
  border: 2px solid #f0f2f5;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #005a8e;
  border: 2px solid #f0f2f5;
}

::-webkit-scrollbar-thumb:active {
  background: #004a7a;
}

::-webkit-scrollbar-corner {
  background: #f0f2f5;
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #0074B7 #F0F2F5;
}

/* Apply to all elements that can scroll */
* {
  scrollbar-width: thin;
  scrollbar-color: #0074B7 #F0F2F5;
}

/* Smooth scrolling for entire site */
html {
  scroll-behavior: smooth;
}

/* Specific styling for body */
body {
  scrollbar-width: thin;
  scrollbar-color: #0074B7 #F0F2F5;
}

/* Textareas */
textarea::-webkit-scrollbar {
  width: 8px;
}

textarea::-webkit-scrollbar-track {
  background: #FFFFFF;
  border-radius: 4px;
}

textarea::-webkit-scrollbar-thumb {
  background: #0074b7;
  border-radius: 4px;
}

/* Contact drawer specific (already in your code but ensuring consistency) */
.contact-drawer::-webkit-scrollbar {
  width: 8px;
}

.contact-drawer::-webkit-scrollbar-track {
  background: #FFFFFF;
  border-radius: 4px;
}

.contact-drawer::-webkit-scrollbar-thumb {
  background: #0074b7;
  border-radius: 4px;
}

/* Firefox for contact drawer */
.contact-drawer {
  scrollbar-width: thin;
  scrollbar-color: #0074b7 #FFFFFF;
}

/* Any element with overflow */
div::-webkit-scrollbar,
section::-webkit-scrollbar,
main::-webkit-scrollbar,
aside::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

div::-webkit-scrollbar-track,
section::-webkit-scrollbar-track,
main::-webkit-scrollbar-track,
aside::-webkit-scrollbar-track {
  background: #f0f2f5;
  border-radius: 4px;
}

div::-webkit-scrollbar-thumb,
section::-webkit-scrollbar-thumb,
main::-webkit-scrollbar-thumb,
aside::-webkit-scrollbar-thumb {
  background: #0074b7;
  border-radius: 4px;
}

/* Responsive scrollbars */
@media (max-width: 768px) {
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    border: 1px solid #f0f2f5;
  }

  .contact-drawer::-webkit-scrollbar {
    width: 6px;
  }

  textarea::-webkit-scrollbar {
    width: 6px;
  }
}

@media (max-width: 480px) {
  ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }

  ::-webkit-scrollbar-thumb {
    border: 1px solid #f0f2f5;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  ::-webkit-scrollbar-thumb {
    background: #005a8e;
    border: 1px solid #ffffff;
  }

  ::-webkit-scrollbar-track {
    background: #ffffff;
  }

  html {
    scrollbar-color: #005a8e #000000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  ::-webkit-scrollbar-thumb {
    transition: none;
  }
}

/* Print styles - hide scrollbars */
@media print {
  ::-webkit-scrollbar {
    display: none;
  }

  html {
    scrollbar-width: none;
  }
}

/* Ensure scrollbars work on all possible scrollable elements */
[style*="overflow: auto"]::-webkit-scrollbar,
[style*="overflow: scroll"]::-webkit-scrollbar,
[style*="overflow-x: auto"]::-webkit-scrollbar,
[style*="overflow-y: auto"]::-webkit-scrollbar,
[style*="overflow-x: scroll"]::-webkit-scrollbar,
[style*="overflow-y: scroll"]::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

[style*="overflow: auto"]::-webkit-scrollbar-track,
[style*="overflow: scroll"]::-webkit-scrollbar-track,
[style*="overflow-x: auto"]::-webkit-scrollbar-track,
[style*="overflow-y: auto"]::-webkit-scrollbar-track,
[style*="overflow-x: scroll"]::-webkit-scrollbar-track,
[style*="overflow-y: scroll"]::-webkit-scrollbar-track {
  background: #f0f2f5;
  border-radius: 4px;
}

[style*="overflow: auto"]::-webkit-scrollbar-thumb,
[style*="overflow: scroll"]::-webkit-scrollbar-thumb,
[style*="overflow-x: auto"]::-webkit-scrollbar-thumb,
[style*="overflow-y: auto"]::-webkit-scrollbar-thumb,
[style*="overflow-x: scroll"]::-webkit-scrollbar-thumb,
[style*="overflow-y: scroll"]::-webkit-scrollbar-thumb {
  background: #0074b7;
  border-radius: 4px;
}

/* Light theme: white text on blue controls */
.contact-icon,
.get-in-touch-btn,
.submit-btn:not(:disabled),
.dropdown-menu li a:hover,
.btn,
.social-icons a:hover,
.view-products-btn,
.tag,
.whatsapp-float { color: #ffffff !important; }

