/* Base Styles */
:root {
  --gold: #d4af37;
  --gold-light: #f5e7a3;
  --gold-dark: #aa8c2c;
  --white: #ffffff;
  --off-white: #f9f9f9;
  --light-gray: #efefef;
  --text-dark: #333333;
  --text-light: #777777;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cairo", serif;
  font-weight: 600;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}
/* Language Switching */
body {
  --direction: ltr;
  direction: var(--direction);
}

body.rtl {
  --direction: rtl;
}

.en-text {
  display: block;
}

.ar-text {
  display: none;
}

body.rtl .en-text {
  display: none;
}

body.rtl .ar-text {
  display: block;
}

.language-switch {
  position: fixed;
  top: 35px;
  right: 15px;
  z-index: 1000;
}

.language-switch.scrolled {
  top: 15px;
}

body.rtl .language-switch {
  right: auto;
  left: 20px;
}

#lang-toggle {
  background-color: var(--gold);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
}

#lang-toggle:hover {
  background-color: var(--gold-dark);
}

.lang-toggle-mobile {
  background-color: var(--gold);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  display: none;
}

.lang-toggle-mobile:hover {
  background-color: var(--gold-dark);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  transition: all 0.3s ease;
}

header.scrolled nav {
  padding: 0.5rem 2rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  cursor: pointer;
}

.logo img {
  height: 60px;
  transition: all 0.3s ease;
}

header.scrolled .logo img {
  height: 40px;
}

.logo-mobile {
  display: none;
}

.logo-mobile img {
  height: 40px;
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  list-style: none;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  font-size: 1.2rem;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links .logo:hover {
  opacity: 0.5;
}

.nav-links .logo:hover::after {
  width: 0%;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* Hero Section with Parallax */
.parallax-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-image: url("images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  transform: translateZ(-1px) scale(2);
  z-index: -2;
}

.parallax-blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 50%);
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  max-width: 800px;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background-color: var(--off-white);
}

.about-section .container {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-logo {
  flex: 1;
  text-align: center;
}

.about-logo img {
  max-width: 250px;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
  transition: transform 0.5s ease;
}

.about-logo img:hover {
  transform: scale(1.05);
}

.about-content {
  flex: 2;
}

.about-content h2 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.about-content p {
  color: var(--text-light);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 7px;
}

.about-description {
  margin: 1.5rem 0;
}

.about-description p {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-weight: 650;
  font-size: 1.1rem;
}

.gold-btn {
  background-color: var(--gold);
  color: var(--white);
  border: none;
  padding: 3px 25px;
  border-radius: 30px;
  width: 130px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.gold-btn:hover {
  background-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

/* Luxury Section */
.luxury-section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--gold);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--gold);
}

.product-categories {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
}

.category {
  flex: 1;
  text-align: center;
  padding: 1.5rem;
  border-radius: 8px;
  background-color: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.category:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-img {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 8px;
}

.category-img img {
  transition: transform 0.5s ease;
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.category:hover .category-img img {
  transform: scale(1.1);
}

.category h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.category p {
  color: var(--text-light);
  line-height: 1.6;
  font-weight: 600;
}

/* Products Section */
.products-section {
  padding: 5rem 0;
  background-color: var(--off-white);
}

.products-header {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.products-sketch {
  flex: 1;
}

.products-sketch img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.products-title {
  flex: 1;
  text-align: center;
}

.products-title h2 {
  font-size: 2.5rem;
  color: var(--gold);
  border-bottom: 3px solid var(--gold);
}

.products-title-mobile {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.products-title-mobile h2 {
  font-size: 1.7rem;
  color: var(--gold);
  border-bottom: 3px solid var(--gold);
}

.products-overlay {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 50%);
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.products-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .item-overlay {
  transform: translateY(0);
}

.products-cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}

.products-cta .gold-btn {
  width: 120px;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  text-align: center;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.contact-section p {
  margin-bottom: 2rem;
  color: var(--text-light);
}

.container.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--gold);
  color: var(--white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--gold-dark);
  transform: translateY(-5px);
}

.contact-content .gold-btn {
  width: 124px;
}

.container.map {
  padding-right: 20px;
}

.container.map iframe {
  width: 600px;
  height: 450px;
}

/* -------------------------------------------------About Page Specific Styles ---------------------------------------*/
.about-hero {
  margin-top: 80px;
  padding: 4rem 0;
  text-align: center;
  background-color: var(--off-white);
}

.page-title {
  font-size: 3rem;
  color: var(--gold);
  border-bottom: 3px solid var(--gold);
  margin-bottom: 1rem;
  width: 300px;
  place-self: center;
}

/* About Content Section */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.store-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.5s ease;
}

.image-wrapper:hover .store-image {
  transform: scale(1.05);
}

.image-wrapper.transitioning .store-image {
  opacity: 0.7;
}

.image-pagination {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: rgba(255, 231, 14, 0.945);
  transform: scale(1.2);
}

.about-info {
  position: relative;
}

.diamond-bg {
  position: relative;
  padding: 3rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.diamond-bg::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-image: url("images/diamond-bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.company-info h2 {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.company-subtitle {
  color: var(--text-light);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 7px;
}

.separator {
  width: 80px;
  height: 3px;
  background-color: var(--gold);
  margin: 1.5rem 0;
}

.about-content .about-description {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-weight: 650;
  font-size: 1.1rem;
}

/* Location Section */
.location-section {
  padding: 5rem 0;
  background-color: var(--off-white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location-info {
  padding: 2rem;
}

.location-description {
  line-height: 1.6;
  font-size: 1.1rem;
  font-weight: 600;
}

.location-wp {
  margin-bottom: 1rem;
}

/* -------------------------------------------------- Contact Us Page --------------------------------------------*/
.contact-page {
  margin-top: 80px;
}

.contact-page p {
  margin-bottom: 0rem;
  font-size: 1.5rem;
  color: var(--text-light);
  font-weight: 600;
  line-height: 1.2;
}

.contact-page .social-links {
  margin-top: 2rem;
}

.wow {
  margin-bottom: 1rem;
}
/* --------------------------------------------------- Products Page --------------------------------------------*/
.products-gallery2 {
  display: flex;
  gap: 20px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-item2 {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.gallery-item2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item2:hover img {
  transform: scale(1.1);
}

.item-overlay2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item2:hover .item-overlay2 {
  transform: translateY(0);
}

.products-header2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.products-title2 {
  text-align: center;
}

.products-title2 h2 {
  font-size: 2.5rem;
  color: var(--gold);
  border-bottom: 3px solid var(--gold);
}
/* Footer */
footer {
  background-color: var(--gold);
  color: var(--white);
  padding: 0 0;
  text-align: center;
}

footer .container {
  padding: 0.2rem 0;
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-section .container {
    flex-direction: column;
    gap: 2rem;
  }

  .product-categories {
    flex-direction: column;
  }

  .products-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .container.map iframe {
    width: 400px;
    height: 300px;
  }

  /* About Us Page */
  .about-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .location-grid {
    display: flex;
    flex-direction: column-reverse;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .company-info h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .logo-mobile {
    display: block;
  }

  .logo {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 1.5rem 0;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .products-gallery {
    grid-template-columns: 1fr;
  }

  .language-switch {
    /* top: 22px; */
    display: none;
  }

  .lang-toggle-mobile {
    display: block;
  }

  .contact-section {
    flex-direction: column;
  }

  .container.map {
    padding-right: 0;
  }

  /* Contact Us Page */
  .contact-page {
    margin-top: 0px;
  }

  /* Products Page */
  .products-gallery2 {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .products-title {
    display: none;
  }

  .products-sketch {
    position: relative;
  }

  .products-sketch img {
    height: 200px;
    width: 100%;
    object-fit: cover;
  }

  .products-title-mobile {
    display: block;
  }

  .products-overlay {
    display: block;
  }

  /* About Us Page */
  .page-title {
    font-size: 2rem;
  }

  .diamond-bg {
    padding: 1.5rem;
  }

  .company-info h2 {
    font-size: 1.8rem;
  }

  .store-image {
    height: 300px;
  }
}

@media (max-width: 450px) {
  .container.map {
    padding: 20px;
  }
  .container.map iframe {
    width: 100%;
    height: 200px;
  }
}

#loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
