.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.catalog-grid-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.catalog-grid-item:hover {
  transform: translateY(-5px);
}
.catalog-grid-item:hover .glass-overlay {
  opacity: 1;
}
.catalog-grid-image {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.glass-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: white;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.glass-overlay::after {
  content: "View Details";
  display: block;
  font-weight: 500;
}

.catalog-grid-item {
  transition: transform 0.3s ease;
}
.catalog-grid-item:hover {
  transform: translateY(-5px);
}

.notification {
  transition: all 0.3s ease;
  margin: 15px 0;
  padding: 15px;
  border-radius: 8px;
  font-family: var(--heading-font);
  display: none;
}
.notification-container {
  max-width: 800px;
  margin: 0 auto;
}
.notification--loading {
  background: rgba(13, 71, 161, 0.1);
  color: #0d47a1;
  border: 1px solid rgba(13, 71, 161, 0.2);
  display: block;
}
.notification--success {
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
  border: 1px solid rgba(46, 125, 50, 0.2);
  display: block;
}
.notification--error {
  background: rgba(198, 40, 40, 0.1);
  color: #c62828;
  border: 1px solid rgba(198, 40, 40, 0.2);
  display: block;
}
.notification--error div {
  margin: 5px 0;
  padding: 3px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.notification-enter {
  animation: fadeIn 0.3s ease-out;
}

.about-us {
  color: #333;
  line-height: 1.6;
  padding: 20px;
}
.about-us p {
  margin-bottom: 15px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.breadcrumbs ol {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs ol li {
  opacity: 0;
  animation: fadeInRight 0.6s ease forwards;
}
.breadcrumbs ol li:nth-child(1) {
  animation-delay: 0.2s;
}
.breadcrumbs ol li:nth-child(2) {
  animation-delay: 0.4s;
}
.breadcrumbs ol li.current {
  max-width: 200px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  animation: typing 0.8s steps(40) forwards;
}

.page-title h1 {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

#services-container .service-detail {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}
#services-container .service-detail:nth-child(1) {
  animation-delay: 0.3s;
}
#services-container .service-detail:nth-child(2) {
  animation-delay: 0.4s;
}
#services-container .service-detail:nth-child(3) {
  animation-delay: 0.5s;
}
#services-container .service-detail:nth-child(4) {
  animation-delay: 0.6s;
}
#services-container .service-detail:nth-child(5) {
  animation-delay: 0.7s;
}
#services-container .service-detail:nth-child(6) {
  animation-delay: 0.8s;
}
#services-container .service-detail:nth-child(7) {
  animation-delay: 0.9s;
}
#services-container .service-detail:nth-child(8) {
  animation-delay: 1s;
}
#services-container .service-detail:nth-child(9) {
  animation-delay: 1.1s;
}
#services-container .service-detail:nth-child(10) {
  animation-delay: 1.2s;
}

.loading-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

main[role=main] {
  margin-top: 10rem;
  padding-bottom: 3rem;
}
@media (max-width: 768px) {
  main[role=main] {
    margin-top: 5rem;
  }
}

.contact-form {
  direction: rtl;
  font-family: "Vazir", "Samim", sans-serif;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.privacy-notice {
  background: #e3f2fd;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-right: 4px solid #2196F3;
}

.privacy-notice p {
  color: #0d47a1;
  font-size: 0.9rem;
  margin: 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2d3436;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #dfe6e9;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  border-color: #74b9ff;
  box-shadow: 0 0 8px rgba(116, 185, 255, 0.3);
}

.benefits-box {
  background: #f5f6fa;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1.5rem 0;
}

.benefits-box h3 {
  color: #2d3436;
  margin-top: 0;
  margin-bottom: 1rem;
}

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

.benefits-list li {
  padding: 0.5rem 0;
  color: #636e72;
  font-size: 0.95rem;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #0984e3, #74b9ff);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(116, 185, 255, 0.4);
}

@media (max-width: 768px) {
  .form-container {
    padding: 1.5rem;
  }
  .form-group input {
    padding: 0.7rem;
  }
}/*# sourceMappingURL=main.css.map */