* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Cairo", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}
:root {
  --gold-primary: #c6a43f;
  --gold-light: #d4b96a;
  --gold-dark: #9e7e32;
  --gray-text: #6b6b6b;
  --dark-bg: #1a1a1a;
}
#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}
.logo-img {
  width: 120px;
  margin-bottom: 20px;
  animation: pulse 1.5s infinite ease-in-out;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}
.loading-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
.loading-dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c6a43f, #9e7e32);
  position: relative;
  animation: moveX 1.4s infinite ease-in-out;
}
.loading-dots span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  border: 1px solid rgba(198, 164, 63, 0.6);
  opacity: 0;
  animation: ripple 1.4s infinite ease-out;
}
.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes moveX {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-12px);
  }
  50% {
    transform: translateX(12px);
  }
  75% {
    transform: translateX(-6px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  70% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.loading-dots span:nth-child(2) {
  animation-delay: 0.15s;
}
.loading-dots span:nth-child(3) {
  animation-delay: 0.3s;
}
.loading-dots span:hover {
  transform: scale(1.4);
  background: linear-gradient(135deg, #ffffff, #c6a43f);
  box-shadow: 0 0 15px rgba(198, 164, 63, 0.6);
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.hero-gallery {
  box-sizing: border-box;
  position: relative;
  padding-top: 35px;
  width: 100%;
  min-height: calc(100vh - 40px);
  overflow: hidden;
}
.main-slider {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  width: calc(100% - 40px);
  height: calc(100vh - 40px);
  margin: 0 auto;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}
.slide.active {
  opacity: 1;
  z-index: 2;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide .overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    to right,
    rgba(7, 18, 14, 0.82),
    rgba(12, 28, 22, 0.65),
    rgba(0, 0, 0, 0.2)
  );
}
.slide-caption {
  position: absolute;
  z-index: 10;
}
.about-content,
.about-text-box,
#about-title {
  position: relative;
  z-index: 5;
}
.thumbs {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  z-index: 20;
}
.thumb {
  width: 75px;
  height: 75px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.25);
  opacity: 0.9;
  transition: all 0.3s ease;
}
.thumb:hover,
.thumb.active {
  transform: scale(1.05);
  opacity: 1;
  border-color: var(--gold-primary);
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-bar {
  position: fixed;
  top: 70px;
  left: 20px;
  right: 20px;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  z-index: 1000;
  max-width: 1400px;
  margin: 0 auto;
}
.top-bar h1 {
  position: static;
  font-family: "Cinzel", serif;
  color: #fffefd;
  font-size: 28px;
  flex-shrink: 0;
}
.top-actions {
  align-items: center;
  gap: 15px;
  display: flex;
}
.slide-caption {
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  z-index: 10;
  width: 700px;
  color: #fff;
}
.slide-caption h2 {
  font-family: "Cairo", sans-serif;
  font-size: clamp(28px, 4vw, 72px);
}
@media (max-width: 768px) {
  .slide-caption {
    left: 30px;
    right: 30px;
    width: auto;
  }
  .slide-caption h2 {
    font-size: 42px;
  }
  .slide-caption p {
    font-family: "Cairo", sans-serif;
    font-size: 20px;
  }
}
.connect-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 34px;
  font-family: "Cairo", "Tajawal", sans-serif;
  text-decoration: none;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  color: #fff;
  border-radius: 40px;
  border: 1px solid rgba(198, 164, 63, 0.35);
  transition: 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}
.slide-caption.en {
  font-family: "Cairo", "Tajawal", sans-serif;
}
.slide-caption.ar {
  font-family: "Cairo", "Tajawal", sans-serif;
}
.slide-caption.show .connect-btn {
  opacity: 1;
  transform: translateY(0);
}
.connect-btn:hover {
  background: linear-gradient(135deg, #c6a43f, #9e7e32);
  color: #111;
}
.slide-caption p.arabic {
  font-family: "Cairo", "Tajawal", sans-serif;
}
.connect-btn:hover {
  background: linear-gradient(135deg, #c6a43f, #9e7e32);
  color: #111;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(198, 164, 63, 0.25);
}
.lang-switch {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
}
.top-bar h1 {
  position: absolute;
  left: 25px;
  color: white;
  font-family: "Cinzel", serif;
}
.about-section {
  position: relative;
  overflow: hidden;
  background: url("../images/10.jpg") center/cover no-repeat;
  width: calc(100% - 40px);
  min-height: calc(100vh - 40px);
  margin: 40px auto;
  padding: 120px 0;
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1;
}
#about-title {
  font-size: 64px;
  font-weight: 700;
  color: #c6a43f;
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: 2px;
}
.about-text-box {
  font-size: 18px;
  color: #c6a43f;
  line-height: 1.8;
  text-align: center;
  position: relative;
  margin: 30px auto;
  padding: 18px;
  max-width: 650px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(198, 164, 63, 0.3);
  border-radius: 20px;
  font-family: "Cairo", "Tajawal", sans-serif;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  transition: 0.3s ease;
}
.about-text-box:hover {
  transform: translateY(-5px);
  border-color: #c6a43f;
  box-shadow: 0 20px 60px rgba(198, 164, 63, 0.15);
}
.about-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.about-video-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.video-wrapper video {
  width: 100%;
  display: block;
  border-radius: 18px;
}
#aboutVideo {
  width: 100%;
  max-width: 650px;
  border-radius: 25px;
  padding: 0px;
  border: 3px solid #c6a43f;
  box-shadow:
    0 0 25px rgba(198, 164, 63, 0.6),
    0 15px 40px rgba(0, 0, 0, 0.4);
  object-fit: cover;
  transition: all 0.4s ease;
}
html {
  scroll-behavior: smooth;
}
.clients-section {
  position: relative;
  width: calc(100% - 40px);
  min-height: calc(100vh - 40px);
  margin: 40px auto;
  padding: 120px 0;
  font-family: "Cinzel", serif;
  overflow: hidden;
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  background: url("../images/1.jpg") center/cover no-repeat;
}
.clients-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1;
}
.clients-section h2,
.clients-wrapper {
  position: relative;
  z-index: 2;
}
.clients-section h2 {
  text-align: center;
  margin-bottom: 70px;
  font-size: 58px;
  font-family: "Cairo", sans-serif;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #d4b96a, #c6a43f, #9e7e32);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.clients-track {
  display: flex;
  align-items: center;
  gap: 55px;
  direction: ltr;
  width: max-content;
}
.client {
  flex: 0 0 auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  border: 3px solid rgba(198, 164, 63, 0.6);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transition: 0.4s ease;
}
.client img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transition: 0.4s ease;
}
.client:hover {
  transform: scale(1.08);
}
.client:hover img {
  transform: scale(1.25);
}
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.clients-section,
.clients-wrapper,
.clients-track {
  direction: ltr !important;
}
.stats-section {
  position: relative;
  width: calc(100% - 40px);
  margin: 40px auto;
  padding: 120px 20px;
  border-radius: 28px;
  overflow: hidden;
  background: url("../images/8.jpg") center/cover no-repeat;
  border: 1px solid rgba(198, 164, 63, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.stats-section .stat,
.stats-section h2,
.stats-section p {
  position: relative;
  z-index: 2;
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1;
}
.stats-section {
  font-family: "Cinzel", serif;
  display: flex;
  justify-content: center;
  gap: 80px;
  text-align: center;
  flex-wrap: wrap;
}
.stat h2 {
  font-size: 60px;
  color: #c6a43f;
  font-weight: 800;
}
.stat p {
  font-size: 18px;
  color: #fff;
  opacity: 0.85;
}
.support-section {
  width: calc(100% - 40px);
  margin: 60px auto;
  padding: 120px 40px;
  border-radius: 28px;
  background: url("../images/99.jpg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
  font-family: "Cinzel", "Cairo", sans-serif;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.support-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
}
#support-title {
  position: relative;
  text-align: center;
  font-size: 60px;
  background: linear-gradient(135deg, #e8d28a, #c6a43f, #9e7e32);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 15px;
}
#support-subtitle {
  position: relative;
  text-align: center;
  color: #fff;
  opacity: 0.9;
  font-size: 22px;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 60px;
  font-weight: 500;
}
.support-card {
  position: relative;
  max-width: 800px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  border-radius: 20px;
  font-family: "Cairo", sans-serif;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(198, 164, 63, 0.3);
  backdrop-filter: blur(15px);
}
.support-image img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #c6a43f;
  box-shadow: 0 0 25px rgba(198, 164, 63, 0.5);
}
.support-name {
  color: #fff;
  font-size: 26px;
  font-family: "Cinzel", "Cairo", sans-serif;
  margin-bottom: 5px;
}
.support-role {
  font-family: "Cairo", sans-serif;
  color: #c6a43f;
  margin-bottom: 15px;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 50px;
  font-family: "Cinzel", serif;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}
.whatsapp-btn i {
  font-size: 20px;
}
.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}
.ceo-section {
  width: calc(100% - 40px);
  margin: 40px auto;
  padding: 80px 20px;
  border-radius: 28px;
  background: url("../images/6.jpg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.ceo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  z-index: 1;
}
.ceo-title,
.ceo-card {
  position: relative;
  z-index: 2;
}
.ceo-title {
  text-align: center;
  font-size: clamp(32px, 8vw, 58px);
  margin-bottom: 40px;
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, #e8d28a, #c6a43f, #9e7e32);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ceo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ceo-image {
  width: min(220px, 40vw);
  height: min(220px, 40vw);
  max-width: 260px;
  max-height: 260px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #c6a43f;
  box-shadow:
    0 0 35px rgba(198, 164, 63, 0.45),
    0 15px 40px rgba(0, 0, 0, 0.35);
}
.ceo-name {
  margin-top: 20px;
  color: #fff;
  font-size: clamp(22px, 6vw, 30px);
  font-weight: 700;
  font-family: "Cinzel", "Cairo", serif;
}
.ceo-title-ar {
  font-family: "Cairo", sans-serif;
}
.ceo-title-en {
  font-family: "Cinzel", serif;
}
@media (max-width: 768px) {
  .ceo-section {
    padding: 60px 20px;
    margin: 30px auto;
  }
  .ceo-image {
    width: 180px;
    height: 180px;
  }
  .ceo-name {
    font-size: 22px;
    font-family: "Cairo", sans-serif;
  }
}
.footer {
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
  color: #e8e8e8;
  border-radius: 30px 30px 0 0;
  margin: 60px auto 0;
  width: calc(100% - 40px);
  max-width: 1400px;
  overflow: hidden;
  font-family: "Cairo", "Poppins", sans-serif;
  border-top: 1px solid rgba(198, 164, 63, 0.25);
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.3);
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #c6a43f,
    #e8d28a,
    #c6a43f,
    transparent
  );
}
.footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 1px;
  background: radial-gradient(circle, rgba(198, 164, 63, 0.4), transparent);
}
.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 50px 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}
.footer-col:first-child {
  grid-column: span 1;
}
.footer-logo {
  width: 160px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  opacity: 0.95;
}
.company-tagline {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.7;
  margin-top: 12px;
  font-weight: 300;
}
.footer h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 1px;
  color: #c6a43f;
  position: relative;
  display: inline-block;
  font-family: "Cinzel", "Cairo", serif;
}
.footer h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #c6a43f;
  border-radius: 2px;
}
body[dir="rtl"] .footer h3::after {
  right: 0;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer ul li {
  margin-bottom: 12px;
}
.footer ul li a {
  color: #d0d0d0;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}
.footer ul li a::before {
  content: "—";
  margin-left: 8px;
  color: #c6a43f;
  opacity: 0;
  transition: all 0.3s ease;
}
body[dir="rtl"] .footer ul li a::before {
  margin-left: 0;
  margin-right: 8px;
}
.footer ul li a:hover {
  color: #c6a43f;
  transform: translateX(5px);
}
.footer ul li a:hover::before {
  opacity: 1;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  color: #d0d0d0;
}
.contact-item i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(198, 164, 63, 0.12);
  border-radius: 50%;
  color: #c6a43f;
  font-size: 14px;
  transition: 0.3s;
}
.contact-item:hover i {
  background: #c6a43f;
  color: #0a0a0a;
  transform: scale(1.05);
}
.contact-item a {
  color: #d0d0d0;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-item a:hover {
  color: #c6a43f;
}
.email-link-simple {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d0d0d0;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 0;
  transition: all 0.3s;
  font-family: "Cairo", sans-serif;
  border-bottom: 1px dashed rgba(198, 164, 63, 0.3);
  margin-bottom: 15px;
}
.email-link-simple i {
  color: #c6a43f;
}
.email-link-simple:hover {
  color: #c6a43f;
  border-bottom-color: #c6a43f;
  transform: translateY(-2px);
}
.whatsapp-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.whatsapp-premium {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #075e54, #128c7e);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(198, 164, 63, 0.4);
  position: relative;
  overflow: hidden;
}
.whatsapp-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.2),
    transparent
  );
  transition: left 0.5s;
}
.whatsapp-premium:hover::before {
  left: 100%;
}
.whatsapp-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: #c6a43f;
}
.whatsapp-premium i:first-child {
  font-size: 22px;
  color: white;
}
.premium-badge {
  background: rgba(255, 215, 0, 0.2);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  color: #ffd700;
  margin-right: auto;
  white-space: nowrap;
}
.whatsapp-premium span:not(.premium-badge) {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: white;
}
.whatsapp-secretary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(37, 211, 102, 0.15);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(37, 211, 102, 0.4);
}
.whatsapp-secretary i:first-child {
  font-size: 18px;
  color: #25d366;
}
.whatsapp-secretary span {
  flex: 1;
  font-size: 13px;
  color: #d0d0d0;
  font-weight: 500;
}
.secretary-badge {
  background: rgba(37, 211, 102, 0.2);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 10px;
  color: #25d366;
  white-space: nowrap;
}
.whatsapp-secretary:hover {
  background: rgba(37, 211, 102, 0.25);
  border-color: #25d366;
  transform: translateY(-2px);
}
.social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.social-icons a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #d0d0d0;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(198, 164, 63, 0.2);
}
.social-icons a:hover {
  background: #c6a43f;
  color: #0a0a0a;
  transform: translateY(-4px);
  border-color: #c6a43f;
  box-shadow: 0 5px 15px rgba(198, 164, 63, 0.3);
}
.footer-bottom {
  text-align: center;
  padding: 25px 20px;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
}
.footer-bottom span {
  color: #c6a43f;
}
.footer-lang-btn {
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  border-radius: 40px;
  border: 1px solid rgba(198, 164, 63, 0.4);
  background: rgba(198, 164, 63, 0.1);
  color: #c6a43f;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Cairo", sans-serif;
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.footer-lang-btn:hover {
  background: #c6a43f;
  color: #0a0a0a;
  border-color: #c6a43f;
}
body[dir="rtl"] .footer ul li a:hover {
  transform: translateX(-5px);
}
body[dir="rtl"] .contact-item {
  flex-direction: row-reverse;
}
body[dir="rtl"] .whatsapp-premium .premium-badge,
body[dir="rtl"] .whatsapp-secretary .secretary-badge {
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 50px 40px;
  }
  .footer-col:first-child {
    grid-column: span 1;
  }
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 30px;
    font-family: "Cinzel", "Cairo", serif;
  }
  .footer h3::after {
    left: 50% !important;
    right: 50% !important;
    transform: translateX(-50%);
  }
  .contact-item {
    justify-content: center;
  }
  .social-icons {
    justify-content: center;
  }
  .footer ul li a::before {
    display: none;
  }
  .whatsapp-premium,
  .whatsapp-secretary {
    justify-content: center;
    flex-wrap: wrap;
  }
  .premium-badge,
  .secretary-badge {
    margin: 0 !important;
  }
}
@media (max-width: 480px) {
  .footer-container {
    padding: 30px 20px;
  }
  .footer h3 {
    font-size: 16px;
  }
  .social-icons a {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}
html,
body {
  width: 100%;
  overflow-x: hidden !important;
}
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
* {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.slide-caption h2,
#about-title,
.clients-section h2,
#map-title {
  white-space: normal;
}
@media (max-width: 768px) {
  .thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    position: absolute;
    bottom: 12px;
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
  }
  .thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
  }
  .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.thumb:hover {
  transform: scale(1.05);
  border-color: var(--gold-primary);
}
.dev-whatsapp-box {
  margin-top: 15px;
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.dev-whatsapp-label {
  font-size: 13px;
  color: #c6a43f;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}
.dev-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 50px;
  background: linear-gradient(
    135deg,
    rgba(74, 80, 0, 0.856),
    rgba(18, 140, 126, 0.15)
  );
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25d366;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}
.dev-whatsapp i {
  font-size: 18px;
}
.dev-whatsapp:hover {
  transform: translateY(-2px);
  background: rgba(37, 211, 102, 0.18);
  border-color: #25d366;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
}
.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.contact-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c6a43f;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 0;
  line-height: 1.8;
}
.contact-phone:hover {
  color: #e8d28a;
}
.developer-section {
  position: relative;
  padding-left: 35px;
}
.developer-section::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(198, 164, 63, 0.8),
    transparent
  );
}
@media (max-width: 768px) {
  .developer-section {
    padding: 30px 0 0;
    margin-top: 25px;
  }
  .developer-section::before {
    width: 100%;
    height: 1px;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
      to right,
      transparent,
      rgba(198, 164, 63, 0.8),
      transparent
    );
  }
}
@media (max-width: 768px) {
  .services-container,
  .services-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .service-card {
    width: 90%;
    max-width: 400px;
    position: relative;
  }
}
.support-section {
  width: calc(100% - 40px);
  margin: 60px auto;
  padding: 80px 20px;
  border-radius: 28px;
  background: url("../images/99.jpg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.support-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
}
#support-title {
  position: relative;
  text-align: center;
  font-size: clamp(32px, 8vw, 60px);
  font-family: "Cairo", sans-serif;
  background: linear-gradient(135deg, #e8d28a, #c6a43f, #9e7e32);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
}
#support-subtitle {
  position: relative;
  text-align: center;
  color: #fff;
  opacity: 0.9;
  font-family: "Amiri", serif;
  font-size: clamp(16px, 4vw, 22px);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 50px;
  padding: 0 15px;
}
.support-card {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 30px 20px;
  border-radius: 20px;
  font-family: "Cinzel", serif;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(198, 164, 63, 0.3);
  backdrop-filter: blur(15px);
  flex-wrap: wrap;
  text-align: center;
}
.support-image img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #c6a43f;
  box-shadow: 0 0 25px rgba(198, 164, 63, 0.5);
}
.support-info {
  flex: 1;
  min-width: 200px;
}
.support-name {
  color: #fff;
  font-size: 24px;
  font-family: "Cairo", sans-serif;
  margin-bottom: 5px;
}
.support-role {
  font-family: "Amiri", serif;
  color: #c6a43f;
  margin-bottom: 20px;
  font-size: 16px;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: "Cairo", sans-serif;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 14px;
}
@media (max-width: 768px) {
  .support-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 20px;
  }
  .support-image img {
    width: 110px;
    height: 110px;
  }
  .support-name {
    font-size: 22px;
  }
  .whatsapp-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}
.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 30px 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 25px;
  }
}
.contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  color: #d0d0d0;
}
body[dir="rtl"] .contact-item {
  justify-content: flex-end;
}
@media (max-width: 768px) {
  body[dir="rtl"] .contact-item {
    justify-content: center;
  }
}
.whatsapp-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  width: 100%;
}
.whatsapp-premium,
.whatsapp-secretary {
  justify-content: center;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}
.developer-section {
  position: relative;
  padding-left: 20px;
}
.developer-section::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 10%;
  width: 1px;
  height: 80%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(198, 164, 63, 0.8),
    transparent
  );
}
@media (max-width: 768px) {
  .developer-section {
    padding: 25px 0 0;
    margin-top: 15px;
    text-align: center;
  }
  .developer-section::before {
    width: 80%;
    height: 1px;
    top: 0;
    left: 10%;
    right: 10%;
    background: linear-gradient(
      to right,
      transparent,
      rgba(198, 164, 63, 0.8),
      transparent
    );
  }
  .footer-lang-btn {
    width: auto;
    margin: 15px auto 0;
    padding: 8px 20px;
  }
}
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c6a43f;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  word-break: keep-all;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .contact-phone {
    white-space: normal;
    word-break: break-all;
    justify-content: center;
  }
}
.dev-whatsapp-box {
  margin-top: 15px;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
.dev-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  background: linear-gradient(
    135deg,
    rgba(74, 80, 0, 0.85),
    rgba(18, 140, 126, 0.15)
  );
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25d366;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .dev-whatsapp {
    white-space: normal;
    font-size: 12px;
    padding: 8px 15px;
  }
}
.reveal-on-scroll {
  opacity: 0;
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.hero-gallery.reveal-on-scroll {
  transform: scale(0.98);
  transition-duration: 0.8s;
}
.hero-gallery.reveal-on-scroll.revealed {
  transform: scale(1);
}
.about-section.reveal-on-scroll {
  transform: translateX(-40px);
}
.about-section.reveal-on-scroll.revealed {
  transform: translateX(0);
}
.clients-section.reveal-on-scroll {
  transform: translateX(40px);
}
.clients-section.reveal-on-scroll.revealed {
  transform: translateX(0);
}
.stats-section.reveal-on-scroll {
  transform: scale(0.95) translateY(30px);
}
.stats-section.reveal-on-scroll.revealed {
  transform: scale(1) translateY(0);
}
.map-section.reveal-on-scroll {
  transform: translateY(50px);
}
.map-section.reveal-on-scroll.revealed {
  transform: translateY(0);
}
.support-section.reveal-on-scroll {
  transform: scale(0.97);
}
.support-section.reveal-on-scroll.revealed {
  transform: scale(1);
}
.ceo-section.reveal-on-scroll {
  transform: translateY(40px);
}
.ceo-section.reveal-on-scroll.revealed {
  transform: translateY(0);
}
.footer.reveal-on-scroll {
  transform: translateY(60px);
}
.footer.reveal-on-scroll.revealed {
  transform: translateY(0);
}
.about-content.reveal-on-scroll {
  transform: translateY(30px);
}
.about-content.reveal-on-scroll.revealed {
  transform: translateY(0);
}
#about-title.reveal-on-scroll {
  transform: translateY(-20px);
}
#about-title.reveal-on-scroll.revealed {
  transform: translateY(0);
}
#aboutVideo.reveal-on-scroll {
  transform: scale(0.92);
}
#aboutVideo.reveal-on-scroll.revealed {
  transform: scale(1);
}
.client.reveal-on-scroll {
  transform: scale(0.7);
  opacity: 0;
}
.client.reveal-on-scroll.revealed {
  transform: scale(1);
  opacity: 1;
}
.client.reveal-on-scroll.revealed:nth-child(1) {
  transition-delay: 0.05s;
}
.client.reveal-on-scroll.revealed:nth-child(2) {
  transition-delay: 0.1s;
}
.client.reveal-on-scroll.revealed:nth-child(3) {
  transition-delay: 0.15s;
}
.client.reveal-on-scroll.revealed:nth-child(4) {
  transition-delay: 0.2s;
}
.client.reveal-on-scroll.revealed:nth-child(5) {
  transition-delay: 0.25s;
}
.client.reveal-on-scroll.revealed:nth-child(6) {
  transition-delay: 0.3s;
}
.client.reveal-on-scroll.revealed:nth-child(7) {
  transition-delay: 0.35s;
}
.client.reveal-on-scroll.revealed:nth-child(8) {
  transition-delay: 0.4s;
}
.client.reveal-on-scroll.revealed:nth-child(9) {
  transition-delay: 0.45s;
}
.client.reveal-on-scroll.revealed:nth-child(10) {
  transition-delay: 0.5s;
}
.stat.reveal-on-scroll {
  transform: translateY(30px);
}
.stat.reveal-on-scroll.revealed {
  transform: translateY(0);
}
.stat.reveal-on-scroll.revealed:nth-child(1) {
  transition-delay: 0.1s;
}
.stat.reveal-on-scroll.revealed:nth-child(2) {
  transition-delay: 0.2s;
}
.stat.reveal-on-scroll.revealed:nth-child(3) {
  transition-delay: 0.3s;
}
.stat.reveal-on-scroll.revealed:nth-child(4) {
  transition-delay: 0.4s;
}
.support-card.reveal-on-scroll {
  transform: translateY(30px);
}
.support-card.reveal-on-scroll.revealed {
  transform: translateY(0);
}
.support-image img.reveal-on-scroll {
  transform: scale(0.8);
}
.support-image img.reveal-on-scroll.revealed {
  transform: scale(1);
}
.ceo-image.reveal-on-scroll {
  transform: scale(0.7);
}
.ceo-image.reveal-on-scroll.revealed {
  transform: scale(1);
}
.ceo-name.reveal-on-scroll {
  transform: translateY(20px);
}
.ceo-name.reveal-on-scroll.revealed {
  transform: translateY(0);
}
.footer-col.reveal-on-scroll {
  transform: translateY(30px);
}
.footer-col.reveal-on-scroll.revealed {
  transform: translateY(0);
}
.footer-col.reveal-on-scroll.revealed:nth-child(1) {
  transition-delay: 0.05s;
}
.footer-col.reveal-on-scroll.revealed:nth-child(2) {
  transition-delay: 0.1s;
}
.footer-col.reveal-on-scroll.revealed:nth-child(3) {
  transition-delay: 0.15s;
}
.footer-col.reveal-on-scroll.revealed:nth-child(4) {
  transition-delay: 0.2s;
}
.hero-gallery {
  transition: transform 0.3s ease-out;
}
.reveal-on-scroll {
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-on-scroll.revealed,
  .client.reveal-on-scroll,
  .stat.reveal-on-scroll,
  .footer-col.reveal-on-scroll {
    transition: none;
    opacity: 1;
    transform: none;
    transition-delay: 0s !important;
  }
}
.reveal-on-scroll {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-gallery.reveal-on-scroll .slide-caption h2 {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s ease 0.2s;
}
.hero-gallery.reveal-on-scroll.revealed .slide-caption h2 {
  transform: translateY(0);
  opacity: 1;
}
.hero-gallery.reveal-on-scroll .slide-caption p {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s ease 0.3s;
}
.hero-gallery.reveal-on-scroll.revealed .slide-caption p {
  transform: translateY(0);
  opacity: 1;
}
.hero-gallery.reveal-on-scroll .connect-btn {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s ease 0.4s;
}
.hero-gallery.reveal-on-scroll.revealed .connect-btn {
  transform: translateY(0);
  opacity: 1;
}
.hero-gallery.reveal-on-scroll .thumb {
  transform: translateY(40px);
  opacity: 0;
}
.hero-gallery.reveal-on-scroll.revealed .thumb {
  transform: translateY(0);
  opacity: 1;
}
.hero-gallery.reveal-on-scroll.revealed .thumb:nth-child(1) {
  transition-delay: 0.1s;
}
.hero-gallery.reveal-on-scroll.revealed .thumb:nth-child(2) {
  transition-delay: 0.2s;
}
.hero-gallery.reveal-on-scroll.revealed .thumb:nth-child(3) {
  transition-delay: 0.3s;
}
.hero-gallery.reveal-on-scroll.revealed .thumb:nth-child(4) {
  transition-delay: 0.4s;
}
.hero-gallery.reveal-on-scroll.revealed .thumb:nth-child(5) {
  transition-delay: 0.5s;
}
.hero-gallery,
.main-slider {
  height: 100vh;
  min-height: 100vh;
}
html,
body {
  overflow-x: hidden;
  overflow-y: auto;
}
.fragrances-section {
  position: relative;
  width: calc(100% - 40px);
  margin: 40px auto;
  padding: 120px 7%;
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  color: #fff;
  font-family: "Cairo", sans-serif;
  background:
    radial-gradient(
      circle at top left,
      rgba(212, 175, 55, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 255, 255, 0.05),
      transparent 25%
    ),
    linear-gradient(180deg, #0b0b0b 0%, #151515 100%);
}
.fragrances-section::before,
.fragrances-section::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  z-index: 0;
}
.fragrances-section::before {
  top: -80px;
  left: -120px;
  background: #d4af37;
}
.fragrances-section::after {
  bottom: -100px;
  right: -120px;
  background: #b8860b;
}
.fragrances-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
  font-family: "Cairo", sans-serif;
}
.section-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  margin-bottom: 18px;
  color: #f4d27c;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
  font-family: "Cinzel", serif;
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.fragrances-header h2 {
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 16px;
  font-weight: 700;
  font-family: "Cairo", sans-serif;
  color: #c6a43f;
}
.fragrances-header p {
  font-family: "Cairo", "Tajawal", sans-serif;
  font-size: 18px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.2px;
  max-width: 780px;
  margin: 0 auto;
}
.fragrances-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: stretch;
}
.fragrance-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 24px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  -webkit-tap-highlight-color: transparent;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.fragrance-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    transparent 45%
  );
  transition: opacity 0.35s ease;
  z-index: 0;
  pointer-events: none;
}
.fragrance-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}
.fragrance-card:hover::before {
  opacity: 1;
}
.fragrance-card > * {
  position: relative;
  z-index: 2;
}
.fragrance-image {
  width: 100%;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #111;
  position: relative;
  z-index: 1;
}
.fragrance-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.fragrance-card:hover .fragrance-image img {
  transform: scale(1.06);
}
.fragrance-type {
  display: inline-block;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: #f4d27c;
  border: 1px solid rgba(212, 175, 55, 0.18);
  position: relative;
  font-family: "Cinzel", "Tajawal", serif;
  z-index: 1;
  white-space: nowrap;
}
.fragrance-card h3 {
  font-family: "Cinzel", "Tajawal", serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffd77a;
  letter-spacing: 0.4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.fragrance-card p {
  font-family: "Cairo", "Tajawal", sans-serif;
  font-size: 15.5px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.2px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.28);
}
body[dir="rtl"] .fragrance-card {
  text-align: right;
}
body[dir="rtl"] .fragrances-header {
  text-align: center;
}
@media (max-width: 992px) {
  .fragrances-section {
    padding: 90px 5%;
  }
  .fragrance-image {
    height: 230px;
  }
}
@media (max-width: 768px) {
  .fragrances-header h2 {
    font-size: 30px;
  }
  .fragrances-header p {
    font-size: 15px;
  }
  .fragrance-card {
    padding: 18px;
    border-radius: 20px;
  }
  .fragrance-image {
    height: 210px;
  }
  .fragrance-card h3 {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .fragrances-section {
    padding: 75px 18px;
  }
  .fragrances-grid {
    gap: 20px;
  }
  .fragrance-image {
    height: 200px;
  }
}
.airpurifier-section {
  position: relative;
  padding: 110px 7%;
  background:
    radial-gradient(
      circle at top right,
      rgba(212, 175, 55, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(255, 255, 255, 0.05),
      transparent 25%
    ),
    linear-gradient(180deg, #0b0b0b 0%, #151515 100%);
  overflow: hidden;
  color: #fff;
  width: calc(100% - 40px);
  min-height: calc(100vh - 40px);
  margin: 40px auto;
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.airpurifier-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 32px;
  padding: 55px;
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}
.airpurifier-image video {
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 2;
  object-fit: cover;
  padding: 18px;
  border-radius: 28px;
  border: 2px solid rgba(212, 175, 55, 0.35);
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 30px rgba(212, 175, 55, 0.12);
}
.airpurifier-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.35) 0%,
    rgba(212, 175, 55, 0.08) 45%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(10px);
  z-index: 1;
}
.airpurifier-image img {
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 2;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
  animation: purifierFloat 4s ease-in-out infinite;
}
.airpurifier-content {
  color: #fff;
  font-family: "Cairo", "Tajawal", sans-serif;
}
.airpurifier-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #d4af37;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-family: "Cinzel", serif;
}
.airpurifier-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #c6a43f;
  font-family: "Cairo", "Tajawal", sans-serif;
  line-height: 1.3;
}
.airpurifier-content p {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 35px;
  max-width: 650px;
  font-family: "Cairo", "Tajawal", sans-serif;
}
.air-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.air-feature-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.12);
  padding: 22px 18px;
  transition: 0.35s ease;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.air-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  transform: scale(1.2);
  z-index: -2;
}
.air-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.08);
}
.air-feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 22px;
  margin-bottom: 18px;
  font-family: "Cinzel", serif;
}
.air-feature-card h3 {
  color: #c6a43f;
  font-size: 20px;
  margin-bottom: 12px;
  font-family: "Cairo", "Tajawal", sans-serif;
}
.air-feature-card p {
  font-family: "Cairo", "Tajawal", sans-serif;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}
@keyframes purifierFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}
body[dir="rtl"] .airpurifier-container {
  direction: rtl;
}
body[dir="rtl"] .airpurifier-content {
  text-align: right;
}
@media (max-width: 1100px) {
  .airpurifier-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 28px;
  }
  .airpurifier-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .air-features {
    grid-template-columns: 1fr;
  }
  .airpurifier-content h2 {
    font-size: 34px;
  }
  body[dir="rtl"] .airpurifier-content {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .airpurifier-section {
    padding: 70px 4%;
  }
  .airpurifier-content h2 {
    font-size: 26px;
  }
  .airpurifier-content p {
    font-size: 15px;
    line-height: 1.9;
  }
  .airpurifier-image img {
    max-width: 260px;
  }
}
.fragrances-section .fragrances-header p {
  font-size: 20px;
  line-height: 1.8;
}
.airpurifier-section .airpurifier-content p {
  font-size: 20px;
  line-height: 1.8;
}
.air-feature-card:nth-child(1) {
  --bg: url("../images/b2.jpg");
}
.air-feature-card:nth-child(2) {
  --bg: url("../images/b3.jpg");
}
.air-feature-card:nth-child(3) {
  --bg: url("../images/b1.jpg");
}
.air-feature-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 22px;
}
.air-feature-card h3 {
  color: #ffd77a;
  font-family: "Cinzel", serif;
}
.air-feature-card p {
  color: rgba(255, 255, 255, 0.9);
}
.air-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
  z-index: -1;
}
@media (max-width: 768px) {
  .fragrances-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
    overflow: hidden !important;
  }
  .fragrance-card {
    width: 100%;
  }
}
.fragrance-card {
  flex: 0 0 calc(100% / 2.2);
  scroll-snap-align: start;
}
@media (max-width: 480px) {
  .fragrance-card {
    flex: 0 0 70%;
  }
}
* {
  -webkit-tap-highlight-color: transparent;
}
button,
a,
div {
  outline: none;
}
.fragrance-card,
.air-feature-card,
.support-card {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.fragrances-section::before,
.fragrances-section::after,
.airpurifier-section::before {
  will-change: transform;
  transform: translateZ(0);
}
@media (max-width: 768px) {
  .fragrances-section::before,
  .fragrances-section::after,
  .airpurifier-section::before {
    filter: blur(50px);
  }
}
@media (max-width: 768px) {
  .airpurifier-container {
    padding: 26px 16px;
  }
  .air-features {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .air-feature-card {
    min-height: 185px;
    height: 170px;
    padding: 18px 16px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .air-feature-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 10px;
    font-size: 20px;
  }
  .air-feature-card h3 {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .air-feature-card p {
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
    max-width: 92%;
  }
  .air-feature-card::before {
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    filter: blur(2px);
  }
}
@media (max-width: 768px) {
  .airpurifier-section {
    width: calc(100% - 18px);
    margin: 18px auto;
    border-radius: 22px;
  }
  .airpurifier-container {
    width: 100%;
    border-radius: 24px;
  }
}
@media (max-width: 768px) {
  .fragrances-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .fragrance-card {
    padding: 14px;
  }
  .fragrance-image {
    height: 150px;
  }
  .fragrance-card h3 {
    font-size: 16px;
    font-family: "Cairo", "Tajawal", sans-serif;
  }
  .fragrance-card p {
    font-size: 13px;
    font-family: "Cairo", "Tajawal", sans-serif;
  }
}
.about-content,
.support-card,
.clients-wrapper {
  position: relative;
  z-index: 2;
}
.about-section::before,
.support-section::before,
.clients-section::before {
  z-index: 1;
}
.bank-card {
  max-width: 520px;
  width: 90%;
  margin: 40px auto;
  padding: 24px;
  border-radius: 22px;
  margin-top: 30px;
  background: rgba(20, 20, 20, 0.55);
  border: 1px solid rgba(198, 164, 63, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: "Cairo", "Tajawal", "Segoe UI", sans-serif;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.bank-card h4 {
  color: #c6a43f;
  margin-bottom: 18px;
  font-size: 22px;
}
.bank-item {
  margin-bottom: 18px;
}
.bank-item span {
  display: block;
  color: #bbbbbb;
  margin-bottom: 6px;
  font-size: 14px;
}
.bank-item strong {
  color: #fff;
  font-size: 17px;
}
.copy-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #1d1d1d;
  border: 1px solid rgba(198, 164, 63, 0.25);
}
.copy-box span {
  color: white;
  font-weight: 600;
  letter-spacing: 1px;
  word-break: break-all;
}
.copy-btn {
  border: none;
  background: #c6a43f;
  color: #111;
  padding: 10px 18px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: 0.3s;
  white-space: nowrap;
}
.copy-btn:hover {
  transform: translateY(-2px);
}
#support-title,
#support-subtitle,
.support-card,
.bank-card {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px;
    box-sizing: border-box;
  }
}
@media (max-width: 768px) {
  .about-text-box {
    margin: 20px auto;
    padding: 16px;
    border-radius: 16px;
  }
}
video {
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 18px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero-gallery,
  .main-slider {
    border-radius: 20px;
    overflow: hidden;
  }
}
.hero-gallery,
.main-slider {
  overflow: hidden;
}
@media (max-width: 768px) {
  .connect-btn {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 40px;
    min-width: 150px;
    letter-spacing: 0.5px;
  }
}
.payment-section {
  position: relative;
  overflow: hidden;
  background: url("../images/8.jpg") center/cover no-repeat;
  width: calc(100% - 40px);
  min-height: calc(100vh - 40px);
  margin: 40px auto;
  padding: 120px 0;
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.payment-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1;
}
.payment-section > * {
  position: relative;
  z-index: 2;
}
#payment-title {
  text-align: center;
  font-size: 38px;
  color: #d4af37;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
#payment-subtitle {
  text-align: center;
  color: #e5e5e5;
  font-size: 16px;
  margin-bottom: 40px;
}
.bank-card {
  max-width: 600px;
  margin: auto;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.bank-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.bank-item:last-child {
  border-bottom: none;
}
.bank-item span {
  color: #aaa;
  font-size: 14px;
}
.bank-item strong {
  color: #fff;
  font-size: 15px;
}
.copy-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
#accountNumber {
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
}
.copy-btn {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 6px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}
.copy-btn:hover {
  background: #d4af37;
  color: #000;
}
.product-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.promo-video-section {
  position: relative;
  overflow: hidden;
  padding: 110px 7%;
  background:
    radial-gradient(
      circle at top right,
      rgba(212, 175, 55, 0.1),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(255, 255, 255, 0.05),
      transparent 25%
    ),
    linear-gradient(180deg, #0b0b0b 0%, #151515 100%);
  width: calc(100% - 40px);
  min-height: calc(100vh - 40px);
  margin: 40px auto;
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.promo-container {
  max-width: 1200px;
  margin: auto;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(198, 164, 63, 0.2);
  border-radius: 30px;
  padding: 55px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  text-align: center;
}
#promo-title {
  color: #c6a43f;
  font-size: 42px;
  margin-bottom: 15px;
  font-family: "Cinzel", "Tajawal", sans-serif;
}
#promo-subtitle {
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.9;
  max-width: 760px;
  margin: 0 auto 40px;
  font-family: "Cairo", "Tajawal", sans-serif;
}
.promo-video {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 2px solid rgba(250, 205, 70, 0.671);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 35px rgba(198, 164, 63, 0.12);
  transition: 0.4s;
}
.promo-video:hover {
  transform: translateY(-6px);
  border-color: #c6a43f;
  box-shadow:
    0 25px 55px rgba(0, 0, 0, 0.45),
    0 0 45px rgba(198, 164, 63, 0.22);
}
.promo-video video {
  width: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
}
.shipping-box {
  margin: 35px auto 0;
  max-width: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(198, 164, 63, 0.25);
  color: #fff;
  transition: 0.35s;
}
.shipping-box i {
  font-size: 28px;
  color: #c6a43f;
  flex-shrink: 0;
}
#shipping-text {
  margin: 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Cairo", "Tajawal", "Segoe UI", sans-serif;
  text-align: left;
}
.shipping-box:hover {
  border-color: #c6a43f;
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .promo-video-section {
    width: calc(100% - 18px);
    margin: 18px auto;
    padding: 70px 4%;
    border-radius: 22px;
  }
  .promo-container {
    padding: 28px 16px;
    border-radius: 24px;
  }
  #promo-title {
    font-size: 28px;
  }
  #promo-subtitle {
    font-family: "Cairo", "Tajawal", sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.4px;
    color: rgba(255, 255, 255, 0.88);
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
  }
  #shipping-text {
    font-family: "Cairo", "Tajawal", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.9;
    letter-spacing: 0.3px;
    color: #f5f5f5;
    text-shadow: 0 1px 10px rgba(198, 164, 63, 0.08);
  }
  html[dir="rtl"] .shipping-box {
    direction: rtl;
    justify-content: flex-start;
  }
  html[dir="rtl"] #shipping-text {
    text-align: right;
  }
  .shipping-box {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }
}
.coming-soon-section {
  position: relative;
  width: calc(100% - 40px);
  margin: 40px auto;
  padding: 110px 7%;
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at top left,
      rgba(212, 175, 55, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 255, 255, 0.05),
      transparent 25%
    ),
    linear-gradient(180deg, #0b0b0b 0%, #151515 100%);
}
.coming-soon-section::before,
.coming-soon-section::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  z-index: 0;
}
.coming-soon-section::before {
  top: -80px;
  left: -120px;
  background: #d4af37;
}
.coming-soon-section::after {
  bottom: -100px;
  right: -120px;
  background: #b8860b;
}
.coming-bg-video {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  object-fit: cover;
  z-index: 1;
  filter: blur(1.5px) brightness(0.55);
  transform: rotate(-2deg) scale(1.1);
}
.coming-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.92)
  );
  z-index: 2;
}
.coming-frame {
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  border: 2px solid rgba(198, 164, 63, 0.35);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 40px rgba(198, 164, 63, 0.1);
  z-index: 3;
  pointer-events: none;
}
.coming-content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 1100px;
  margin: auto;
}
.coming-title {
  font-size: 90px;
  font-family: "Cinzel", serif;
  color: #c6a43f;
  letter-spacing: 6px;
  text-shadow: 0 0 25px rgba(198, 164, 63, 0.3);
  margin-bottom: 10px;
}
.coming-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  font-family: "Cairo", "Tajawal", sans-serif;
}
.coming-gallery {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: nowrap;
}
.coming-gallery img:nth-child(1) {
  width: 200px;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0.85;
  border: 2px solid rgba(198, 164, 63, 0.25);
  transition: 0.4s ease;
}
.coming-gallery img:nth-child(2) {
  width: 380px;
  height: 520px;
  object-fit: cover;
  border-radius: 22px;
  border: 2px solid rgba(198, 164, 63, 0.55);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.65);
  transform: scale(1.05);
  z-index: 3;
}
.coming-gallery img:nth-child(3) {
  width: 200px;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0.85;
  border: 2px solid rgba(198, 164, 63, 0.25);
  transition: 0.4s ease;
}
.coming-gallery img:hover {
  transform: translateY(-10px) scale(1.03);
  opacity: 1;
}
.coming-btn {
  font-family: "Cairo", "Tajawal", sans-serif;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 30px;
  border: 1px solid rgba(198, 164, 63, 0.5);
  background: rgba(0, 0, 0, 0.4);
  color: #c6a43f;
  font-size: 16px;
  letter-spacing: 2px;
  cursor: default;
  backdrop-filter: blur(10px);
  margin-top: 35px;
}
@media (max-width: 768px) {
  .coming-gallery {
    flex-direction: row !important;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
  }
}
.coming-gallery img {
  object-fit: cover;
  display: block;
  border-radius: 18px;
  flex-shrink: 0;
  aspect-ratio: 3 / 4;
}
* {
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
}
.fragrances-header,
.fragrances-grid {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .coming-gallery {
    gap: 10px;
  }
  .coming-gallery img:nth-child(2) {
    width: 190px;
    height: 270px;
  }
  .coming-gallery img:nth-child(1),
  .coming-gallery img:nth-child(3) {
    width: 75px;
    height: 110px;
    opacity: 0.9;
  }
}
@media (max-width: 768px) {
  .coming-title {
    font-size: 38px;
    letter-spacing: 1px;
    line-height: 1.2;
  }
  .coming-subtitle {
    font-size: 16px;
    line-height: 1.8;
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .clients-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    cursor: grab;
    padding: 10px 0;
  }
  .clients-wrapper:active {
    cursor: grabbing;
  }
  .clients-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollClients 20s linear infinite;
    animation-play-state: running;
  }
  .clients-wrapper.user-scrolling .clients-track {
    animation-play-state: paused;
  }
  .client {
    flex: 0 0 170px;
    width: 170px;
    height: 170px;
  }
  .clients-wrapper::-webkit-scrollbar {
    display: none;
  }
}
@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
body.loaded {
  visibility: visible;
}
#preloader {
  visibility: visible !important;
}
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.policy-section {
  position: relative;
  overflow: hidden;
  padding: 110px 7%;
  background:
    radial-gradient(
      circle at top right,
      rgba(212, 175, 55, 0.1),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(255, 255, 255, 0.05),
      transparent 25%
    ),
    linear-gradient(180deg, #0b0b0b 0%, #151515 100%);
  width: calc(100% - 40px);
  min-height: calc(100vh - 40px);
  margin: 40px auto;
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.policy-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 55px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(198, 164, 63, 0.2);
}
.policy-list {
  width: 100%;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#policy-title {
  color: #c6a43f;
  font-size: 42px;
  margin-bottom: 25px;
  font-family: "Cairo", "Tajawal", sans-serif;
}
#policy-subtitle {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
  font-size: 20px;
  margin-bottom: 40px;
  margin-top: 40px;
}
.policy-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.policy-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(198, 164, 63, 0.2);
  transition: 0.35s;
}
.policy-item:hover {
  transform: translateX(8px);
  border-color: #c6a43f;
  box-shadow: 0 0 25px rgba(198, 164, 63, 0.2);
}
.policy-item i {
  color: #c6a43f;
  font-size: 22px;
  margin-top: 4px;
}
.policy-item span {
  color: #fff;
  line-height: 1.8;
  font-size: 17px;
}
.policy-video {
  width: 100%;
  max-width: 900px;
  margin: 45px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.policy-video video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  padding: 18px;
  border-radius: 28px;
  border: 2px solid rgba(212, 175, 55, 0.35);
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 30px rgba(212, 175, 55, 0.12);
  transition: 0.4s;
}
.policy-video video:hover {
  transform: translateY(-6px);
  border-color: #c6a43f;
  box-shadow:
    0 25px 55px rgba(0, 0, 0, 0.45),
    0 0 45px rgba(198, 164, 63, 0.25);
}
@media (max-width: 900px) {
  .policy-section {
    min-height: auto;
    padding: 60px 5%;
    margin: 20px auto;
    width: calc(100% - 20px);
  }
  .policy-container {
    padding: 25px 15px;
    border-radius: 22px;
  }
  #policy-title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  #policy-subtitle {
    font-size: 17px;
    margin-top: 15px;
    margin-bottom: 25px;
    line-height: 1.8;
  }
  .policy-video {
    margin: 25px auto;
    width: 100%;
  }
  .policy-video video {
    padding: 8px;
    border-radius: 18px;
  }
  .policy-list {
    margin-top: 25px;
    gap: 12px;
  }
  .policy-item {
    padding: 14px;
    gap: 10px;
  }
  .policy-item span {
    font-size: 15px;
  }
}
.shipping-box {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 15px;
}
.shipping-box i {
  font-size: 32px;
  color: #c6a43f;
}
#shipping-text {
  width: 100%;
  margin: 0;
  text-align: center;
  line-height: 1.9;
}
html[dir="rtl"] .shipping-box {
  direction: rtl;
  align-items: center;
}
html[dir="rtl"] #shipping-text {
  text-align: center;
}
/* ===== CLEAN SIDEBAR ===== */
/* ===========================
   Premium Glass Sidebar
=========================== */
/* =========================================
   FIXED GLASS SIDEBAR
   ثابت من اليمين في العربي والإنجليزي
========================================= */

.sidebar {
  position: fixed;
  top: 0;
  right: -360px;
  left: auto;

  width: 340px;
  max-width: 88vw;
  height: 100vh;
  height: 100dvh;

  padding: 95px 22px 30px;

  display: flex;
  flex-direction: column;
  gap: 10px;

  background:
    linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.82),
      rgba(18, 18, 18, 0.72)
    );

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  border-left: 1px solid rgba(198, 164, 63, 0.22);
  border-right: none;

  box-shadow:
    -20px 0 60px rgba(0, 0, 0, 0.5),
    inset 1px 0 rgba(255, 255, 255, 0.04);

  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;

  visibility: hidden;
  pointer-events: none;

  transition:
    right 0.42s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.42s ease;

  z-index: 999999;
}

.sidebar.open {
  right: 0;
  left: auto;

  visibility: visible;
  pointer-events: auto;
}

/* السايدبار يبقى من اليمين في العربي أيضًا */
html[dir="rtl"] .sidebar,
body[dir="rtl"] .sidebar {
  right: -360px;
  left: auto;

  border-left: 1px solid rgba(198, 164, 63, 0.22);
  border-right: none;

  box-shadow:
    -20px 0 60px rgba(0, 0, 0, 0.5),
    inset 1px 0 rgba(255, 255, 255, 0.04);

  transition:
    right 0.42s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.42s ease;
}

html[dir="rtl"] .sidebar.open,
body[dir="rtl"] .sidebar.open {
  right: 0;
  left: auto;
}

/* =========================================
   SIDEBAR LINKS
========================================= */

.sidebar a {
  width: 100%;
  min-height: 50px;

  display: flex;
  align-items: center;

  padding: 12px 16px;

  color: #f5f5f5;
  background: rgba(255, 255, 255, 0.025);

  border: 1px solid transparent;
  border-radius: 14px;

  font-family: "Cairo", sans-serif;
  font-size: 16px;
  font-weight: 600;

  text-decoration: none;

  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.sidebar a:hover {
  color: #d4b96a;

  background: rgba(198, 164, 63, 0.12);
  border-color: rgba(198, 164, 63, 0.25);

  transform: translateX(-4px);
}

/* العربي: النص يمين فقط بدون نقل السايدبار */
html[dir="rtl"] .sidebar a,
body[dir="rtl"] .sidebar a {
  direction: rtl;
  text-align: right;
  justify-content: flex-start;
}

html[dir="rtl"] .sidebar a:hover,
body[dir="rtl"] .sidebar a:hover {
  transform: translateX(-4px);
}

/* =========================================
   CLOSE BUTTON
========================================= */

.close-btn {
  position: absolute;
  top: 24px;
  left: 22px;
  right: auto;

  width: 42px;
  height: 42px;
  padding: 0;

  display: grid;
  place-items: center;

  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(198, 164, 63, 0.3);
  border-radius: 50%;

  font-size: 24px;
  line-height: 1;

  cursor: pointer;

  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.close-btn:hover {
  color: #111111;
  background: #c6a43f;
  transform: rotate(90deg);
}

/* يبقى زر الإغلاق في نفس المكان بالعربي والإنجليزي */
html[dir="rtl"] .close-btn,
body[dir="rtl"] .close-btn {
  left: 22px;
  right: auto;
}

/* =========================================
   LANGUAGE BUTTON
========================================= */

.sidebar-lang-btn,
.side-lang-btn {
  width: 100%;
  min-height: 46px;

  margin-top: 8px;
  padding: 11px 15px;

  color: #d4b96a;
  background: rgba(198, 164, 63, 0.08);

  border: 1px solid rgba(198, 164, 63, 0.35);
  border-radius: 14px;

  font-family: "Cairo", sans-serif;
  font-weight: 700;

  cursor: pointer;

  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.sidebar-lang-btn:hover,
.side-lang-btn:hover {
  color: #111111;

  background:
    linear-gradient(
      135deg,
      #d4b96a,
      #c6a43f,
      #9e7e32
    );

  border-color: #c6a43f;
}

/* =========================================
   MENU BUTTON
========================================= */

.menu-btn {
  position: absolute;
  top: 50%;
  right: 25px;
  left: auto;

  width: 44px;
  height: 44px;
  padding: 0;

  display: grid;
  place-items: center;

  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(198, 164, 63, 0.25);
  border-radius: 50%;

  font-size: 25px;
  line-height: 1;

  cursor: pointer;

  transform: translateY(-50%);

  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.menu-btn:hover {
  color: #111111;
  background: #c6a43f;

  transform:
    translateY(-50%)
    rotate(90deg);
}

/* يبقى زر القائمة يمين في العربي والإنجليزي */
html[dir="rtl"] .menu-btn,
body[dir="rtl"] .menu-btn {
  right: 25px;
  left: auto;
}

/* =========================================
   LIST RESET
========================================= */

#sidebar ul,
#sidebar li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#sidebar ul {
  width: 100%;

  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* =========================================
   SCROLLBAR
========================================= */

.sidebar {
  scrollbar-width: thin;
  scrollbar-color: #c6a43f transparent;
}

.sidebar::-webkit-scrollbar {
  width: 6px;
}

.sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
  background:
    linear-gradient(
      180deg,
      #d4b96a,
      #9e7e32
    );

  border-radius: 20px;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 480px) {
  .sidebar {
    right: -92vw;

    width: 92vw;
    max-width: 92vw;

    padding:
      90px
      16px
      25px;
  }

  .sidebar.open {
    right: 0;
  }

  html[dir="rtl"] .sidebar,
  body[dir="rtl"] .sidebar {
    right: -92vw;
    left: auto;
  }

  html[dir="rtl"] .sidebar.open,
  body[dir="rtl"] .sidebar.open {
    right: 0;
    left: auto;
  }

  .sidebar a {
    min-height: 47px;
    padding: 11px 14px;
    font-size: 15px;
  }
}
/* ===== CAR AROMA SECTION ===== */
/* ==================================================
   CAR AROMA SECTION
   الترتيب: العنوان - الفيديو - الوصف - الكروت
================================================== */

.car-aroma-section {
    position: relative;

    width: calc(100% - 40px);
    max-width: 1500px;

    margin: 40px auto;
    padding: 100px 7%;

    color: #ffffff;

    background:
        radial-gradient(
            circle at top right,
            rgba(198, 164, 63, 0.13),
            transparent 32%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(255, 255, 255, 0.05),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #0b0b0b 0%,
            #151515 100%
        );

    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);

    overflow: hidden;
}

/* جميع العناصر تحت بعضها */
.car-aroma-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 30px;
}

/* العنوان أول عنصر */
.car-aroma-header {
    width: 100%;
    text-align: center;
}

.car-aroma-header h2 {
    margin: 0;

    color: #c6a43f;

    font-family: "Cairo", sans-serif;
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.4;
}

/* الفيديو ثاني عنصر */
.car-aroma-video {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.car-aroma-video video {
    display: block;

    width: 100%;
    max-width: 760px;
    height: auto;

    aspect-ratio: 16 / 9;
    object-fit: cover;

    border: 2px solid rgba(198, 164, 63, 0.5);
    border-radius: 24px;

    box-shadow:
        0 0 30px rgba(198, 164, 63, 0.18),
        0 25px 55px rgba(0, 0, 0, 0.35);
}

/* النص التوضيحي ثالث عنصر */
.car-aroma-description {
    width: 100%;
    max-width: 850px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.9);

    font-family: "Cairo", "Tajawal", sans-serif;
    font-size: 17px;
    line-height: 2;

    text-align: center;
}

/* الكروت رابع عنصر */
.car-features {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 18px;
}

/* الكارت */
.car-feature {
    width: 100%;
    min-width: 0;

    padding: 20px;

    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;

    gap: 14px;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(198, 164, 63, 0.25);
    border-radius: 20px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    text-align: left;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.car-feature:hover {
    transform: translateY(-4px);

    border-color: rgba(198, 164, 63, 0.55);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* أيقونة الكارت */
.car-feature > i {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;

    color: #c6a43f;
    background: rgba(198, 164, 63, 0.12);

    border: 1px solid rgba(198, 164, 63, 0.28);
    border-radius: 50%;

    font-size: 18px;
}

/* النص داخل الكارت */
.car-feature-content {
    min-width: 0;
    flex: 1;

    text-align: inherit;
}

.car-feature-content h3 {
    margin: 0 0 7px;

    color: #ffd77a;

    font-family: "Cairo", sans-serif;
    font-size: 18px;
    line-height: 1.5;

    text-align: inherit;
}

.car-feature-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.88);

    font-family: "Cairo", "Tajawal", sans-serif;
    font-size: 14px;
    line-height: 1.8;

    text-align: inherit;
}

/* ==================================================
   CAR SECTION RTL
   الأيقونة والنص من أقصى اليمين في العربية
================================================== */

body[dir="rtl"] .car-aroma-section {
    direction: rtl;
}

body[dir="rtl"] .car-aroma-description {
    direction: rtl;
    text-align: center;
}

body[dir="rtl"] .car-feature {
    direction: rtl;

    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;

    text-align: right;
}

/* الأيقونة أول عنصر من جهة اليمين */
body[dir="rtl"] .car-feature > i {
    order: 0;

    margin-right: 0;
    margin-left: 0;
}


body[dir="rtl"] .car-feature-content {
    order: 1;

    direction: rtl;
    text-align: right;
}

body[dir="rtl"] .car-feature-content h3,
body[dir="rtl"] .car-feature-content p {
    direction: rtl;
    text-align: right;
}


body[dir="ltr"] .car-feature {
    direction: ltr;
    text-align: left;
}

body[dir="ltr"] .car-feature-content {
    direction: ltr;
    text-align: left;
}

/* ==================================================
   CAR SECTION TABLET
================================================== */

@media (max-width: 992px) {
    .car-aroma-section {
        padding: 80px 5%;
    }

    .car-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ==================================================
   CAR SECTION MOBILE
================================================== */

@media (max-width: 768px) {
    .car-aroma-section {
        width: calc(100% - 20px);

        margin: 20px auto;
        padding: 60px 16px;

        border-radius: 22px;
    }

    .car-aroma-container {
        width: 100%;
        gap: 24px;
    }

    .car-aroma-video {
        width: 100%;
    }

    .car-aroma-video video {
        width: 100%;
        max-width: none;

        border-radius: 18px;
    }

    .car-aroma-description {
        font-size: 15px;
        line-height: 1.9;
    }

    .car-features {
        display: flex;
        flex-direction: column;

        gap: 13px;
    }

    .car-feature {
        width: 100%;

        padding: 15px;

        align-items: flex-start;

        border-radius: 17px;

        transform: none;
    }

    .car-feature:hover {
        transform: none;
    }

    .car-feature > i {
        width: 42px;
        height: 42px;

        flex-basis: 42px;

        font-size: 16px;
    }

    .car-feature-content h3 {
        font-size: 16px;
    }

    .car-feature-content p {
        font-size: 13px;
    }
}
@media (prefers-reduced-motion: reduce) {
  .car-glow {
    animation: none;
  }
  .sidebar,
  .sidebar a,
  .menu-btn,
  .close-btn,
  .car-feature,
  .car-aroma-video video {
    transition: none;
  }
}


.sidebar {
    position: fixed;
    top: 0;

    right: -340px;
    left: auto;

    width: min(340px, 88vw);
    height: 100dvh;

    overflow-y: auto;
    overflow-x: hidden;

    transition: right 0.4s ease;

    z-index: 999999;
}

.sidebar.open {
    right: 0;
    left: auto;
}


html[dir="rtl"] .sidebar,
body[dir="rtl"] .sidebar {
    right: -340px;
    left: auto;

    border-left: 1px solid rgba(198, 164, 63, 0.25);
    border-right: none;

    transition: right 0.4s ease;
}

html[dir="rtl"] .sidebar.open,
body[dir="rtl"] .sidebar.open {
    right: 0;
    left: auto;
}

/* محاذاة النص فقط تتغير في العربية */
html[dir="rtl"] .sidebar a,
body[dir="rtl"] .sidebar a {
    direction: rtl;
    text-align: right;
}


.sidebar .close-btn {
    position: absolute;
    top: 25px;
    left: 25px;
    right: auto;
}

.sidebar {
    scrollbar-width: thin;
    scrollbar-color: #C6A43F transparent;
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background: #C6A43F;
    border-radius: 20px;
}


.footer .contact-item {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


.footer .contact-phone {
    width: auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
    white-space: nowrap;
}

/* الإنجليزية */
html[dir="ltr"] .footer .contact-item,
body[dir="ltr"] .footer .contact-item {
    flex-direction: row;
    justify-content: center;
    text-align: center;
}

html[dir="ltr"] .footer .contact-phone,
body[dir="ltr"] .footer .contact-phone {
    direction: ltr;
    justify-content: center;
    text-align: center;
}

/* العربية */
html[dir="rtl"] .footer .contact-item,
body[dir="rtl"] .footer .contact-item {
    flex-direction: row;
    justify-content: center;
    text-align: center;
}

html[dir="rtl"] .footer .contact-phone,
body[dir="rtl"] .footer .contact-phone {
    direction: ltr;
    justify-content: center;
    text-align: center;
}

/* الهاتف */
@media (max-width: 768px) {
    .footer .contact-item,
    html[dir="ltr"] .footer .contact-item,
    body[dir="ltr"] .footer .contact-item,
    html[dir="rtl"] .footer .contact-item,
    body[dir="rtl"] .footer .contact-item {
        justify-content: center;
    }

    .footer .contact-phone {
        max-width: 100%;
        margin-inline: auto;
    }
}
#preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  z-index: 99999999;
}
/* =========================================
   DEVELOPER GMAIL
========================================= */
/* =========================================
   DEVELOPER GMAIL - FINAL FIX
========================================= */

.developer-email-row{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 35px;
}
.developer-email-label {
  color: #c6a43f;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
}

.gmail-logo{
    width:18px;
    height:18px;
    object-fit:contain;
    display:block;

    position:relative;
    top:-2px;   
}

.developer-email-address {
 color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;

  direction: ltr;
  unicode-bidi: isolate;

  text-transform: none !important;
  letter-spacing: 0 !important;
}


html[dir="rtl"] .developer-email-row,
body[dir="rtl"] .developer-email-row {
  direction: rtl;


  transform: translateX(10px);
}

/* الإنجليزي */
html[dir="ltr"] .developer-email-row,
body[dir="ltr"] .developer-email-row {
  direction: ltr;
  transform: none;
}


#footer-dev-name {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .developer-email-row {
    margin-top: 18px;
    gap: 8px;
  }

  html[dir="rtl"] .developer-email-row,
  body[dir="rtl"] .developer-email-row {
    transform: translateX(7px);
  }
}
.company-email-row{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    margin-top:8px;     
    margin-bottom:30px;  

    line-height:1;
}

.company-email-label{
  color:#c6a43f;
  font-size:13px;
  font-weight:700;
  line-height:1.5;
  white-space:nowrap;
}

.company-gmail-logo{
    width:18px;
    height:18px;
    object-fit:contain;

    position:static;     
    vertical-align:middle;
}

.company-email-link{
 color: rgba(255, 255, 255, 0.82);
  text-decoration:none;

  font-size:18px;
  font-weight:600;
  line-height:1.5;
font-family: "Cormorant Garamond", serif;
  direction:ltr;
  unicode-bidi:isolate;

  text-transform:none !important;
  letter-spacing:0 !important;
}

html[dir="rtl"] .company-email-row{
  direction:rtl;
}

html[dir="ltr"] .company-email-row{
  direction:ltr;
}
.developer-email-address,
.company-email-link{
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255,255,255,.88);
    line-height: 1.5;
    letter-spacing: .2px;
}
.company-email-row,
.developer-email-row{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    flex-wrap:nowrap;
}
@media (max-width:768px){

.developer-email-address,
.company-email-link{
    font-size:18px;
}

}
html[dir="ltr"] #footer-dev-name{
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .8px;
}

html[dir="rtl"] #footer-dev-name{
    font-family: "Cairo", sans-serif;
}