@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Tajawal", sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #2c3e50;
  overflow-x: hidden;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 1rem 0;
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

/* Logo Styles */
.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-image {
  width: 50px;
  height: 50px;
  object-fit: contain;
  animation: logoRotate 20s linear infinite;
}

@keyframes logoRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 2rem;
  animation: heroLogoFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
}

@keyframes heroLogoFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.btn-icon {
  width: 40px;
  height: 40px;
  color: white;
  margin-bottom: 0.5rem;
}

/* Responsive Logo */
@media (max-width: 768px) {
  .logo-image {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    font-size: 1.4rem;
  }

  .hero-logo {
    width: 100px;
    height: 100px;
  }
}

@keyframes glow {
  0%,
  100% {
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
  }
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #f4d03f);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  width: 30px;
  height: 25px;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.98),
    rgba(22, 33, 62, 0.98)
  );
  backdrop-filter: blur(20px);
  z-index: 999;
  transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  gap: 2rem;
}

.mobile-nav-links li {
  list-style: none;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease;
}

.mobile-menu-overlay.active .mobile-nav-links li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav-links li:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-nav-links li:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-nav-links li:nth-child(3) {
  transition-delay: 0.3s;
}

.mobile-nav-links li:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile-nav-links a {
  text-decoration: none;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  padding: 1rem 2rem;
  display: block;
  transition: all 0.3s ease;
}

.mobile-nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  z-index: -1;
  transition: width 0.4s ease;
  border-radius: 15px;
}

.mobile-nav-links a:hover::before {
  width: 100%;
}

.mobile-nav-links a:hover {
  color: #1a1a2e;
  transform: scale(1.1);
}

/* Decorative elements in mobile menu */
.mobile-menu-decoration {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1),
    rgba(244, 208, 63, 0.1)
  );
  animation: floatDecoration 8s infinite ease-in-out;
}

.mobile-menu-decoration:nth-child(1) {
  width: 200px;
  height: 200px;
  top: 10%;
  left: -50px;
  animation-delay: 0s;
}

.mobile-menu-decoration:nth-child(2) {
  width: 150px;
  height: 150px;
  bottom: 15%;
  right: -30px;
  animation-delay: 2s;
}

@keyframes floatDecoration {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(20px, 20px) rotate(180deg);
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.animated-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1),
    rgba(244, 208, 63, 0.1)
  );
  animation: float 20s infinite ease-in-out;
}

.circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  animation-delay: 0s;
}

.circle:nth-child(2) {
  width: 500px;
  height: 500px;
  bottom: -250px;
  left: -250px;
  animation-delay: 5s;
}

.circle:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 10%;
  animation-delay: 10s;
}

.circle:nth-child(4) {
  width: 400px;
  height: 400px;
  top: 20%;
  right: 15%;
  animation-delay: 15s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  padding: 2rem;
}

.animated-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s infinite;
  background-size: 200% auto;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.subtitle {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Visa Cards Animation */
.visa-cards-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.visa-card {
  width: 350px;
  height: 220px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: cardFloat 6s infinite ease-in-out;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.visa-card:hover {
  transform: scale(1.05) rotateY(5deg);
}

.visa-card:nth-child(1) {
  animation-delay: 0s;
}

.visa-card:nth-child(2) {
  animation-delay: 2s;
}

.visa-card:nth-child(3) {
  animation-delay: 4s;
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.card-chip {
  width: 50px;
  height: 40px;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  border-radius: 8px;
  margin-bottom: 2rem;
}

.card-number {
  color: white;
  font-size: 1.3rem;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.card-name {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.visa-logo {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
}

/* Circular Buttons */
.circular-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.circle-btn {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.circle-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f4d03f, #d4af37);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.circle-btn:hover::before {
  opacity: 1;
}

.circle-btn:hover {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.circle-btn span {
  position: relative;
  z-index: 1;
}

.btn-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

/* Services Section */
.section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 50%;
  transform: translateX(50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  border-radius: 2px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.05),
    rgba(244, 208, 63, 0.05)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.service-description {
  color: #666;
  line-height: 1.8;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  font-size: 1.2rem;
  line-height: 2;
  color: #555;
}

.about-image {
  width: 100%;
  height: 400px;
}

/* Contact Section */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
}

.contact-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #d4af37;
}

.contact-detail {
  color: #666;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
}

/* Oval Shape */
.oval-shape {
  position: absolute;
  width: 600px;
  height: 300px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1),
    rgba(244, 208, 63, 0.2)
  );
  border-radius: 50%;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  animation: pulse 4s infinite ease-in-out;
  z-index: 1;
}

@keyframes pulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.1);
  }
}

/* Floating Text Animation */
.floating-text {
  animation: floatText 3s infinite ease-in-out;
}

@keyframes floatText {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-overlay {
    display: block;
  }

  .animated-title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .visa-card {
    width: 100%;
    max-width: 350px;
  }

  .circle-btn {
    width: 120px;
    height: 120px;
    font-size: 0.9rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }
}
/* Branches Section */
.branches-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.branches-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #666;
  margin-top: -2rem;
  margin-bottom: 3rem;
}

.branches-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.branch-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.branch-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #d4af37, #f4d03f);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.branch-card:hover::before {
  transform: scaleX(1);
}

.branch-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.branch-icon-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}

.branch-icon {
  width: 100px;
  height: 100px;
  animation: branchIconFloat 3s infinite ease-in-out;
}

@keyframes branchIconFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.branch-title {
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.branch-details {
  margin-bottom: 2rem;
}

.branch-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.branch-info:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateX(-5px);
}

.info-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.branch-info span {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.branch-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.branch-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #f4d03f, #d4af37);
}

.btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.branch-btn:hover .btn-arrow {
  transform: translateX(-5px);
}

/* Responsive for Branches */
@media (max-width: 768px) {
  .branches-container {
    grid-template-columns: 1fr;
  }

  .branch-card {
    padding: 2rem 1.5rem;
  }

  .branch-title {
    font-size: 1.7rem;
  }

  .branch-info span {
    font-size: 0.95rem;
  }
}
/* Order Platform Section */
.order-platform-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}

.order-platform-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.platform-content {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 4rem 3rem;
  border-radius: 40px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.platform-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 2rem;
  animation: platformLogoFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 40px rgba(212, 175, 55, 0.5));
}

@keyframes platformLogoFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

.platform-title {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #d4af37, #f4d03f, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  margin-bottom: 1.5rem;
}

.platform-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.3rem;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.platform-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
}

.feature-icon {
  width: 24px;
  height: 24px;
  animation: featureIconPulse 2s ease-in-out infinite;
}

@keyframes featureIconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Platform Button */
.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 4rem;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: white;
  font-size: 1.5rem;
  font-weight: 900;
  text-decoration: none;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 3rem;
}

.platform-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.platform-btn:hover::before {
  left: 100%;
}

.platform-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 70px rgba(212, 175, 55, 0.6);
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-icon-arrow {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.platform-btn:hover .btn-icon-arrow {
  transform: translateX(-5px);
}

.btn-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  animation: btnShineRotate 4s linear infinite;
  pointer-events: none;
}

@keyframes btnShineRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Platform Badges */
.platform-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  color: #d4af37;
  font-weight: 700;
  transition: all 0.3s ease;
}

.badge:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-3px);
}

.badge svg {
  width: 24px;
  height: 24px;
}

/* Floating Background Elements */
.platform-bg-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-card {
  position: absolute;
  width: 150px;
  height: 100px;
  opacity: 0.3;
  animation: floatCard 15s ease-in-out infinite;
}

.floating-card-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 15%;
  right: 5%;
  animation-delay: 2s;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -20px) rotate(5deg);
  }
  50% {
    transform: translate(0, -40px) rotate(-5deg);
  }
  75% {
    transform: translate(-30px, -20px) rotate(5deg);
  }
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.2),
    rgba(244, 208, 63, 0.2)
  );
  animation: floatCircle 20s ease-in-out infinite;
}

.floating-circle-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.floating-circle-2 {
  width: 150px;
  height: 150px;
  bottom: 25%;
  left: 8%;
  animation-delay: 3s;
}

.floating-circle-3 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 15%;
  animation-delay: 6s;
}

@keyframes floatCircle {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(40px, -40px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .order-platform-section {
    padding: 5rem 1.5rem;
  }

  .platform-content {
    padding: 3rem 2rem;
    border-radius: 30px;
  }

  .platform-logo {
    width: 80px;
    height: 80px;
  }

  .platform-title {
    font-size: 2rem;
  }

  .platform-description {
    font-size: 1.1rem;
  }

  .platform-features {
    gap: 1.5rem;
  }

  .feature-item {
    font-size: 0.95rem;
  }

  .platform-btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    gap: 0.7rem;
  }

  .btn-icon-arrow {
    width: 24px;
    height: 24px;
  }

  .platform-badges {
    gap: 1rem;
  }

  .badge {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .floating-card {
    width: 100px;
    height: 70px;
  }

  .floating-circle-1,
  .floating-circle-2,
  .floating-circle-3 {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .platform-title {
    font-size: 1.6rem;
  }

  .platform-features {
    flex-direction: column;
    gap: 1rem;
  }

  .platform-btn {
    width: 100%;
    justify-content: center;
  }
}
