body {
  font-family: "Cairo", sans-serif;
  background-color: #f8f9fa;
}

/* البانر */
.hero-section {
  background: linear-gradient(to right, #f8f9fa, #ffffff);
}

.hero-section .btn-warning {
  background-color: #ffc107;
  border: none;
}

.hero-section img {
  transition: transform 0.3s ease;
}

.hero-section img:hover {
  transform: scale(1.05);
}

/* البانر */
.hero-section {
  background: linear-gradient(to right, #f8f9fa, #ffffff);
}

.hero-section .btn-warning {
  background-color: #ffc107;
  border: none;
}

.hero-section img {
  transition: transform 0.3s ease;
}

.hero-section img:hover {
  transform: scale(1.05);
}

/* زر الاتصال */
.custom-call-btn {
  background: linear-gradient(45deg, #ff9800, #ffc107);
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
}

.custom-call-btn:hover {
  background: linear-gradient(45deg, #e65100, #ffb300);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.6);
}

.custom-wts-btn {
  transition: all 0.3s ease-in-out;
}

.custom-wts-btn:hover {
  transform: scale(1.05);
}

.custom-call-btn i {
  display: inline-block;
  vertical-align: middle;
}

/* تنسيق الأزرار بجانب بعض دائمًا */
.hero-section .buttons-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap; /* لا يُسمح بلف العناصر */
  gap: 1rem; /* المسافة بين الأزرار */
}

.hero-section .buttons-row .btn {
  white-space: nowrap; /* منع كسر النص داخل الزر */
}

@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }

  .hero-section p {
    font-size: 1rem;
  }
}

.slider-image {
  object-fit: contain; /* عرض كامل للصورة بدون قص */
  top: 0;
  left: 0;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .slider-image {
    height: 250px !important;
  }
}

.slider-image img {
  width: 100%;
  width: 100%;
  background-color: red;
}

/* الخدمات */
.service-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-icon img {
  width: 95%;
  height: 95%;
  object-fit: cover;
}

.service-box:hover .service-icon {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.3);
}

/* تذييل  */
footer {
  background-color: #000;
  color: #fff;
  padding: 20px 0;
  font-size: 14px;
}

.floating-chat {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.chat-icons {
  display: none;
  flex-direction: column;
  gap: 10px;
  animation: fadeIn 0.3s ease;
}

.chat-action {
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.chat-action:hover {
  transform: scale(1.1);
}

.chat-action svg {
  width: 52px;
  height: 52px;
}

.chat-btn {
  background: red;
  border: none;
  cursor: pointer;
  outline: none;
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.chat-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.chat-btn:active {
  transform: scale(0.95);
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-icon {
  width: 40px;
  height: 40px;
  background-color: #198754;
  color: white;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container iframe {
  min-height: 350px;
  border: none;
}

@media (max-width: 576px) {
  .store-location-section h2 {
    font-size: 1.5rem;
  }
}
