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


body {
  font-family: "Amiri", serif;
  background: #000;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Stars Background */
.stars-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.stars-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

/* Animated Space Background */
/* ===== Animated Galaxy + Stars Background ===== */
.space-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none; /* so clicks go to content */
}

/* Nebula / galaxy glow */
.nebula-layer {
  position: absolute;
  inset: -20%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(132, 94, 247, 0.55),
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 184, 108, 0.45),
      transparent 60%
    ),
    radial-gradient(circle at 10% 80%, rgba(0, 199, 255, 0.35), transparent 55%);
  filter: blur(4px);
  opacity: 0.7;
  animation: nebulaMove 40s ease-in-out infinite alternate;
}

/* Static star field (base layer) */
.stars-layer,
.twinkle-layer {
  position: absolute;
  inset: 0;
  background-position: 0 0;
  background-size: 400px 400px;
}

/* Base stars (always visible) */
.stars-layer {
  background-image: radial-gradient(
      1px 1px at 10% 20%,
      rgba(255, 255, 255, 0.7),
      transparent
    ),
    radial-gradient(1px 1px at 30% 80%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 70% 30%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 90% 60%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(2px 2px at 50% 50%, rgba(255, 255, 255, 0.9), transparent);
  opacity: 0.8;
  animation: starsDrift 80s linear infinite;
}

/* Twinkling stars (overlay) */
.twinkle-layer {
  background-image: radial-gradient(
      1.5px 1.5px at 15% 35%,
      rgba(255, 255, 255, 0.9),
      transparent
    ),
    radial-gradient(2px 2px at 40% 10%, rgba(255, 255, 255, 1), transparent),
    radial-gradient(
      1.5px 1.5px at 65% 75%,
      rgba(255, 255, 255, 0.95),
      transparent
    ),
    radial-gradient(2px 2px at 85% 45%, rgba(255, 255, 255, 1), transparent);
  animation: starsDrift 120s linear infinite,
    twinkle 2.3s ease-in-out infinite alternate;
  opacity: 0.7;
}

/* Shooting / falling stars */
.shooting-stars-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.shooting-stars-layer::before,
.shooting-stars-layer::after {
  content: "";
  position: absolute;
  top: -10%;
  width: 140px;
  height: 2px;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.9)
  );
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
  opacity: 0;
  transform: rotate(-35deg);
  animation: shootingStar 6s linear infinite;
}

/* Second star with different timing/position */
.shooting-stars-layer::after {
  animation-delay: 3s;
  top: 5%;
}

@keyframes nebulaMove {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-5%, -3%, 0) scale(1.05);
  }
  100% {
    transform: translate3d(4%, 4%, 0) scale(1.08);
  }
}

@keyframes starsDrift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -800px;
  }
}

@keyframes twinkle {
  0% {
    opacity: 0.3;
    filter: brightness(0.7);
  }
  50% {
    opacity: 0.9;
    filter: brightness(1.2);
  }
  100% {
    opacity: 0.5;
    filter: brightness(0.9);
  }
}

@keyframes shootingStar {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-35deg);
  }
  10% {
    opacity: 1;
  }
  40% {
    transform: translate3d(-120%, 120%, 0) rotate(-35deg);
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translate3d(-120%, 120%, 0) rotate(-35deg);
  }
}
/* End of Animated Space Background */

/* Main Container */
.container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

/* Header Section */
.header {
  text-align: center;
  padding: 60px 20px 40px;
  animation: fadeIn 1s ease-out;
}

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

.logo {
  width: 150px;
  height: 150px;
  margin: 0 auto 30px;
  animation: float 3s ease-in-out infinite;
}

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

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.5));
}

h1 {
  color: #c9a63c;
  font-size: 3em;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  animation: slideInRight 0.8s ease-out;
}

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

.subtitle {
  color: #c9a63c;
  font-size: 1.8em;
  line-height: 1.8;
  max-width: 900px;
  margin: 40px auto 20px;
  animation: slideInLeft 0.8s ease-out 0.2s backwards;
}



.subtitle2 {
  color: #fff;
  font-size: 1.4em;
  line-height: 1.8;
  max-width: 950px;
  margin: 40px auto 20px;
  animation: slideInLeft 0.8s ease-out 0.2s backwards;
  
}


.social-section ul {
  list-style-position: inside; 
  padding-right: 0;
  margin-right: 0;
  text-align: center; 
}

.social-section li.subtitle2 {
  margin: 10px 0; 
  max-width: 900px;
  display: list-item; 
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

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

/* Phone Mockup */
.phone-mockup {
  text-align: center;
  animation: slideInRight 1s ease-out 0.3s backwards;
  flex: 0 0 35%;
  max-width: 35%;
}

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

.phone-mockup img {
  max-width: 280px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(212, 175, 55, 0.25));
  transition: transform 0.3s ease;
}

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

.phone-mockup img:hover {
  transform: scale(1.03) translateY(-10px);
}

/* Hero Content */
.hero-content {
  color: #fff;
  animation: slideInLeft 1s ease-out 0.5s backwards;
  flex: 1;
  max-width: 65%;
  min-width: 0;
}

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

.hero-content h2 {
  color: #fff;
  font-size: 1.5em;
  margin-bottom: 30px;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.hero-content h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fff);
  animation: expandLine 1.5s ease-out 1s forwards;
}

@keyframes expandLine {
  to {
    width: 100%;
  }
}

.hero-content p {
  font-size: 1.4em;
  line-height: 2;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
  overflow-wrap: break-word;
}

.hero-content p:nth-of-type(1) {
  animation-delay: 0.8s;
}

.hero-content p:nth-of-type(2) {
  animation-delay: 1s;
}

.hero-content p:nth-of-type(3) {
  animation-delay: 1.2s;
}

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

.hero-content strong {
  color: #fff;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    gap: 25px;
    padding: 40px 20px;
  }
  
  .hero-content h2 {
    font-size: 1.3em !important;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 1.2em;
    line-height: 1.8;
  }
}

@media (max-width: 600px) {
  .hero-section {
    gap: 20px;
    padding: 35px 15px;
  }
  
  .hero-content h2 {
    font-size: 1.1em !important;
    margin-bottom: 15px;
  }
  
  .hero-content p {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 15px;
  }
}

@media (max-width: 430px) {
  .hero-section {
    gap: 15px;
    padding: 25px 10px;
  }
  
  .hero-content h2 {
    font-size: 0.95em !important;
    margin-bottom: 12px;
  }
  
  .hero-content p {
    font-size: 0.85em;
    line-height: 1.6;
    margin-bottom: 12px;
  }
}
/*Download Section*/
.download-section {
  text-align: center;
  margin: 80px auto;
  padding: 60px 20px;
  max-width: 1400px;
}

.download-section h2 {
  color: #fff;
  font-size: 2em;
  margin-bottom: 50px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  animation: fadeIn 0.8s ease-out;
}

.download-section .subtitle-download {
  color: #fff;
  font-size: 1.5em;
  margin-bottom: 20px;
  opacity: 0.9;
}

.download-section .cta-text {
  color: #c9a63c;
  font-size: 1.8em;
  margin-bottom: 40px;
  font-weight: 600;
}

.phones-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.phone-item {
  animation: bounceIn 0.8s ease-out;
}

.phone-item:nth-child(1) {
  animation-delay: 0.1s;
}
.phone-item:nth-child(2) {
  animation-delay: 0.3s;
}
.phone-item:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(50px);
  }
  50% {
    opacity: 1;
    transform: scale(1.05) translateY(-10px);
  }
  70% {
    transform: scale(0.95) translateY(5px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

.phone-item img {
  max-width: 280px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(212, 175, 55, 0.4));
  transition: all 0.4s ease;
}

.phone-item:hover img {
  transform: translateY(-15px) scale(1.05);
  filter: drop-shadow(0 20px 45px rgba(212, 175, 55, 0.6));
}

/* Store buttons row */
.store-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 50px;
}

.store-btn {
  display: inline-block;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out 0.8s backwards;
}

.store-btn img {
  height: 55px;
  width: auto;
  filter: drop-shadow(0 5px 15px #000);
  transition: all 0.3s ease;
}

.store-btn:hover {
  transform: translateY(-10px);
}



/* App preview images row */
.app-previews {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap; 
  overflow-x: auto; 
  padding: 10px;
}

.app-previews img {
  width: 30%;
  min-width: 150px; 
  max-width: 250px;
  height: auto;
  flex-shrink: 1; 
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .app-previews {
    gap: 10px;
    padding: 10px 5px;
  }
  
  .app-previews img {
    width: 31%; 
    min-width: 100px;
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .app-previews img {
    width: 30%;
    min-width: 90px;
    max-width: 120px;
  }
}

/* Social Section */
.social-section {
  text-align: center;
  padding: 60px 20px;
  margin: 40px auto;
  max-width: 1000px;
  
}

@keyframes popIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.social-icon:nth-child(1) {
  animation-delay: 0.1s;
}
.social-icon:nth-child(2) {
  animation-delay: 0.2s;
}
.social-icon:nth-child(3) {
  animation-delay: 0.3s;
}
.social-icon:nth-child(4) {
  animation-delay: 0.4s;
}
.social-icon:nth-child(5) {
  animation-delay: 0.5s;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.3));
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-10px) rotate(5deg);
}

.social-icon:hover img {
  filter: drop-shadow(0 10px 25px rgba(212, 175, 55, 0.6));
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .phone-mockup img {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2em;
  }

  .subtitle {
    font-size: 1.5em;
  }

  .hero-content h2 {
    font-size: 1.7em;
  }

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

  .download-section h2 {
    font-size: 2.3em;
  }

  .download-section .subtitle-download {
    font-size: 1.2em;
  }

  .download-section .cta-text {
    font-size: 1.4em;
  }

  .phone-item img {
    max-width: 220px;
  }

  .store-btn img {
    height: 50px;
  }

  .social-icon {
    width: 60px;
    height: 60px;
  }

  .contact-section {
    padding: 40px 25px;
  }

  .hero-section {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.6em;
  }

  .logo {
    width: 120px;
    height: 120px;
  }

  .subtitle {
    font-size: 1.2em;
  }

  .hero-content h2 {
    font-size: 1.4em;
  }

  .hero-content p {
    font-size: 1.0em;
  }

  .section-title {
    font-size: 2.2em;
  }

  .download-section h2 {
    font-size: 1.8em;
  }

  .download-section .subtitle-download {
    font-size: 1em;
  }

  .download-section .cta-text {
    font-size: 1.2em;
  }

  .phone-item img {
    max-width: 180px;
  }

  .phones-container {
    gap: 20px;
  }

  .store-buttons {
    flex-direction: row;
    align-items: center;
  }

  .store-btn img {
    height: 45px;
  }

  .contact-section {
    padding: 30px 20px;
  }

  .contact-section h2 {
    font-size: 1.7em;
  }
}
.social-section .section-title {
  color: #c9a63c !important;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}
/* ===== NAVBAR ===== */
.main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  z-index: 9999;
}

.nav-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.nav-logo {
  font-size: 1.6em;
  color: #c9a63c;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: white;
  font-size: 1.1em;
  text-decoration: none;
  transition: 0.2s;
}

.nav-links li a:hover {
  color: #c9a63c;
}

/* Toggle (mobile) */
.nav-toggle {
  display: none;
  font-size: 2em;
  color: #c9a63c;
  cursor: pointer;
}

/* Mobile Responsive - Keep navbar same as desktop */
@media (max-width: 768px) {
  .nav-toggle {
    display: none; 
  }

  .nav-links {
    display: flex; 
    gap: 15px;
  }

  .nav-links li a {
    font-size: 0.9em; 
  }
}
#about,
#intro,
#privacy,
#terms,
#cookies {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

/* Headings in primary color (gold) */
#about h2,
#intro h2,
#privacy h2,
#terms h2,
#cookies h2 {
  color: #c9a63c; 
  font-size: 2em;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Paragraph text in white */
#about p,
#intro p,
#privacy p,
#terms p,
#cookies p {
  color: #ffffff;
  line-height: 2;
  font-size: 1.05em;
  opacity: 0.95;
}

/*trade mark*/
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 600px;
  perspective: 1000px;
  margin: 0 auto;
  overflow: hidden; 
  padding-bottom: 100px;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease-in-out;
}

.carousel-item {
  position: absolute;
  width: 300px;
  height: 400px;
  left: 50%;
  top: 50%;
  transform-origin: center;
  transition: all 0.6s ease-in-out;
  cursor: pointer;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.carousel-item:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Position classes for 6 images */
.carousel-item.center {
  width: 400px;
  height: 500px;
  transform: translate(-50%, -50%) translateZ(0) scale(1);
  z-index: 5;
  opacity: 1;
}

.carousel-item.left1 {
  transform: translate(-50%, -50%) translateX(-450px) translateZ(-150px)
    scale(0.8);
  z-index: 4;
  opacity: 0.8;
}

.carousel-item.left2 {
  transform: translate(-50%, -50%) translateX(-700px) translateZ(-300px)
    scale(0.6);
  z-index: 3;
  opacity: 0.5;
}

.carousel-item.right1 {
  transform: translate(-50%, -50%) translateX(450px) translateZ(-150px)
    scale(0.8);
  z-index: 4;
  opacity: 0.8;
}

.carousel-item.right2 {
  transform: translate(-50%, -50%) translateX(700px) translateZ(-300px)
    scale(0.6);
  z-index: 3;
  opacity: 0.5;
}

.carousel-item.hidden {
  transform: translate(-50%, -50%) translateX(-900px) translateZ(-400px)
    scale(0.4);
  z-index: 1;
  opacity: 0;
}

.controls {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}



button {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

button:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

button:active {
  transform: translateY(0);
}

/* Mobile Responsive for Carousel */
@media (max-width: 768px) {
  .carousel-container {
    height: 500px;
    padding: 0 10px;
    padding-bottom: 100px;
  }

  .carousel-item {
    width: 200px;
    height: 280px;
  }

  .carousel-item.center {
    width: 250px;
    height: 330px;
  }

  .carousel-item.left1 {
    transform: translate(-50%, -50%) translateX(-200px) translateZ(-100px)
      scale(0.75);
  }

  .carousel-item.left2 {
    transform: translate(-50%, -50%) translateX(-320px) translateZ(-200px)
      scale(0.55);
    opacity: 0.3;
  }

  .carousel-item.right1 {
    transform: translate(-50%, -50%) translateX(200px) translateZ(-100px)
      scale(0.75);
  }

  .carousel-item.right2 {
    transform: translate(-50%, -50%) translateX(320px) translateZ(-200px)
      scale(0.55);
    opacity: 0.3;
  }

  .carousel-item.hidden {
    transform: translate(-50%, -50%) translateX(-400px) translateZ(-300px)
      scale(0.3);
    opacity: 0;
  }

  .controls {
    bottom: -60px;
    gap: 10px;
  }

  button {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .carousel-container {
    height: 400px;
  }

  .carousel-item {
    width: 150px;
    height: 220px;
  }

  .carousel-item.center {
    width: 200px;
    height: 270px;
  }

  .carousel-item.left1 {
    transform: translate(-50%, -50%) translateX(-140px) translateZ(-80px)
      scale(0.7);
    opacity: 0.6;
  }

  .carousel-item.left2 {
    transform: translate(-50%, -50%) translateX(-220px) translateZ(-150px)
      scale(0.5);
    opacity: 0.2;
  }

  .carousel-item.right1 {
    transform: translate(-50%, -50%) translateX(140px) translateZ(-80px)
      scale(0.7);
    opacity: 0.6;
  }

  .carousel-item.right2 {
    transform: translate(-50%, -50%) translateX(220px) translateZ(-150px)
      scale(0.5);
    opacity: 0.2;
  }

  .carousel-item.hidden {
    transform: translate(-50%, -50%) translateX(-280px) translateZ(-250px)
      scale(0.25);
    opacity: 0;
  }

  .controls {
    bottom: -50px;
    gap: 8px;
  }

  button {
    padding: 8px 16px;
    font-size: 13px;
  }
}
/*logo in navbar */
/* Logo inside navbar */
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  width: 40px; 
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.4));
}

.logo-text {
  color: white;
  font-size: 0.8em;
  text-decoration: none;
  transition: 0.2s;
}

/* Mobile fix */
@media (max-width: 600px) {
  .nav-logo-img {
    width: 34px;
    height: 34px;
  }

  .logo-text {
    font-size: 0.6em;
  }
}

/* Footer section */
.footer {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  border-top: 2px solid #fff;
  padding: 60px 20px 30px;
  margin-top: 80px;
  position: relative;
}



.footer-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 80px;
}

/* Right and Left columns */
.footer-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.right-side {
  align-items: flex-start; 
}

.left-side {
  align-items: flex-end; 
}

.footer-title {
  color: #fff;
  font-size: 1.8em;
  margin-bottom: 30px;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
  position: relative;
  display: inline-block;
}


/* Social Icons */
.footer-social {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-end; 
  align-items: flex-end;
  max-width: 100%;
}

/* Social Icons with White Circle */
.footer-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, #fff, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-icon img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

/* Hover effect */
.footer-icon:hover {
  transform: translateY(-8px) scale(1.1);
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

.footer-icon:hover::before {
  opacity: 1;
}

.footer-icon:hover img {
  filter: brightness(1) invert(0);
  transform: scale(1.1);
}

/* Store Icons */
.footer-stores {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: flex-start; 
  align-items: center;
}

.store-icon {
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
}

.store-icon::before {
  content: '';
  position: absolute;
  inset: -5px;
  background: #000;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.store-icon img {
  height: 55px;
  opacity: 0.95;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.store-icon:hover {
  transform: translateY(-8px);
}

.store-icon:hover::before {
  opacity: 1;
}



/* Bottom Text */
.footer-copy {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  font-size: 1.1em;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Mobile optimization - keep desktop layout */
@media (max-width: 768px) {
  .footer {
    padding: 50px 15px 25px;
    margin-top: 60px;
  }
  
  .footer-container {
    gap: 50px;
  }
  
  .footer-title {
    font-size: 1.5em;
    margin-bottom: 25px;
  }
  
  .footer-icon {
    width: 45px;
    height: 45px;
  }
  
  .footer-icon img {
    width: 23px;
    height: 23px;
  }
  
  .footer-social {
    gap: 12px;
  }
  
  .store-icon img {
    height: 48px;
  }
  
  .footer-stores {
    gap: 18px;
  }
  
  .footer-copy {
    font-size: 1em;
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 10px 20px;
  }
  
  .footer-container {
    gap: 35px;
  }
  
  .footer-title {
    font-size: 1.3em;
    margin-bottom: 20px;
  }
  
  .footer-title::after {
    width: 50px;
  }
  
  .footer-icon {
    width: 42px;
    height: 42px;
  }
  
  .footer-icon img {
    width: 21px;
    height: 21px;
  }
  
  .footer-social {
    gap: 10px;
  }
  
  .store-icon img {
    height: 42px;
  }
  
  .footer-stores {
    gap: 15px;
  }
  
  .footer-copy {
    font-size: 0.95em;
    margin-top: 35px;
    padding-top: 20px;
  }
}

/*modal*/
/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 999999;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Centered Modal Image */
.modal-content {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 12px;
  display: block;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
}

/* Close Button */
.close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 255);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 30px;
  color: #000;
  cursor: pointer;
  z-index: 1000000;
}

/* في الجوال خليه تحت وفي النص */
@media (max-width: 600px) {
  .close {
    top: auto;
    right: auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
  }
}


/* Zoom animation */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
  

}



