/* -------------------------------
   FONTS & BASE
----------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Muli:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Segoe UI:wght@300;400;600;700&display=swap');

body {
  font-family: 'Muli', sans-serif;
  letter-spacing: 0.3px;
  font-weight: 400;
  background: #F9F9FA;
  color: #343434;
}

h1, h2, h3 {
  font-weight: 700;
}

.text-gold,
.text-warning {
  text-align: left;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0px;
  color: #D1B089 !important;
  opacity: 1;
}

p, li {
  font-family: 'Segoe UI', sans-serif !important;
  color: #343434 !important;
  font-size: 18px;
  font-weight: 400;
  text-shadow: none !important;
}

/* -------------------------------
   NAVBAR
----------------------------------*/
nav.navbar {
  top: 0;
  position: fixed;
  width: 97%;
  border-radius: 0 0 20px 20px;
  background: #343434 !important;
  border: none !important;
  margin: auto;
}

nav.navbar li a {
  color: #ffffff;
  font-size: 15px !important;
  padding-left: 17px;
  padding-right: 17px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  white-space: nowrap;
}

.navbar .nav-link:hover {
  color: #d4af37 !important;
}

nav.navbar ul.dropdown-menu li a:hover{
  color: #d4af37 !important;
  background-color: transparent !important;
}

/* -------------------------------
   HERO SECTION
----------------------------------*/
#hero {
  display: flex;
  align-items: center;
}

.hero-img {
  width: 460px;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  display: inline-block;
  border: 2px solid #d4af37;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.carousel-inner {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) brightness(1.2);
}

@media (max-width: 767.98px) {
  .hero-img {
    max-height: 200px;
    width: auto;
    height: auto;
  }
}
@media (max-width: 480px) {
  .card-services{
    display: flex;
    justify-content: center;
  }
}
/*
body.devtools-detected {
  filter: blur(10px);
  pointer-events: none;
}
*/
/* -------------------------------
   VIDEO SECTION
----------------------------------*/
#video {
  padding: 20px;
  max-height: 635px;
}

#video video.rounded {
  max-height: 600px;
  object-fit: fill;
  border-radius: 25px !important;
}

.engagement-img {
  width: 460px;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  display: inline-block;
}

@media (max-width: 767.98px) {
  .engagement-img {
    max-height: 200px;
    width: auto;
    height: auto;
  }
}

.text-violet { color: #7a00ff; }
.bg-violet { background: #7a00ff; }
.bg-turquoise { background: #00c4b3; }
.text-turquoise { color: #00c4b3; }

.price-card {
  width: 292px;
  height: 267px !important;
  background-color: #FFFFFF;
  color: #000000;
  text-align: left;
  box-shadow: 2px 2px 10px #00000040;
  cursor: pointer;
  padding: 15px;
  border-radius: 18px;
  position: relative;
  align-items: center;
  transition: 0.3s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.price-card img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  height: 114px;
  width: 114px;
  margin: auto;
  display: block;
  object-fit: cover;
}

.card-body {
  padding-bottom: 0 !important;
}

.badge {
  color: #D1B089 !important;
  font-size: 20px;
  font-weight: 400;
  text-shadow: none !important;
}

.modal-content {
  border-radius: 14px;
}

.description-pricing {
  color: #000000;
}

.btn-warning {
  background: #d4af37;
  border: none;
  color: #000;
  font-weight: 600;
}

.btn-warning:hover {
  background: #c19a2b;
}

/* -------------------------------
   CHAT WIDGET
----------------------------------*/
.chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #7a00ff;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: 0.3s;
  z-index: 999999;
}
.chat-toggle:hover {
  background: #5d00c9;
}

.chat-box {
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 340px;
  height: 450px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: all 0.25s ease;
}
.chat-box.open {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 99999;
}
.chat-box.minimized {
  height: 45px;
  overflow: hidden;
}

.chat-header {
  background: #7a00ff;
  color: #fff;
  font-weight: 600;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-controls {
  display: flex;
  gap: 4px;
}
.chat-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
.chat-btn:hover {
  color: #ffd700;
}

.chat-messages {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  background: #f5f6fa;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chat-form {
  display: flex;
  border-top: 1px solid #ddd;
}
.chat-form input {
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 14px;
  outline: none;
}
.chat-form button {
  background: #00c4b3;
  color: #fff;
  border: none;
  padding: 0 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.chat-form button:hover {
  background: #009b8e;
}
.msg {
  max-width: 75%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.4;
  word-wrap: break-word;
}
.msg.client {
  align-self: flex-end;
  background: #7a00ff;
  color: #fff;
  border-bottom-right-radius: 2px;
}
.msg.admin {
  align-self: flex-start;
  background: #e5e5ea;
  color: #000;
  border-bottom-left-radius: 2px;
}

/* -------------------------------
   MOBILE APP SECTION
----------------------------------*/
#mobile-app {
  background: #f0dccc !important;
  padding: 80px !important;
  position: relative;
  overflow: hidden;
}
.app-blur {
  filter: blur(2px);
  opacity: 1;
  transition: 0.4s ease;
  pointer-events: none;
}
.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(219, 211, 228, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 10;
}
.coming-soon-text {
  text-align: center;
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: pulseText 2s infinite;
  line-height: 1.6;
}
.coming-soon-text span {
  display: block;
}
@keyframes pulseText {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.03); }
}

.app-title {
  text-align: left;
  letter-spacing: 0;
  color: #D1B089;
  opacity: 1;
  font-size: 30px;
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif !important;
}

.app-list {
  list-style-type: disc;
  padding-left: 20px;
}
.app-list li {
  color: #343434;
  font-family: 'Segoe UI', sans-serif !important;
  margin-bottom: 8px;
  font-size: 16px;
}
.app-text {
  color: #343434;
  font-family: 'Segoe UI', sans-serif !important;
  font-size: 15px;
}
.app-image {
  max-width: 420px;
  height: auto;
}

/* -------------------------------
   FOOTER
----------------------------------*/
footer {
  background-color: #343434 !important;
  color: #ffffff !important;
  text-align: center;
  font-weight: 600;
}



/* =======================
   RTL (Arabic) Support
======================= */
[dir="rtl"] {
  direction: rtl;
  text-align: right !important;
}

[dir="rtl"] .text-start { text-align: right !important; }
[dir="rtl"] .text-end { text-align: left !important; }
[dir="rtl"] ul, [dir="rtl"] ol { padding-right: 1.5rem; padding-left: 0; }

[dir="rtl"] h1, 
[dir="rtl"] h2, 
[dir="rtl"] h3, 
[dir="rtl"] h4, 
[dir="rtl"] h5, 
[dir="rtl"] h6, 
[dir="rtl"] p, 
[dir="rtl"] li {
  font-family: 'Tajawal', 'Amiri', sans-serif !important;
  letter-spacing: 0 !important;
  text-align: right !important;
}

[dir="rtl"] .hero-img,
[dir="rtl"] .engagement-img {
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] .carousel-control-prev-icon {
  transform: rotate(180deg);
}
[dir="rtl"] .carousel-control-next-icon {
  transform: rotate(180deg);
}

[dir="rtl"] footer {
  text-align: center;
}

/* RTL fix */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .navbar-nav {
  margin-right: auto;
  margin-left: 0;
}

[dir="rtl"] .dropdown-menu {
  text-align: right;
  left: 0 !important;
  right: auto !important;
}

[dir="rtl"] .nav-link {
  text-align: right;
}

[dir="rtl"] .navbar-brand img {
  margin-left: 15px;
  margin-right: 0;
}
