* {
  font-family: "Cairo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  font-family: "Cairo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cairo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
}

button, .btn {
  font-family: "Cairo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

input, textarea, select {
  font-family: "Cairo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

a {
  font-family: "Cairo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

nav {
  font-family: "Cairo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.language-switcher-btn {
  font-family: "Cairo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

#hero-background-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  will-change: opacity;
  z-index: 0;
}
.hero-bg-image.active {
  opacity: 0.35;
  z-index: 1;
}
.hero-bg-image:not(.active) {
  z-index: 0;
}

#hero-background-slider .hero-bg-image:not(.active) {
  z-index: 0;
}

.category-image-wrapper {
  position: relative;
  padding: 20px;
}
.category-image-wrapper .category-blob-1 {
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  z-index: 0;
  animation: category-blob-animation-1 4s ease-in-out infinite;
}
.category-image-wrapper .category-blob-2 {
  width: 130%;
  height: 130%;
  top: -15%;
  right: -15%;
  border-radius: 40% 60% 70% 30%/40% 70% 30% 60%;
  z-index: 0;
  animation: category-blob-animation-2 7s ease-in-out infinite;
}
.category-image-wrapper img {
  position: relative;
  z-index: 2;
}

@keyframes category-blob-animation-1 {
  0%, 100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    transform: rotate(12deg);
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
    transform: rotate(18deg);
  }
}
@keyframes category-blob-animation-2 {
  0%, 100% {
    border-radius: 40% 60% 70% 30%/40% 70% 30% 60%;
    transform: rotate(-12deg);
  }
  50% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    transform: rotate(-18deg);
  }
}
.categories-swiper .swiper-slide {
  width: auto;
  height: auto;
}

.categories-swiper .swiper-button-next,
.categories-swiper .swiper-button-prev {
  color: #4F46E5;
  background: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(79, 70, 229, 0.2);
  transition: all 0.3s ease;
}

.categories-swiper .swiper-button-next:hover,
.categories-swiper .swiper-button-prev:hover {
  background: #4F46E5;
  color: white;
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.4);
}

.categories-swiper .swiper-button-next:after,
.categories-swiper .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  .category-image-wrapper {
    padding: 15px;
  }
  .category-image-wrapper .category-blob-1 {
    width: 130%;
    height: 130%;
    top: -15%;
    left: -15%;
  }
  .category-image-wrapper .category-blob-2 {
    width: 120%;
    height: 120%;
    top: -10%;
    right: -10%;
  }
}
/* Products Slider Wrapper */
.products-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}
@media (max-width: 640px) {
  .products-slider-wrapper {
    padding: 12px 0;
  }
}

@keyframes scrollRightToLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 12px));
  }
}
.animate-scroll {
  animation: scrollRightToLeft 20s linear infinite;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}

.animate-scroll:hover {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .animate-scroll {
    animation-duration: 60s;
  }
  .products-slider-wrapper {
    padding: 16px 0;
  }
}
/* Product Card Styles */
#products-slider-container > div {
  flex-shrink: 0;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Smooth transitions - optimized for performance */
#products-slider-container > div {
  transition: box-shadow 0.2s ease;
}
#products-slider-container > div:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Product Card Enhanced Styles */
.product-card-hero {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease;
  min-width: 130px;
  max-width: 320px;
}
.product-card-hero:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.product-card-hero .product-image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-card-hero .product-content {
  padding: 16px;
}
.product-card-hero .product-name {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card-hero .product-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 12px;
}
@media (max-width: 640px) {
  .product-card-hero {
    border-radius: 12px;
    min-width: 150px;
    max-width: 150px;
  }
  .product-card-hero .product-image {
    height: 100px;
  }
  .product-card-hero .product-content {
    padding: 12px;
  }
  .product-card-hero .product-name {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .product-card-hero .product-description {
    font-size: 13px;
    margin-bottom: 8px;
  }
}

/* Category Filter Dropdown */
#category-filter {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}
#category-filter:hover {
  border-color: #9CA3AF;
}
#category-filter:focus {
  outline: none;
  border-color: #4F46E5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
#category-filter option {
  padding: 8px;
}

/* Product Card Item */
.product-card-item {
  cursor: pointer;
}
.product-card-item:hover .product-image {
  transform: scale(1.05);
}

/* Search Input */
#search-input:focus {
  outline: none;
  border-color: #4F46E5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
#search-input::-moz-placeholder {
  color: #9CA3AF;
}
#search-input::placeholder {
  color: #9CA3AF;
}

/* Clear Search Button */
#clear-search {
  transition: opacity 0.2s;
}
#clear-search:hover {
  opacity: 0.8;
}

/* Active Filters */
#active-filters {
  min-height: 40px;
}
#active-filters .filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
  color: #4F46E5;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
#active-filters .filter-tag .remove-filter {
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
}
#active-filters .filter-tag .remove-filter:hover {
  background: #C7D2FE;
  transform: scale(1.1);
}

/* No Results Message */
#no-results-message {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Product Modal */
#product-modal .modal-overlay {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
#product-modal .modal-content::-webkit-scrollbar {
  width: 8px;
}
#product-modal .modal-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
#product-modal .modal-content::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
#product-modal .modal-content::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .category-filter-btn {
    font-size: 12px;
    padding: 8px 12px;
  }
  .product-card-item .product-content {
    padding: 16px;
  }
  .product-card-item .product-name {
    font-size: 16px;
  }
  #product-modal .modal-content {
    max-height: 95vh;
  }
  #product-modal .modal-content .lg\:h-\[600px\] {
    height: auto !important;
  }
}
section {
  position: relative;
}
section + section {
  transition: background-color 0.3s ease;
}

h2 {
  line-height: 1.2;
}
h2 .text-transparent {
  background-clip: text;
  -webkit-background-clip: text;
}

span.text-indigo-600.font-medium.text-sm {
  letter-spacing: 0.1em;
  font-weight: 600;
}

.story-image-wrapper {
  position: relative;
  padding: 20px;
}
.story-image-wrapper .absolute {
  z-index: 0;
}
.story-image-wrapper .relative {
  position: relative;
  z-index: 1;
}
.story-image-wrapper img {
  position: relative;
  z-index: 2;
}

#gallery-container .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform 0.3s ease;
}
#gallery-container .gallery-item:hover {
  transform: scale(1.05);
}
#gallery-container .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
#gallery-container .gallery-item:hover img {
  transform: scale(1.1);
}
#gallery-container .gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
#gallery-container .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.value-card-leadership {
  background: white;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.value-card-leadership:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.value-card-leadership .value-icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #4F46E5;
  border-radius: 50%;
  color: #4F46E5;
  background: transparent;
}
.value-card-leadership .value-icon-circle svg {
  stroke-width: 2;
}
.value-card-leadership .value-title-leadership {
  font-size: 18px;
  font-weight: bold;
  color: #374151;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.value-card-leadership .value-description-leadership {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.commitments-wrapper {
  position: relative;
  padding: 20px 0;
}

.commitments-swiper {
  padding: 20px 0;
  overflow: visible;
}
.commitments-swiper.commitments-swiper-active {
  padding: 20px 0 60px;
}
.commitments-swiper .swiper-slide {
  width: auto;
  height: auto;
}

.commitment-card-modern {
  background: transparent;
  padding: 24px;
  text-align: center;
  min-width: 280px;
  max-width: 350px;
  width: 280px;
}
.commitments-swiper:not(.commitments-swiper-active) .commitment-card-modern {
  flex: 1;
}
.commitment-card-modern .commitment-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4F46E5;
}
.commitment-card-modern .commitment-icon-wrapper svg {
  stroke-width: 1.5;
}
.commitment-card-modern .commitment-title {
  font-size: 24px;
  font-weight: bold;
  color: #4F46E5;
  margin-bottom: 12px;
  line-height: 1.3;
}
.commitment-card-modern .commitment-description {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.commitments-nav-btn {
  z-index: 10;
}

.founder-image-wrapper {
  position: relative;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}
.founder-image-wrapper .founder-blob-1 {
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  z-index: 0;
  animation: blob-animation-1 8s ease-in-out infinite;
}
.founder-image-wrapper .founder-blob-2 {
  width: 110%;
  height: 110%;
  top: -5%;
  right: -5%;
  border-radius: 40% 60% 70% 30%/40% 70% 30% 60%;
  z-index: 0;
  animation: blob-animation-2 10s ease-in-out infinite;
}
.founder-image-wrapper .relative {
  position: relative;
  z-index: 1;
}
.founder-image-wrapper img {
  position: relative;
  z-index: 2;
}

@keyframes blob-animation-1 {
  0%, 100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    transform: rotate(12deg);
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
    transform: rotate(18deg);
  }
}
@keyframes blob-animation-2 {
  0%, 100% {
    border-radius: 40% 60% 70% 30%/40% 70% 30% 60%;
    transform: rotate(-12deg);
  }
  50% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    transform: rotate(-18deg);
  }
}
.founder-content-card {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.founder-content-card h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .founder-content-card h2 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .founder-content-card h2 {
    font-size: 3.5rem;
  }
}

#team-description-container p {
  margin-bottom: 16px;
}
#team-description-container p:last-child {
  margin-bottom: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.mx-auto.max-w-7xl {
  max-width: 80rem;
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-700 {
  color: #374151;
}

.text-gray-800 {
  color: #1f2937;
}

.text-gray-900 {
  color: #111827;
}

@media (max-width: 768px) {
  .value-card-leadership {
    padding: 24px 20px;
  }
  .value-card-leadership .value-icon-circle {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  .value-card-leadership .value-icon-circle svg {
    width: 32px;
    height: 32px;
  }
  .value-card-leadership .value-title-leadership {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .value-card-leadership .value-description-leadership {
    font-size: 13px;
  }
  .commitment-card-modern {
    min-width: 100%;
    max-width: 100%;
    padding: 20px;
  }
  .commitment-card-modern .commitment-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }
  .commitment-card-modern .commitment-icon-wrapper svg {
    width: 48px;
    height: 48px;
  }
  .commitment-card-modern .commitment-title {
    font-size: 20px;
  }
  .commitment-card-modern .commitment-description {
    font-size: 14px;
  }
  .commitments-nav-btn {
    display: none;
  }
  .founder-image-wrapper {
    padding: 20px;
  }
  .founder-image-wrapper .relative {
    width: 100% !important;
    max-width: 400px;
    height: 400px !important;
  }
  .founder-content-card {
    padding: 24px !important;
  }
  .founder-content-card h2 {
    font-size: 2rem !important;
  }
}
.contact-info-card {
  background: white;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.contact-info-card .contact-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4F46E5 0%, #EC4899 50%, #F97316 100%);
  border-radius: 50%;
  color: white;
}
.contact-info-card .contact-icon-wrapper svg {
  width: 36px;
  height: 36px;
  stroke-width: 2;
}
.contact-info-card .contact-title {
  font-size: 20px;
  font-weight: bold;
  color: #374151;
  margin-bottom: 12px;
}
.contact-info-card .contact-value {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  word-break: break-word;
}
.contact-info-card .contact-value a {
  color: #4F46E5;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-info-card .contact-value a:hover {
  color: #EC4899;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4F46E5;
}
.contact-form label {
  font-weight: 500;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

.social-media-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  max-width: 200px;
  flex: 1;
}
.social-media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.social-media-card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.social-media-card .social-icon-wrapper {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.social-media-card .social-icon-wrapper svg {
  width: 28px;
  height: 28px;
}
.social-media-card .social-icon-wrapper.facebook {
  background: #1877F2;
  color: white;
}
.social-media-card .social-icon-wrapper.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}
.social-media-card .social-icon-wrapper.twitter {
  background: #1DA1F2;
  color: white;
}
.social-media-card .social-icon-wrapper.linkedin {
  background: #0077B5;
  color: white;
}
.social-media-card .social-name {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}
.social-media-card:hover .social-icon-wrapper {
  transform: scale(1.1);
}

#form-message {
  padding: 16px;
  border-radius: 8px;
  margin-top: 16px;
}
#form-message.success {
  background: #D1FAE5;
  color: #065F46;
  border: 1px solid #10B981;
}
#form-message.error {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #EF4444;
}

#office-hours-container .office-hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
}
#office-hours-container .office-hour-item:last-child {
  border-bottom: none;
}
#office-hours-container .office-hour-item .day {
  font-weight: 600;
  color: #374151;
}
#office-hours-container .office-hour-item .hours {
  color: #6b7280;
}

@media (max-width: 768px) {
  .contact-info-card {
    padding: 24px 20px;
  }
  .contact-info-card .contact-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  .contact-info-card .contact-icon-wrapper svg {
    width: 28px;
    height: 28px;
  }
  .contact-info-card .contact-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .contact-info-card .contact-value {
    font-size: 14px;
  }
  .social-media-card {
    min-width: 120px;
    max-width: 150px;
    padding: 20px;
  }
  .social-media-card .social-icon-wrapper {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }
  .social-media-card .social-icon-wrapper svg {
    width: 24px;
    height: 24px;
  }
  .social-media-card .social-name {
    font-size: 12px;
  }
  .contact-map-wrapper #map-container {
    height: 300px;
  }
}
.floating-actions-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (max-width: 768px) {
  .floating-actions-container {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }
}

.floating-action-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
}
.floating-action-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.floating-action-btn:active {
  transform: translateY(-2px) scale(1.05);
}
@media (max-width: 768px) {
  .floating-action-btn {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
}
.floating-action-btn i {
  pointer-events: none;
}

.floating-phone {
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
}
.floating-phone:hover {
  background: linear-gradient(135deg, #4338CA 0%, #6D28D9 100%);
}

.floating-email {
  background: linear-gradient(135deg, #EC4899 0%, #F97316 100%);
}
.floating-email:hover {
  background: linear-gradient(135deg, #DB2777 0%, #EA580C 100%);
}

.floating-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}
.floating-whatsapp:hover {
  background: linear-gradient(135deg, #20BA5A 0%, #0F7A6C 100%);
}

.floating-email-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.floating-email-modal.hidden {
  display: none;
}

.floating-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.floating-modal-content {
  position: relative;
  background: white;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: visible;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
  z-index: 1;
}

.floating-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.floating-modal-title {
  font-size: 24px;
  font-weight: bold;
  color: #111827;
  margin: 0;
}

.floating-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f3f4f6;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.floating-modal-close:hover {
  background: #e5e7eb;
  color: #111827;
}

.floating-contact-form {
  padding: 24px;
  position: relative;
  overflow: visible;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
  overflow: visible;
}
.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.2s ease;
  font-family: inherit;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #4F46E5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
.form-input::-moz-placeholder, .form-textarea::-moz-placeholder {
  color: #9ca3af;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #9ca3af;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #4F46E5 0%, #EC4899 50%, #F97316 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}
.form-submit-btn:active:not(:disabled) {
  transform: translateY(0);
}
.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-message {
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 14px;
}
.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}
.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}
.form-message.hidden {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .floating-modal-content {
    max-height: 95vh;
    border-radius: 12px;
  }
  .floating-modal-header {
    padding: 20px;
  }
  .floating-modal-title {
    font-size: 20px;
  }
  .floating-contact-form {
    padding: 20px;
  }
}
.country-selector-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
}

.country-selector {
  position: relative;
  display: flex;
  align-items: center;
}

.country-selector-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: white;
  border: 2px solid #e5e7eb;
  border-right: none;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-width: 100px;
}
.country-selector-btn:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}
.country-selector-btn:focus {
  outline: none;
  border-color: #4F46E5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.country-flag {
  font-size: 20px;
  line-height: 1;
}

.country-dial-code {
  font-weight: 600;
  color: #374151;
  font-size: 14px;
}

.country-chevron {
  font-size: 12px;
  color: #6b7280;
  transition: transform 0.2s ease;
  margin-left: 4px;
}

.country-selector-btn[aria-expanded=true] .country-chevron,
.country-dropdown:not(.hidden) ~ .country-selector-btn .country-chevron {
  transform: rotate(180deg);
}

.country-dropdown {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 8px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  width: 320px;
  min-width: 320px;
  max-height: 400px;
  overflow: hidden;
  z-index: 3000;
  animation: slideDown 0.2s ease;
}
.country-dropdown.hidden {
  display: none;
}

.floating-modal-content .country-dropdown {
  position: fixed !important;
  z-index: 3000 !important;
  width: 320px !important;
  min-width: 320px !important;
}

.country-search-wrapper {
  position: relative;
  padding: 12px;
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
}

.country-search-icon {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  font-size: 14px;
}

.country-search-input {
  width: 100%;
  padding: 10px 12px 10px 36px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s ease;
}
.country-search-input:focus {
  outline: none;
  border-color: #4F46E5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
.country-search-input::-moz-placeholder {
  color: #9ca3af;
}
.country-search-input::placeholder {
  color: #9ca3af;
}

.country-list {
  max-height: 300px;
  overflow-y: auto;
  padding: 8px;
}
.country-list::-webkit-scrollbar {
  width: 6px;
}
.country-list::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 3px;
}
.country-list::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}
.country-list::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.country-item:hover {
  background: #f3f4f6;
}
.country-item.selected {
  background: #eef2ff;
  color: #4F46E5;
}
.country-item.selected .country-dial-code {
  color: #4F46E5;
  font-weight: 700;
}

.country-item .country-flag {
  font-size: 24px;
  flex-shrink: 0;
}

.country-item .country-name {
  flex: 1;
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}

.country-item .country-dial-code {
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
}

.phone-input-with-country {
  display: flex;
  align-items: stretch;
}
.phone-input-with-country .country-selector-wrapper {
  flex-shrink: 0;
}
.phone-input-with-country input[type=tel] {
  border-left: none;
  border-radius: 0 8px 8px 0;
  flex: 1;
}
.phone-input-with-country input[type=tel]:focus {
  border-left: 2px solid #4F46E5;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .country-dropdown {
    width: 280px;
    max-height: 350px;
  }
  .country-selector-btn {
    min-width: 90px;
    padding: 10px 12px;
  }
  .country-flag {
    font-size: 18px;
  }
  .country-dial-code {
    font-size: 13px;
  }
}
.language-switcher {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .language-switcher {
    margin-right: 12px;
  }
}

.language-switcher-dropdown {
  position: relative;
}

.language-switcher-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  position: relative;
  min-width: 140px;
  justify-content: space-between;
}
.language-switcher-btn:hover {
  background: #f9fafb;
  border-color: #4F46E5;
  color: #4F46E5;
}
.language-switcher-btn:focus {
  outline: none;
  border-color: #4F46E5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
.language-switcher-btn .language-flag-btn {
  font-size: 20px;
  line-height: 1;
}
.language-switcher-btn .language-text-btn {
  flex: 1;
  text-align: right;
  font-weight: 500;
}
.language-switcher-btn .language-chevron {
  font-size: 12px;
  color: #6b7280;
  transition: transform 0.3s ease, color 0.3s ease;
}
.language-switcher-btn:hover .language-chevron {
  color: #4F46E5;
}
.language-switcher-btn[aria-expanded=true] .language-chevron {
  transform: rotate(180deg);
}

.language-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  min-width: 160px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}
.language-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  background: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-align: right;
  position: relative;
}
.language-option:hover {
  background: #f9fafb;
}
.language-option.active {
  background: #f3f4f6;
  color: #4F46E5;
  font-weight: 600;
}
.language-option .language-option-flag {
  font-size: 18px;
  line-height: 1;
}
.language-option .language-option-text {
  flex: 1;
  text-align: right;
}
.language-option .language-option-check {
  font-size: 14px;
  color: #4F46E5;
  margin-right: auto;
}

[dir=rtl] .language-switcher {
  margin-right: 0;
}
@media (max-width: 1024px) {
  [dir=rtl] .language-switcher {
    margin-left: 12px;
  }
}
[dir=rtl] .language-dropdown-menu {
  right: auto;
  left: 0;
}
[dir=rtl] .language-option {
  text-align: left;
}
[dir=rtl] .language-option .language-option-text {
  text-align: left;
}
[dir=rtl] .language-option .language-option-check {
  margin-right: 0;
  margin-left: auto;
}

@media (max-width: 1024px) {
  .language-switcher-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
  .language-switcher-btn .language-icon {
    font-size: 14px;
  }
  .language-switcher-btn .language-chevron {
    font-size: 10px;
  }
  .language-dropdown-menu {
    min-width: 140px;
  }
  .language-option {
    padding: 10px 14px;
    font-size: 13px;
  }
}
.category-image-wrapper img {
  position: relative;
  z-index: 2;
  width: 200px !important;
  height: 200px !important;
}/*# sourceMappingURL=style.css.map */