/* Base Styles */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* Header Styles */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 20px 30px;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1000;
}

/* Orange Button Styles */
.btn-orange {
  background-color: #192a56;
  border-color: #192a56;
  color: white;
}

.btn-orange:hover {
  background-color: #192a56; /* Slightly darker orange on hover */
  border-color: #192a56;
  color: white;
}

.btn-outline-orange {
  color: #192a56;
  border-color: #192a56;
}

.btn-outline-orange:hover {
  background-color: #192a56;
  color: white;
}

/* Slideshow Container Adjustments */
.slideshow-container {
  max-width: 1200px;
  margin: 30px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Core Values Section - Enhanced */
.core-values {
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(233, 236, 239, 0.95) 100%);
  padding: 2rem 2rem;
  margin: 3rem auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
  max-width: 1200px;
}

.value-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border-top: 5px solid #e58e26;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-icon {
  font-size: 3rem;
  color: #e58e26;
  margin-bottom: 1.5rem;
}

.value-title {
  font-weight: 700;
  color: #e58e26;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  position: relative;
  display: inline-block;
}

.value-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #e58e26;
}

.value-content {
  color: #495057;
  line-height: 1.8;
  font-size: 1.1rem;
}

.slogan-highlight {
  font-weight: bold;
  color: #e58e26;
  font-style: italic;
}

/* Products Section */
.products-container {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px;
  width: 100%;
  border-radius: 15px;
  margin: 30px auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 1200px;
}

.products-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  margin-top: 20px;
}

.product-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  flex: 1 1 180px;
  max-width: 200px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-color: rgba(13, 110, 253, 0.2);
}

.product-image-container {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 15px;
}

.product-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.1);
}

.product-name {
  margin-top: 15px;
  font-weight: 600;
  font-size: 15px;
  color: #333;
  width: 100%;
}

/* Footer Styles - Enhanced */
.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  color: #ecf0f1;
  padding: 50px 0 30px;
  font-size: 18px;
  margin-top: 50px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #e58e26, #6c757d, #e58e26);
}

.footer a {
  color: #ecf0f1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: #e58e26;
  padding-left: 5px;
}

.footer-section {
  margin-bottom: 25px;
}

.footer-heading {
  color: #e58e26;
  font-size: 1.5rem;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
  font-weight: 600;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 60px;
  height: 2px;
  background: #e58e26;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.footer-links li::before {
  content: '\203A';
  position: absolute;
  left: 0;
  color: #e58e26;
  font-weight: bold;
}

.footer-links i {
  margin-right: 10px;
  color: #e58e26;
}

.operation-hours .hours-item {
  display: flex;
  margin-bottom: 18px;
  align-items: flex-start;
}

.operation-hours i {
  margin-right: 12px;
  color: #e58e26;
  margin-top: 5px;
  font-size: 1.1rem;
}

.operation-hours span {
  display: block;
  line-height: 1.6;
}

.newsletter .form-control {
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: white;
  height: 45px;
}

.newsletter .form-control::placeholder {
  color: #bdc3c7;
  opacity: 0.8;
}

.newsletter .btn {
  border-radius: 5px;
  background: #e58e26;
  border: none;
  height: 45px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.newsletter .btn:hover {
  background: #0b5ed7;
}

.social-media {
  margin-top: 25px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-icon:hover {
  background: #e58e26;
  color: white;
  transform: translateY(-5px);
}

.footer-bottom {
  color: #bdc3c7;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright-text {
  display: block;
  margin-top: 15px;
  font-size: 0.9rem;
}

.footer-logo img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.footer-logo:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .core-values {
    padding: 3rem 1rem;
  }
  
  .value-card {
    padding: 2rem;
  }
  
  .products-row {
    gap: 15px;
  }
  
  .product-card {
    flex: 1 1 160px;
  }
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }
  
  .search-bar {
    width: 100% !important;
    margin: 10px 0;
  }
  
  .value-card {
    margin-bottom: 20px;
  }
  
  .product-card {
    flex: 1 1 140px;
    min-height: 180px;
  }
  
  .product-image-container {
    height: 100px;
  }
}

@media (max-width: 576px) {
  .slideshow-container {
    border-radius: 0;
  }
  
  .core-values {
    margin: 1rem 0;
    border-radius: 0;
  }
  
  .products-container {
    border-radius: 0;
    padding: 20px 15px;
  }
  
  .product-card {
    flex: 1 1 120px;
    padding: 15px 10px;
  }
  
  .footer {
    padding: 30px 0 20px;
  }
  
  .footer-heading {
    font-size: 1.1rem;
  }
}