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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #0A1F44;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

html {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

.page-wrapper {
  width: 100%;
  min-height: 100%;
  background: #ffffff;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 16px 5%;
  transition: all 0.3s ease;
  will-change: transform;
  transform: translateZ(0);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #0A1F44;
}

.navbar-logo img {
  height: 32px;
  width: auto;
}

.navbar-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: #0A1F44;
  letter-spacing: -0.5px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.navbar-menu li {
  position: relative;
}

.navbar-menu a {
  color: #0A1F44;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s ease;
  padding: 8px 0;
}

.navbar-menu a:hover {
  color: #4DA3FF;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #4DA3FF;
  transition: width 0.3s ease;
}

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

.navbar-cta {
  padding: 12px 36px;
  background: #4DA3FF;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.navbar-cta:hover {
  background: #3A8FE6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(77, 163, 255, 0.3);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.navbar-toggle span {
  width: 25px;
  height: 3px;
  background: #0A1F44;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero-section {
  width: 100%;
  background: linear-gradient(rgba(10,31,68,0.85), rgba(10,31,68,0.85)), url('https://images.unsplash.com/photo-1587854692152-cbe660dbde88?w=1920&q=80') center/cover no-repeat;
  background-attachment: fixed;
  padding: 80px 5%;
  padding-top: 140px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.logo-container {
  margin-bottom: 40px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateZ(0);
}

.logo-icon {
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}



.hero-subheadline {
  font-size: 20px;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 650px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 16px 36px;
  background: #4DA3FF;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(77, 163, 255, 0.3);
}

.btn-primary:hover {
  background: #3A8FE6;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(77, 163, 255, 0.4);
}

.btn-secondary {
  padding: 16px 36px;
  background: transparent;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Value Cards */
.value-cards {
  max-width: 1200px;
  margin: 100px auto 0;
  padding: 0 5%;
  position: relative;
  z-index: 3;
}

.value-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.value-card {
  background: #ffffff;
  padding: 36px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  transform: translateZ(0);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.value-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-title {
  font-size: 22px;
  font-weight: 700;
  color: #0A1F44;
  margin-bottom: 12px;
}

.value-description {
  font-size: 15px;
  color: #7D8597;
  line-height: 1.6;
}

/* Featured Products Section */
.products-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #0A1F44;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: #7D8597;
  max-width: 600px;
  margin: 0 auto;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: #f8f9fa;
  padding: 60px;
  border-radius: 16px;
}

.product-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.product-image {
  background: #ffffff;
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-image {
  cursor: pointer;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  will-change: transform;
}

.glove-icon {
  font-size: 80px;
}

.product-content {
  padding: 20px;
}

.product-badge {
  display: inline-block;
  padding: 8px 16px;
  background: #4DA3FF;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-headline {
  font-size: 36px;
  font-weight: 800;
  color: #0A1F44;
  margin-bottom: 20px;
  line-height: 1.3;
}

.product-description {
  font-size: 17px;
  color: #7D8597;
  margin-bottom: 30px;
  line-height: 1.7;
}

.product-features {
  list-style: none;
  margin-bottom: 30px;
}

.product-features li {
  padding: 10px 0;
  color: #444;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-features li::before {
  content: '✓';
  color: #4DA3FF;
  font-weight: bold;
  font-size: 18px;
}

/* Shop Products Section */
.shop-products-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 5%;
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  margin-bottom: 50px;
}

.shop-product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  transform: translateZ(0);
  text-decoration: none;
  color: inherit;
}

.shop-product-card:hover {
  transform: translateY(-4px);
  cursor: pointer;
}

.shop-product-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  border: 3px solid #f8f9fa;
}

.shop-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  will-change: transform;
}

.shop-product-card:hover .shop-product-image {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: #4DA3FF;
}

.shop-product-icon {
  font-size: 48px;
  color: #4DA3FF;
}

.shop-product-label {
  font-size: 15px;
  font-weight: 600;
  color: #0A1F44;
  line-height: 1.4;
  margin: 0;
}

  .shop-products-cta {
    text-align: center;
    margin-top: 40px;
  }

/* Responsive Shop Products Grid */
@media (max-width: 1024px) {
  .shop-products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .shop-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .shop-product-image {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 480px) {
  .shop-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .shop-product-image {
    width: 120px;
    height: 120px;
  }
  
  .shop-product-label {
    font-size: 14px;
  }
}

/* Industries Section */
.industries-section {
  background: #0A1F44;
  padding: 100px 5%;
  width: 100%;
}

.industries-content {
  max-width: 1200px;
  margin: 0 auto;
}

.industries-section .section-title {
  color: #ffffff !important;
}

.industries-section .section-subtitle {
  color: #e0e0e0;
}

.hero-headline {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 700px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.industry-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 48px 36px;
  border-radius: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  will-change: transform;
  transform: translateZ(0);
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4DA3FF 0%, #6BB3FF 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-card:hover {
  background: linear-gradient(135deg, rgba(77, 163, 255, 0.15) 0%, rgba(77, 163, 255, 0.08) 100%);
  border-color: rgba(77, 163, 255, 0.6);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(77, 163, 255, 0.2);
}

.industry-icon {
  font-size: 52px;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-card:hover .industry-icon {
  transform: scale(1.05);
}

.industry-name {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.industry-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-top: 8px;
}

/* Trusted By Section */
.trusted-by {
  background: #ffffff;
  padding: 80px 5% 100px;
  text-align: center;
}

.trusted-title {
  font-size: 42px;
  font-weight: 800;
  color: #0A1F44;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}

.trusted-logos {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.trusted-logo-name {
  font-size: 15px;
  font-weight: 600;
  color: #7D8597;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s ease;
  text-align: center;
  margin-top: 4px;
}

.trusted-logo-item:hover .trusted-logo-name {
  opacity: 0.8;
  filter: grayscale(0%);
}

.trusted-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.trusted-logos img,
.trusted-logos svg {
  max-height: 100px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.trusted-logos img:hover,
.trusted-logos svg:hover {
  opacity: 0.8;
  filter: grayscale(0%);
}

/* Footer */
.footer-section {
  background: #0A1F44;
  padding: 80px 5% 40px;
  width: 100%;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon img {
  height: 32px;
  width: auto;
}

.footer-logo-text {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
}

.footer-tagline {
  font-size: 15px;
  color: #999;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #999;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #666;
  font-size: 14px;
}

/* About Us Section */
.about-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 5%;
}

.about-content {
  margin-top: 60px;
}

.about-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.about-text {
  padding: 20px;
}

.about-text h3 {
  font-size: 32px;
  font-weight: 800;
  color: #0A1F44;
  margin-bottom: 24px;
  line-height: 1.3;
}

.about-text p {
  font-size: 17px;
  color: #7D8597;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-image {
  margin-top: 40px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 100%;
}

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

.about-stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #4DA3FF;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 15px;
  color: #7D8597;
  font-weight: 600;
}

.about-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  min-height: 400px;
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
  will-change: transform;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex-direction: column;
    padding: 20px 5%;
    gap: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    will-change: transform;
  }

  .navbar-menu.active {
    transform: translateX(0);
  }

  .navbar-menu li {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .navbar-menu a {
    display: block;
    width: 100%;
  }

  .navbar-menu a::after {
    display: none;
  }

  .navbar-cta {
    margin-top: 12px;
    text-align: center;
    width: 100%;
  }

  .navbar-toggle {
    display: flex;
  }

  .hero-section {
    background-attachment: scroll;
  }

  .hero-headline {
    font-size: 36px;
  }

  .hero-subheadline {
    font-size: 17px;
  }


  .about-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    margin-top: 0;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-stat-number {
    font-size: 36px;
  }

  .product-showcase {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .value-cards {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .shop-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .trusted-logos {
    gap: 40px;
  }

  .trusted-logos img {
    max-height: 45px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    background-attachment: scroll;
  }
  
  .product-modal-body {
    padding: 40px 20px;
  }
  
  .shop-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .shop-product-image {
    width: 120px;
    height: 120px;
  }
  
  .shop-product-label {
    font-size: 14px;
  }

  .shop-product-icon {
    font-size: 40px;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trusted-logos {
    gap: 30px;
    flex-direction: column;
  }

  .trusted-logos img {
    max-height: 40px;
  }
}

/* Product Modal */
.product-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-modal.active {
  display: flex;
}

.product-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 31, 68, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.product-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 10001;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #7D8597;
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10002;
  transition: all 0.3s ease;
  line-height: 1;
}

.product-modal-close:hover {
  background: #0A1F44;
  transform: rotate(90deg);
}

.product-modal-body {
  padding: 60px 40px;
}

.product-modal-image {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.product-modal-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-modal-title {
  font-size: 32px;
  font-weight: 800;
  color: #0A1F44;
  margin-bottom: 16px;
  text-align: center;
}

.product-modal-description {
  font-size: 17px;
  color: #7D8597;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: center;
}

.product-modal-features {
  list-style: none;
  margin-bottom: 40px;
}

.product-modal-features li {
  padding: 12px 0;
  color: #0A1F44;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-modal-features li::before {
  content: '✓';
  color: #4DA3FF;
  font-weight: bold;
  font-size: 20px;
  flex-shrink: 0;
}

.product-modal-cta {
  text-align: center;
}

.contact-section {
  padding: 100px 5%;
  background: #f8f9fa;
  max-width: 1200px;
  margin: 0 auto;
}

/* Products Catalog Section */
.products-catalog-section {
  max-width: 1400px;
  margin: 100px auto;
  padding: 0 5%;
  overflow-x: hidden;
  width: 100%;
}

/* Products Toolbar */
.products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.search-bar-wrapper {
  position: relative;
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}

.search-bar {
  width: 100%;
  padding: 12px 20px 12px 45px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  color: #0A1F44;
  transition: border-color 0.3s ease;
}

.search-bar:focus {
  outline: none;
  border-color: #4DA3FF;
}

.search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.filter-toggle-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #4DA3FF;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.filter-toggle-btn:hover {
  background: #3A8FE6;
}

.filter-toggle-btn svg {
  width: 18px;
  height: 18px;
}

.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sort-label {
  font-size: 14px;
  font-weight: 600;
  color: #7D8597;
}

.sort-select {
  padding: 10px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: #0A1F44;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.sort-select:focus {
  outline: none;
  border-color: #4DA3FF;
}

.results-count {
  font-size: 14px;
  color: #7D8597;
  font-weight: 500;
}

/* Products Layout */
.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
}

/* Filter Sidebar */
.products-filters {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 0 12px 12px 0;
  height: fit-content;
  position: static;
  width: 280px;
  display: block;
  align-self: start;
  margin-left: -5%;
  margin-right: 0;
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e0e0e0;
}

.filters-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0A1F44;
  margin: 0;
}

.clear-filters-btn {
  background: none;
  border: none;
  color: #4DA3FF;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.3s ease;
}

.clear-filters-btn:hover {
  color: #3A8FE6;
}

.filter-group {
  margin-bottom: 32px;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-group-title {
  font-size: 16px;
  font-weight: 700;
  color: #0A1F44;
  margin-bottom: 16px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  padding: 10px 0;
  cursor: pointer;
  font-size: 14px;
  color: #7D8597;
  transition: color 0.3s ease;
}

.filter-checkbox:hover {
  color: #0A1F44;
}

.filter-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  cursor: pointer;
  accent-color: #4DA3FF;
}

.filter-checkbox span {
  flex: 1;
}

/* Products Main Area */
.products-main {
  min-width: 0;
  padding-right: 5%;
  overflow-x: hidden;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  min-height: 32px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #4DA3FF;
  color: #ffffff;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.filter-chip-remove {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: #ffffff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding: 0;
  transition: background 0.3s ease;
}

.filter-chip-remove:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 60px;
  max-width: 100%;
  width: 100%;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #7D8597;
}

.no-results p {
  font-size: 18px;
  margin: 0;
}

/* Updated Product Card with Image */
.product-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  min-width: 0;
  width: 100%;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.product-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #f8f9fa;
  display: block;
}

.product-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #0A1F44;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-card-specs {
  font-size: 13px;
  color: #7D8597;
  margin-bottom: 16px;
  line-height: 1.5;
}

.product-card .btn-primary {
  margin-top: auto;
  width: 100%;
  text-align: center;
  text-decoration: none;
  display: block;
  padding: 12px 24px;
}

/* Category Sections */
.category-section {
  margin-bottom: 60px;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.category-header h3 {
  font-size: 28px;
  font-weight: 800;
  color: #0A1F44;
  margin: 0;
}

.view-all-link {
  color: #4DA3FF;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.view-all-link:hover {
  color: #3A8FE6;
  text-decoration: underline;
}

.category-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 16px;
}

/* Responsive Products Layout */
@media (max-width: 1024px) {
  .products-layout {
    display: grid;
    grid-template-columns: 1fr;
  }
  
  .products-grid,
  .category-products-grid {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    gap: 24px;
  }
  
  .products-filters {
    position: static;
    width: 100%;
    border-radius: 12px;
    margin-bottom: 30px;
    margin-left: 0;
    margin-right: 0;
    max-height: none;
  }
  
  .products-main {
    padding-right: 0;
  }
  
  .product-card {
    min-width: 200px;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .products-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  
  .search-bar-wrapper {
    max-width: 100%;
  }
  
  .toolbar-right {
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
  }
  
  .filter-toggle-btn {
    display: flex;
  }
  
  .products-layout {
    grid-template-columns: 1fr;
  }
  
  .products-filters {
    position: static;
    margin-bottom: 30px;
    display: none;
  }
  
  .products-filters.mobile-visible {
    display: block;
  }
  
  .products-grid,
  .category-products-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 20px;
  }
  
  .product-card {
    min-width: 180px;
    max-width: none;
  }
  
  .category-header h3 {
    font-size: 24px;
  }
  
  .sort-wrapper {
    order: 3;
    width: 100%;
    margin-top: 12px;
  }
  
  .results-count {
    order: 2;
  }
}

@media (max-width: 480px) {
  .products-grid,
  .category-products-grid {
    grid-template-columns: 1fr;
  }
  
  .product-card-image {
    height: 180px;
  }
  
  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Quote Request Modal */
.quote-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.quote-modal.active {
  display: flex;
}

.quote-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.quote-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 2001;
}

.quote-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #7D8597;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  line-height: 1;
}

.quote-modal-close:hover {
  background: #f8f9fa;
  color: #0A1F44;
}

.quote-modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #0A1F44;
  margin-bottom: 32px;
  margin-top: 0;
  line-height: 1.3;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #0A1F44;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  pointer-events: none;
  z-index: 1;
}

.input-wrapper input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  color: #0A1F44;
  transition: border-color 0.3s ease;
}

.input-wrapper input:focus {
  outline: none;
  border-color: #4DA3FF;
}

.phone-input-wrapper {
  display: flex;
  align-items: stretch;
}

.phone-prefix {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 12px;
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  border-right: none;
  border-radius: 8px 0 0 8px;
}

.flag-icon {
  width: 20px;
  height: 15px;
  flex-shrink: 0;
}

.country-code {
  font-size: 16px;
  font-weight: 600;
  color: #0A1F44;
}

.phone-input-wrapper input {
  flex: 1;
  border-left: none;
  border-radius: 0 8px 8px 0;
  padding-left: 16px;
}

.phone-input-wrapper input:focus {
  border-left: 2px solid #4DA3FF;
}

.input-hint {
  font-size: 12px;
  color: #7D8597;
  margin: 0;
  margin-top: -4px;
}

.quote-submit-btn {
  width: 100%;
  padding: 16px 24px;
  background: #28a745;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.quote-submit-btn:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
}

.quote-submit-btn:active {
  transform: translateY(0);
}

/* Quote Modal Product Info */
.quote-modal-product-info {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 24px;
}

.quote-modal-product-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quote-modal-product-details {
  flex: 1;
}

.quote-modal-product-name {
  font-size: 20px;
  font-weight: 700;
  color: #0A1F44;
  margin-bottom: 8px;
  margin-top: 0;
  line-height: 1.3;
}

.quote-modal-product-specs {
  font-size: 14px;
  color: #7D8597;
  margin: 0;
  line-height: 1.5;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .quote-modal-content {
    padding: 32px 24px;
    max-width: 100%;
  }
  
  .quote-modal-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
  
  .quote-form {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .quote-modal {
    padding: 10px;
  }
  
  .quote-modal-content {
    padding: 24px 20px;
  }
  
  .quote-modal-close {
    top: 12px;
    right: 12px;
    font-size: 28px;
  }
  
  .quote-modal-product-info {
    flex-direction: column;
    text-align: center;
  }
  
  .quote-modal-product-image {
    width: 100px;
    height: 100px;
  }
}

/* About Content Section */
.about-content-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 5%;
}

.about-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.about-content-block {
  width: 100%;
}

.about-content-block .section-title {
  text-align: left;
  margin-bottom: 32px;
}

.about-text-content {
  max-width: 900px;
}

.about-text-content p {
  font-size: 17px;
  color: #7D8597;
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-text-content p:last-child {
  margin-bottom: 0;
}

/* Responsive About Content */
@media (max-width: 768px) {
  .about-content-wrapper {
    gap: 60px;
  }
  
  .about-content-block .section-title {
    font-size: 32px;
  }
  
  .about-text-content p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .about-content-wrapper {
    gap: 50px;
  }
  
  .about-content-block .section-title {
    font-size: 28px;
    text-align: center;
  }
  
  .about-text-content {
    text-align: left;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-navy {
  color: #0A1F44;
}

.text-blue {
  color: #4DA3FF;
}

.text-gray {
  color: #7D8597;
}

.bg-navy {
  background-color: #0A1F44;
}

.bg-blue {
  background-color: #4DA3FF;
}

.bg-gray {
  background-color: #7D8597;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.p-20 {
  padding: 20px;
}

/* Industries Detail Page Styles */
.industries-detail-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 5%;
}

.industries-detail-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.industry-detail-block {
  width: 100%;
  padding: 60px 40px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-detail-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.industry-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
}

.industry-detail-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 12px;
}

.industry-detail-title h2 {
  font-size: 36px;
  color: #0A1F44;
  margin-bottom: 12px;
  font-weight: 700;
}

.industry-detail-subtitle {
  font-size: 18px;
  color: #7D8597;
  line-height: 1.6;
}

.industry-detail-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
}

.industry-detail-text {
  font-size: 17px;
  color: #7D8597;
  line-height: 1.8;
}

.industry-detail-text p {
  margin-bottom: 20px;
}

.industry-products {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
}

.industry-products h3 {
  font-size: 22px;
  color: #0A1F44;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.industry-product-list li {
  font-size: 16px;
  color: #7D8597;
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.industry-product-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4DA3FF;
  font-weight: 700;
  font-size: 18px;
}

.industries-cta-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 80px 5%;
  background: linear-gradient(135deg, #0A1F44 0%, #1a3a6b 100%);
  border-radius: 20px;
  text-align: center;
}

.industries-cta-content h2 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
}

.industries-cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

@media (max-width: 968px) {
  .industry-detail-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .industry-detail-header {
    flex-direction: column;
    gap: 20px;
  }
  
  .industry-detail-icon {
    width: 60px;
    height: 60px;
  }
  
  .industry-detail-title h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .industries-detail-section {
    margin: 60px auto;
    padding: 0 4%;
  }
  
  .industries-detail-content {
    gap: 50px;
  }
  
  .industry-detail-block {
    padding: 40px 24px;
  }
  
  .industry-detail-title h2 {
    font-size: 28px;
  }
  
  .industry-detail-subtitle {
    font-size: 16px;
  }
  
  .industry-detail-text {
    font-size: 16px;
  }
  
  .industries-cta-section {
    padding: 60px 4%;
    margin: 60px auto;
  }
  
  .industries-cta-content h2 {
    font-size: 32px;
  }
  
  .industries-cta-content p {
    font-size: 16px;
  }
  
  .industries-cta-content .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .industries-cta-content .cta-buttons a {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .industry-detail-block {
    padding: 30px 20px;
  }
  
  .industry-detail-title h2 {
    font-size: 24px;
  }
  
  .industry-products {
    padding: 24px;
  }
  
  .industries-cta-content h2 {
    font-size: 28px;
  }
}

/* Contact Page Styles */
.contact-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 5%;
}

.contact-content {
  width: 100%;
}

.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.contact-form-wrapper,
.contact-info-wrapper {
  width: 100%;
}

.contact-form-wrapper .section-title,
.contact-info-wrapper .section-title {
  text-align: center;
  margin-bottom: 12px;
}

.contact-form-wrapper .section-subtitle,
.contact-info-wrapper .section-subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: #7D8597;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label {
  font-size: 15px;
  font-weight: 600;
  color: #0A1F44;
}

.contact-form .required {
  color: #e74c3c;
}

.contact-form .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-form .input-icon {
  position: absolute;
  left: 16px;
  z-index: 1;
  pointer-events: none;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  color: #0A1F44;
  transition: all 0.3s ease;
  font-family: inherit;
  background: #ffffff;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4DA3FF;
  box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.1);
}

.contact-form textarea {
  padding-left: 16px;
  resize: vertical;
  min-height: 120px;
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%237D8597' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact-form .phone-code-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-right: 2px solid #e0e0e0;
  background: #f8f9fa;
  font-size: 14px;
  color: #7D8597;
  font-weight: 600;
}

.contact-form .phone-code-selector svg {
  width: 16px;
  height: 16px;
}

.contact-form input[type="tel"] {
  padding-left: 12px;
}

.contact-form .input-hint {
  font-size: 13px;
  color: #7D8597;
  margin-top: 4px;
}

.contact-submit-btn {
  width: 100%;
  padding: 16px 24px;
  background: #4DA3FF;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(77, 163, 255, 0.3);
}

.contact-submit-btn:hover {
  background: #3a8feb;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(77, 163, 255, 0.4);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.contact-info-card {
  padding: 24px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #4DA3FF;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(77, 163, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 16px;
}

.contact-info-card h3 {
  font-size: 18px;
  color: #0A1F44;
  margin-bottom: 12px;
  font-weight: 600;
}

.contact-info-card p {
  font-size: 15px;
  color: #7D8597;
  line-height: 1.8;
  margin-bottom: 8px;
}

.contact-info-card a {
  color: #4DA3FF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: #3a8feb;
  text-decoration: underline;
}

.contact-map {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  background: #f0f0f0;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #f8f9fa;
  color: #7D8597;
}

.map-placeholder svg {
  opacity: 0.5;
}

.map-placeholder p {
  font-size: 14px;
  color: #7D8597;
}

@media (max-width: 968px) {
  .contact-layout {
    gap: 60px;
  }
}

@media (max-width: 968px) {
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-section {
    margin: 60px auto;
    padding: 0 4%;
  }
  
  .contact-layout {
    gap: 50px;
  }
  
  .contact-form {
    gap: 20px;
  }
  
  .contact-info-cards {
    gap: 20px;
  }
  
  .contact-map {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form select,
  .contact-form textarea {
    padding: 12px 14px 12px 44px;
    font-size: 15px;
  }
  
  .contact-info-card {
    padding: 20px;
  }
  
  .contact-map {
    height: 200px;
  }
}
