/* Navbar Styles */
.navbar-custom {
  background-color: #ffffff;
  padding: 15px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Contact Button - سيتم تحديث الألوان ديناميكياً من اللوجو */
.contact-btn {
  background-color: var(--logo-primary-color, #c4a24c);
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-block;
}

.contact-btn:hover {
  background-color: var(--logo-primary-dark, #a0853d);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px var(--logo-primary-shadow, rgba(196, 162, 76, 0.3));
  color: #ffffff;
  text-decoration: none;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1;
  justify-content: center;
  direction: rtl;
}

.nav-link {
  color: var(--logo-text-color, #2c2416);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--logo-primary-color, #c4a24c);
  text-decoration: none;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

/* Navbar Actions Container */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--logo-text-color, #2c2416);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Dropdown Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  margin-top: 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-menu.active {
  display: flex;
  max-height: 500px;
  padding: 15px 0;
}

.mobile-nav-link {
  color: var(--logo-text-color, #2c2416);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 20px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-nav-link:hover {
  color: var(--logo-primary-color, #c4a24c);
  background-color: rgba(196, 162, 76, 0.05);
  text-decoration: none;
  padding-right: 30px;
}

.mobile-contact-btn {
  background-color: var(--logo-primary-color, #c4a24c);
  color: #ffffff !important;
  text-align: center;
  border-radius: 8px;
  margin: 10px 20px 0;
  border-bottom: none !important;
}

.mobile-contact-btn:hover {
  background-color: var(--logo-primary-dark, #a0853d) !important;
  color: #ffffff !important;
  padding-right: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .navbar-content {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .contact-btn {
    display: none;
  }
  
  .navbar-actions {
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .navbar-content {
    flex-wrap: nowrap;
    gap: 15px;
  }
  
  .navbar-logo img {
    max-height: 40px;
  }
  
  .mobile-menu-toggle {
    width: 28px;
    height: 28px;
  }
  
  .mobile-nav-link {
    font-size: 15px;
    padding: 10px 20px;
  }
  
  .mobile-contact-btn {
    margin: 10px 15px 0;
    padding: 12px 20px;
  }
}

/* ============================================
   Hero Section Styles
   ============================================ */

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f5e6d3 0%, #d4c4a8 50%, #b8a082 100%);
  z-index: -1;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(196, 162, 76, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(168, 130, 60, 0.15) 0%, transparent 50%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Image بدل الموبايل */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: heroImageFloat 6s ease-in-out infinite;
}

.hero-image img {
  max-width: 70%;
  height: auto;
  /* بدون أي باك جراوند إضافية أو إطار/ظل للصورة */
  border-radius: 0;
  box-shadow: none;
}

@keyframes heroImageFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Hero Text Content */
.hero-text {
  color: #2c2416;
  direction: rtl;
  text-align: right;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #2c2416;
  text-align: right;
  direction: rtl;
}

.title-main {
  display: block;
  background: linear-gradient(135deg, #2c2416 0%, var(--logo-primary-color, #c4a24c) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleFadeIn 1s ease-out;
}

.title-sub {
  display: block;
  color: var(--logo-primary-color, #c4a24c);
  font-size: 0.8em;
  margin-top: 10px;
  animation: titleFadeIn 1.2s ease-out;
}

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

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--logo-primary-color, #c4a24c);
  margin-bottom: 15px;
  animation: fadeInUp 1.4s ease-out;
  text-align: right;
  direction: rtl;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 35px;
  max-width: 550px;
  animation: fadeInUp 1.6s ease-out;
  text-align: right;
  direction: rtl;
}

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

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 1.8s ease-out;
  justify-content: flex-end;
  direction: rtl;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  direction: rtl;
}

.btn-primary {
  background: linear-gradient(135deg, var(--logo-primary-color, #c4a24c) 0%, var(--logo-primary-dark, #a0853d) 100%);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--logo-primary-shadow, rgba(196, 162, 76, 0.4));
  color: #ffffff;
  text-decoration: none;
}

.btn-secondary {
  background: #ffffff;
  color: var(--logo-primary-color, #c4a24c);
  border: 2px solid var(--logo-primary-color, #c4a24c);
}

.btn-secondary:hover {
  background: var(--logo-primary-color, #c4a24c);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--logo-primary-shadow, rgba(196, 162, 76, 0.4));
  text-decoration: none;
}

.btn-primary i,
.btn-secondary i {
  font-size: 1rem;
}

/* Hero Features */
.hero-features {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  animation: fadeInUp 2s ease-out;
  justify-content: flex-end;
  direction: rtl;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4a4a4a;
  font-size: 1rem;
  font-weight: 500;
  direction: rtl;
}

.feature-item i {
  color: var(--logo-primary-color, #c4a24c);
  font-size: 1.2rem;
}

/* Responsive Design for Hero */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .phone-frame {
    width: 250px;
    height: 520px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-phone {
    order: 1;
  }
  
  .hero-text {
    order: 2;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-description {
    max-width: 100%;
    margin: 0 auto 35px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-title,
  .hero-subtitle,
  .hero-description {
    text-align: center;
  }
  
  .phone-frame {
    width: 220px;
    height: 460px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 28px;
    font-size: 1rem;
  }
  
  .phone-frame {
    width: 200px;
    height: 420px;
  }
  
  .shape {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .phone-frame {
    width: 180px;
    height: 380px;
  }
}

/* ============================================
   Features Section Styles
   ============================================ */

.features-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f6f2 100%);
  overflow: hidden;
}

.features-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(196, 162, 76, 0.08) 0%, rgba(168, 130, 60, 0.05) 100%);
  filter: blur(60px);
  animation: floatShape 15s ease-in-out infinite;
}

.bg-shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.bg-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  animation-delay: 5s;
}

.bg-shape-3 {
  width: 350px;
  height: 350px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #2c2416;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: 50%;
  transform: translateX(50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--logo-primary-color, #c4a24c), var(--logo-primary-dark, #a0853d));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 30px auto 0;
  line-height: 1.8;
  direction: rtl;
  text-align: center;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* Feature Card */
.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  direction: rtl;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--logo-primary-color, #c4a24c), var(--logo-primary-dark, #a0853d));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(196, 162, 76, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(196, 162, 76, 0.2);
  border-color: var(--logo-primary-color, #c4a24c);
}

/* Feature Icon */
.feature-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--logo-primary-color, #c4a24c) 0%, var(--logo-primary-dark, #a0853d) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
  z-index: 1;
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--logo-primary-color, #c4a24c), var(--logo-primary-dark, #a0853d));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature-card:hover .feature-icon::before {
  opacity: 0.3;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

.feature-icon i {
  font-size: 2.5rem;
  color: #ffffff;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-icon i {
  transform: scale(1.1);
}

/* Feature Content */
.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c2416;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
  color: var(--logo-primary-color, #c4a24c);
}

.feature-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Feature Badge */
.feature-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: #ffffff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(255, 107, 107, 0.3);
  animation: badgePulse 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive Design for Features */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .features-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .feature-card {
    padding: 35px 25px;
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
  }
  
  .feature-icon i {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .feature-title {
    font-size: 1.3rem;
  }
  
  .feature-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .feature-icon i {
    font-size: 1.8rem;
  }
  
  .feature-title {
    font-size: 1.2rem;
  }
}

/* ============================================
   About Us Section Styles
   ============================================ */

.about-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #f8f6f2 0%, #ffffff 100%);
  overflow: hidden;
}

.about-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.about-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(196, 162, 76, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(168, 130, 60, 0.05) 0%, transparent 50%);
  background-size: 100% 100%;
  opacity: 0.6;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* About Visual Elements */
.about-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Icon Card */
.visual-main-card {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.main-icon-wrapper {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--logo-primary-color, #c4a24c) 0%, var(--logo-primary-dark, #a0853d) 100%);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(196, 162, 76, 0.3);
  position: relative;
  transition: all 0.4s ease;
  animation: iconFloat 4s ease-in-out infinite;
}

.main-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--logo-primary-color, #c4a24c), var(--logo-primary-dark, #a0853d));
  opacity: 0.3;
  filter: blur(15px);
  z-index: -1;
  animation: iconGlow 3s ease-in-out infinite;
}

.main-icon-wrapper i {
  font-size: 6rem;
  color: #ffffff;
  z-index: 1;
  transition: transform 0.4s ease;
}

.visual-main-card:hover .main-icon-wrapper {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 25px 70px rgba(196, 162, 76, 0.4);
}

.visual-main-card:hover .main-icon-wrapper i {
  transform: scale(1.1) rotate(-5deg);
}

.icon-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: radial-gradient(circle, rgba(196, 162, 76, 0.2) 0%, transparent 70%);
  animation: glowPulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes iconGlow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  z-index: 3;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.floating-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(196, 162, 76, 0.2);
  border-color: var(--logo-primary-color, #c4a24c);
}

.floating-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--logo-primary-color, #c4a24c), var(--logo-primary-dark, #a0853d));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.floating-text {
  direction: rtl;
  font-weight: 600;
  color: #2c2416;
  font-size: 1rem;
}

.floating-card-1 {
  top: 10%;
  right: -20px;
  animation: floatCard1 5s ease-in-out infinite;
}

.floating-card-2 {
  bottom: 20%;
  left: -30px;
  animation: floatCard2 6s ease-in-out infinite;
  animation-delay: 1s;
}

.floating-card-3 {
  top: 50%;
  right: -40px;
  animation: floatCard3 5.5s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes floatCard1 {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(10px);
  }
}

@keyframes floatCard2 {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(15px) translateX(-10px);
  }
}

@keyframes floatCard3 {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-15px) translateX(15px);
  }
}

/* Decorative Shapes */
.visual-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.shape-item {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(196, 162, 76, 0.1), rgba(168, 130, 60, 0.05));
  animation: shapeFloat 8s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 5%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  bottom: 15%;
  right: 5%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  top: 60%;
  left: 5%;
  animation-delay: 4s;
}

@keyframes shapeFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  33% {
    transform: translate(20px, -20px) scale(1.1);
    opacity: 0.5;
  }
  66% {
    transform: translate(-15px, 15px) scale(0.9);
    opacity: 0.4;
  }
}

/* About Text Content */
.about-text {
  direction: rtl;
  text-align: right;
}

.section-label {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(196, 162, 76, 0.1), rgba(168, 130, 60, 0.1));
  border-right: 3px solid var(--logo-primary-color, #c4a24c);
  border-radius: 5px;
  margin-bottom: 20px;
}

.section-label span {
  color: var(--logo-primary-color, #c4a24c);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #2c2416;
  margin-bottom: 15px;
  line-height: 1.2;
  background: linear-gradient(135deg, #2c2416 0%, var(--logo-primary-color, #c4a24c) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-subtitle {
  font-size: 1.4rem;
  color: var(--logo-primary-color, #c4a24c);
  font-weight: 600;
  margin-bottom: 30px;
}

.about-description {
  margin-bottom: 40px;
}

.about-description p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

.about-description p:last-child {
  margin-bottom: 0;
}

/* Statistics */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
  padding: 30px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.stat-item {
  text-align: center;
  padding: 15px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: linear-gradient(135deg, rgba(196, 162, 76, 0.05), rgba(168, 130, 60, 0.05));
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--logo-primary-color, #c4a24c);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
}

/* Values */
.about-values {
  margin-bottom: 40px;
}

.value-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-right: 4px solid transparent;
}

.value-item:hover {
  transform: translateX(-10px);
  border-right-color: var(--logo-primary-color, #c4a24c);
  box-shadow: 0 10px 30px rgba(196, 162, 76, 0.15);
}

.value-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, var(--logo-primary-color, #c4a24c), var(--logo-primary-dark, #a0853d));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
}

.value-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c2416;
  margin-bottom: 8px;
}

.value-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* CTA Button */
.about-cta {
  margin-top: 40px;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--logo-primary-color, #c4a24c) 0%, var(--logo-primary-dark, #a0853d) 100%);
  color: #ffffff;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(196, 162, 76, 0.3);
  direction: rtl;
}

.btn-about:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(196, 162, 76, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.btn-about i {
  transition: transform 0.3s ease;
}

.btn-about:hover i {
  transform: translateX(-5px);
}

/* Responsive Design for About Section */
@media (max-width: 1200px) {
  .about-content {
    gap: 60px;
  }
  
  .about-title {
    font-size: 3rem;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .about-section {
    padding: 80px 0;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-visual {
    order: 1;
    height: 500px;
  }
  
  .visual-main-card {
    width: 240px;
    height: 240px;
  }
  
  .main-icon-wrapper i {
    font-size: 5rem;
  }
  
  .floating-card {
    padding: 15px 20px;
  }
  
  .floating-card-1 {
    top: 5%;
    right: -10px;
  }
  
  .floating-card-2 {
    bottom: 15%;
    left: -15px;
  }
  
  .floating-card-3 {
    top: 45%;
    right: -20px;
  }
  
  .about-text {
    order: 2;
    text-align: center;
  }
  
  .about-title {
    font-size: 2.5rem;
  }
  
  .about-description {
    text-align: right;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .value-item {
    flex-direction: column;
    text-align: center;
  }
  
  .value-item:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }
  
  .about-visual {
    height: 400px;
  }
  
  .visual-main-card {
    width: 200px;
    height: 200px;
  }
  
  .main-icon-wrapper i {
    font-size: 4rem;
  }
  
  .floating-card {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
  
  .floating-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .floating-card-1,
  .floating-card-2,
  .floating-card-3 {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 10px;
    display: inline-block;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .about-subtitle {
    font-size: 1.2rem;
  }
  
  .about-description p {
    font-size: 1rem;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
  
  .value-item {
    padding: 15px;
  }
  
  .value-content h4 {
    font-size: 1.1rem;
  }
  
  .value-content p {
    font-size: 0.95rem;
  }
  
  .btn-about {
    padding: 15px 35px;
    font-size: 1rem;
  }
  
  .shape-item {
    display: none;
  }
}

@media (max-width: 576px) {
  .about-visual {
    height: 350px;
  }
  
  .visual-main-card {
    width: 180px;
    height: 180px;
  }
  
  .main-icon-wrapper {
    border-radius: 25px;
  }
  
  .main-icon-wrapper i {
    font-size: 3.5rem;
  }
  
  .floating-card {
    padding: 10px 15px;
    font-size: 0.85rem;
  }
  
  .floating-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .about-title {
    font-size: 1.8rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .value-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 1.2rem;
  }
}

/* ============================================
   Download App Section Styles
   ============================================ */

.download-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f2 50%, #ffffff 100%);
  overflow: hidden;
}

.download-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.download-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(196, 162, 76, 0.08), rgba(168, 130, 60, 0.05));
  filter: blur(60px);
  animation: downloadShapeFloat 15s ease-in-out infinite;
}

.download-shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.download-shape-2 {
  width: 350px;
  height: 350px;
  bottom: -80px;
  right: -80px;
  animation-delay: 5s;
}

@keyframes downloadShapeFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(50px, -50px) scale(1.1);
    opacity: 0.7;
  }
}

.download-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Download Text Content */
.download-text {
  direction: rtl;
  text-align: right;
}

.download-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #2c2416;
  margin-bottom: 15px;
  line-height: 1.2;
  background: linear-gradient(135deg, #2c2416 0%, var(--logo-primary-color, #c4a24c) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.download-subtitle {
  font-size: 1.5rem;
  color: var(--logo-primary-color, #c4a24c);
  font-weight: 600;
  margin-bottom: 30px;
}

.download-description {
  margin-bottom: 35px;
}

.download-description p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

.download-description p:last-child {
  margin-bottom: 0;
}

/* App Features List */
.app-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 40px;
  direction: rtl;
}

.app-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #555;
  font-size: 1rem;
  font-weight: 500;
}

.app-feature-item i {
  color: var(--logo-primary-color, #c4a24c);
  font-size: 1.2rem;
}

/* Download Buttons */
.download-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  direction: rtl;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 30px;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  direction: rtl;
}

.download-btn-google {
  background: #000000;
  color: #ffffff;
}

.download-btn-google:hover {
  background: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  text-decoration: none;
}

.download-btn-apple {
  background: #000000;
  color: #ffffff;
}

.download-btn-apple:hover {
  background: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  text-decoration: none;
}

.btn-icon {
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-text {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.btn-label {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.2;
}

.btn-store {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Phone Mockup with Loading */
.download-phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-container {
  position: relative;
}

.phone-mockup {
  position: relative;
  width: 300px;
  height: 620px;
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
  border-radius: 50px;
  padding: 15px;
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.3),
    0 0 0 2px #333,
    inset 0 0 0 2px rgba(255, 255, 255, 0.1);
  z-index: 2;
  animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-20px) rotate(3deg);
  }
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 18px 18px;
  z-index: 3;
}

.phone-screen-download {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* App Loading Screen */
.app-loading-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(196, 162, 76, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
  position: relative;
}

.loading-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 30px;
  animation: logoBounce 2s ease-in-out infinite;
}

.loading-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

@keyframes logoBounce {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.05) translateY(-10px);
  }
}

.loading-text {
  font-size: 1.2rem;
  color: #2c2416;
  font-weight: 600;
  margin-bottom: 30px;
  direction: rtl;
  animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.loading-progress {
  width: 200px;
  height: 6px;
  background: rgba(196, 162, 76, 0.2);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--logo-primary-color, #c4a24c), var(--logo-primary-dark, #a0853d));
  border-radius: 10px;
  animation: progressLoad 3s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(196, 162, 76, 0.5);
}

@keyframes progressLoad {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}

.loading-percentage {
  font-size: 1rem;
  color: var(--logo-primary-color, #c4a24c);
  font-weight: 700;
  animation: percentageCount 3s ease-in-out infinite;
}

@keyframes percentageCount {
  0% {
    content: '0%';
  }
  25% {
    content: '25%';
  }
  50% {
    content: '70%';
  }
  75% {
    content: '85%';
  }
  100% {
    content: '100%';
  }
}

.phone-shadow-download {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 50px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  filter: blur(25px);
  z-index: 1;
  animation: shadowPulseDownload 3s ease-in-out infinite;
}

@keyframes shadowPulseDownload {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateX(-50%) scale(1.2);
    opacity: 0.5;
  }
}

/* Responsive Design for Download Section */
@media (max-width: 1200px) {
  .download-content {
    gap: 60px;
  }
  
  .download-title {
    font-size: 3rem;
  }
  
  .phone-mockup {
    width: 280px;
    height: 580px;
  }
}

@media (max-width: 992px) {
  .download-section {
    padding: 80px 0;
  }
  
  .download-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .download-phone {
    order: 1;
  }
  
  .download-text {
    order: 2;
    text-align: center;
  }
  
  .download-description {
    text-align: right;
  }
  
  .app-features-list {
    grid-template-columns: 1fr;
    justify-content: center;
  }
  
  .download-buttons {
    justify-content: center;
  }
  
  .phone-mockup {
    width: 260px;
    height: 540px;
  }
}

@media (max-width: 768px) {
  .download-section {
    padding: 60px 0;
  }
  
  .download-title {
    font-size: 2.5rem;
  }
  
  .download-subtitle {
    font-size: 1.3rem;
  }
  
  .download-description p {
    font-size: 1rem;
  }
  
  .download-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .download-btn {
    width: 100%;
    justify-content: center;
  }
  
  .phone-mockup {
    width: 240px;
    height: 500px;
  }
  
  .loading-logo {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 576px) {
  .download-title {
    font-size: 2rem;
  }
  
  .phone-mockup {
    width: 220px;
    height: 460px;
  }
  
  .loading-logo {
    width: 80px;
    height: 80px;
  }
  
  .loading-text {
    font-size: 1rem;
  }
  
  .loading-progress {
    width: 160px;
  }
}

/* ============================================
   Footer Styles
   ============================================ */

.footer {
  position: relative;
  background: linear-gradient(180deg, #2c2416 0%, #1a1610 100%);
  color: #ffffff;
  padding: 80px 0 0;
  overflow: hidden;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(196, 162, 76, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(168, 130, 60, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

/* Footer Column */
.footer-column {
  direction: rtl;
  text-align: right;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 80px;
  height: auto;
  border-radius: 10px;
  filter: brightness(1.1);
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffffff 0%, var(--logo-primary-color, #c4a24c) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--logo-primary-color, #c4a24c);
  border-color: var(--logo-primary-color, #c4a24c);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(196, 162, 76, 0.3);
  color: #ffffff;
  text-decoration: none;
}

/* Footer Heading */
.footer-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--logo-primary-color, #c4a24c), var(--logo-primary-dark, #a0853d));
  border-radius: 2px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 20px;
  direction: rtl;
}

.footer-links a::before {
  content: '←';
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  color: var(--logo-primary-color, #c4a24c);
}

.footer-links a:hover {
  color: var(--logo-primary-color, #c4a24c);
  padding-left: 30px;
  text-decoration: none;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  direction: rtl;
  text-align: right;
}

.footer-contact i {
  color: var(--logo-primary-color, #c4a24c);
  font-size: 1.2rem;
  margin-top: 3px;
  min-width: 20px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--logo-primary-color, #c4a24c);
  text-decoration: none;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  position: relative;
  z-index: 1;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  direction: rtl;
  text-align: right;
}

.footer-bottom-content .footer-legal {
  order: 1;
}

.footer-bottom-content .footer-brmja {
  order: 2;
}

/* Brmja Tech Footer */
.footer-brmja {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.brmja-link {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.brmja-link:hover {
  transform: scale(1.05);
  text-decoration: none;
}

.brmja-logo {
  max-width: 120px;
  height: auto;
  display: block;
  filter: brightness(0.9);
  transition: all 0.3s ease;
}

.brmja-link:hover .brmja-logo {
  filter: brightness(1.1);
  transform: scale(1.05);
}

.brmja-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 400;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  direction: rtl;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--logo-primary-color, #c4a24c);
  text-decoration: none;
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.3);
}

/* Responsive Design for Footer */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .footer {
    padding: 60px 0 0;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  
  .footer-bottom-content .footer-legal {
    order: 2;
  }
  
  .footer-bottom-content .footer-brmja {
    order: 1;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 0 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-logo {
    display: flex;
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-heading::after {
    right: 50%;
    transform: translateX(50%);
  }
  
  .footer-links {
    text-align: center;
  }
  
  .footer-links a {
    padding-left: 0;
    padding-right: 20px;
  }
  
  .footer-links a::before {
    left: auto;
    right: 0;
  }
  
  .footer-links a:hover {
    padding-left: 0;
    padding-right: 30px;
  }
  
  .footer-contact {
    text-align: right;
  }
  
  .footer-contact li {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .footer-title {
    font-size: 1.3rem;
  }
  
  .footer-heading {
    font-size: 1.1rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .footer-links a,
  .footer-contact li {
    font-size: 0.9rem;
  }
  
  .footer-legal a {
    font-size: 0.85rem;
  }
  
  .brmja-logo {
    max-width: 100px;
  }
  
  .brmja-copyright {
    font-size: 0.8rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ============================================
   Privacy Policy Page Styles
   ============================================ */

.privacy-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f6f2 100%);
  min-height: 80vh;
  overflow: hidden;
}

.privacy-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.privacy-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(196, 162, 76, 0.06), rgba(168, 130, 60, 0.04));
  filter: blur(60px);
  animation: privacyShapeFloat 20s ease-in-out infinite;
}

.privacy-shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.privacy-shape-2 {
  width: 350px;
  height: 350px;
  bottom: -80px;
  left: -80px;
  animation-delay: 10s;
}

@keyframes privacyShapeFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(50px, -50px) scale(1.1);
    opacity: 0.6;
  }
}

.privacy-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.privacy-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #2c2416;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #2c2416 0%, var(--logo-primary-color, #c4a24c) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  direction: rtl;
}

.privacy-subtitle {
  font-size: 1.1rem;
  color: #666;
  direction: rtl;
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.privacy-section-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  gap: 30px;
  direction: rtl;
  text-align: right;
}

.privacy-section-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(196, 162, 76, 0.15);
  border-color: var(--logo-primary-color, #c4a24c);
}

.section-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: linear-gradient(135deg, var(--logo-primary-color, #c4a24c), var(--logo-primary-dark, #a0853d));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(196, 162, 76, 0.3);
  transition: all 0.3s ease;
}

.privacy-section-item:hover .section-icon {
  transform: scale(1.1) rotate(5deg);
}

.section-content {
  flex: 1;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c2416;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--logo-primary-color, #c4a24c), var(--logo-primary-dark, #a0853d));
  border-radius: 2px;
}

.subsection-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--logo-primary-color, #c4a24c);
  margin-top: 25px;
  margin-bottom: 15px;
}

.section-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 15px;
}

.section-content p:last-child {
  margin-bottom: 0;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  direction: rtl;
}

.privacy-list li {
  padding: 12px 0 12px 30px;
  position: relative;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.privacy-list li:last-child {
  border-bottom: none;
}

.privacy-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--logo-primary-color, #c4a24c);
  font-weight: 700;
  font-size: 1.2rem;
}

.privacy-list li:hover {
  color: #2c2416;
  padding-right: 10px;
}

.contact-info {
  background: linear-gradient(135deg, rgba(196, 162, 76, 0.05), rgba(168, 130, 60, 0.03));
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
  direction: rtl;
}

.contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-info i {
  color: var(--logo-primary-color, #c4a24c);
  font-size: 1.2rem;
  min-width: 20px;
}

.contact-info a {
  color: var(--logo-primary-color, #c4a24c);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--logo-primary-dark, #a0853d);
  text-decoration: underline;
}

.note-box {
  background: linear-gradient(135deg, rgba(196, 162, 76, 0.1), rgba(168, 130, 60, 0.05));
  border-right: 4px solid var(--logo-primary-color, #c4a24c);
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  direction: rtl;
}

.note-box strong {
  color: var(--logo-primary-color, #c4a24c);
  display: block;
  margin-bottom: 8px;
}

/* Responsive Design for Privacy Page */
@media (max-width: 992px) {
  .privacy-section {
    padding: 80px 0;
  }
  
  .privacy-title {
    font-size: 2.8rem;
  }
  
  .privacy-section-item {
    padding: 30px;
    flex-direction: column;
    gap: 20px;
  }
  
  .section-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .privacy-section {
    padding: 60px 0;
  }
  
  .privacy-header {
    margin-bottom: 40px;
  }
  
  .privacy-title {
    font-size: 2.2rem;
  }
  
  .privacy-section-item {
    padding: 25px;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .subsection-title {
    font-size: 1.2rem;
  }
  
  .section-content p,
  .privacy-list li {
    font-size: 1rem;
  }
  
  .contact-info {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .privacy-title {
    font-size: 1.8rem;
  }
  
  .privacy-section-item {
    padding: 20px;
  }
  
  .section-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .privacy-list li {
    padding-left: 25px;
  }
}

/* ============================================
   Page Loader Styles
   ============================================ */

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  direction: rtl;
}

.loader-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  animation: logoPulseLoader 2s ease-in-out infinite;
}

.loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

@keyframes logoPulseLoader {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.loader-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
}

.spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid transparent;
  border-top-color: var(--logo-primary-color, #c4a24c);
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(1) {
  animation-delay: 0s;
}

.spinner-ring:nth-child(2) {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  border-top-color: var(--logo-primary-dark, #a0853d);
  animation-delay: 0.2s;
  animation-duration: 1.2s;
}

.spinner-ring:nth-child(3) {
  width: 50%;
  height: 50%;
  top: 25%;
  left: 25%;
  border-top-color: var(--logo-primary-color, #c4a24c);
  animation-delay: 0.4s;
  animation-duration: 1s;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader-text {
  font-size: 1.2rem;
  color: #2c2416;
  font-weight: 600;
  animation: textPulseLoader 2s ease-in-out infinite;
  direction: rtl;
}

@keyframes textPulseLoader {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ============================================
   Scroll to Top Button Styles
   ============================================ */

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--logo-primary-color, #c4a24c), var(--logo-primary-dark, #a0853d));
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 5px 20px rgba(196, 162, 76, 0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, var(--logo-primary-dark, #a0853d), var(--logo-primary-color, #c4a24c));
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(196, 162, 76, 0.5);
}

.scroll-to-top:active {
  transform: translateY(-2px);
}

.scroll-to-top i {
  animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* Responsive Design for Scroll to Top */
@media (max-width: 768px) {
  .scroll-to-top {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
    bottom: 20px;
    left: 20px;
  }
  
  .loader-logo {
    width: 100px;
    height: 100px;
  }
  
  .loader-spinner {
    width: 70px;
    height: 70px;
  }
  
  .loader-text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .scroll-to-top {
    width: 45px;
    height: 45px;
    font-size: 1rem;
    bottom: 15px;
    left: 15px;
  }
  
  .loader-logo {
    width: 80px;
    height: 80px;
  }
  
  .loader-spinner {
    width: 60px;
    height: 60px;
  }
}

