/* ============================================================
  Magical Color Palette & Variables
============================================================ */
:root {
  /* Main Colors */
  --spell-purple: #9e54ff;
  --fairy-pink: #ff6bff;
  --wizard-blue: #00ffff;
  --dragon-orange: #ff6600;
  --unicorn-teal: #00ffcc;
  --enchanted-gold: #ffd700;

  --midnight-blue: #0f2c52;
  --starry-night: #361158;

  /* Poppo Brand Colors */
  --poppo-purple: #7209b7;
  --poppo-pink: #f72585;
  --poppo-light-purple: #b5179e;
  --poppo-dark-purple: #560bad;
  --poppo-gradient: linear-gradient(135deg, #f72585 0%, #7209b7 100%);

  /* Text & Background */
  --text-dark: #333;
  --text-light: #fff;
  --bg-light: #f8f9fa;

  /* Shadows & Effects */
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --glow-sm: 0 0 10px;
  --glow-md: 0 0 20px;
  --glow-lg: 0 0 30px;
  --frost-blur: blur(10px);

  /* Transitions & Animation */
  --spell-duration: 0.3s;
  --transition: all 0.3s ease;
}

/* ============================================================
  Reset & Base Styles
============================================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #fff;
  background: var(--starry-night);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
   radial-gradient(ellipse at top, var(--midnight-blue) 0%, #2d0942d0 100%),
   url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.5"/></svg>');
  background-size: cover, 2px 2px;
  z-index: -2;
  animation: twinkle 8s infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: -1;
}

/* ============================================================
  Header & Navigation
============================================================ */
.header {
  background: rgba(15, 44, 82, 0.8);
  backdrop-filter: var(--frost-blur);
  -webkit-backdrop-filter: var(--frost-blur);
  padding: 1rem 0;
  position: fixed;
  width: 100vw;
  top: 0;
  z-index: 1000;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0;
  padding: 0;
  gap: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  background: var(--spell-purple);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--glow-sm) var(--spell-purple);
  animation: pulse 2s infinite;
}

.logo-icon .po {
  font-size: 1.5rem;
  font-weight: bold;
}

.logo-text {
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--unicorn-teal);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--unicorn-teal);
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
  margin-right: 25px;
  background: linear-gradient(135deg, #ff55a2 0%, #791ab8 100%);
  padding: 5px 10px;
  border-radius: 8px;
  box-shadow: 3px 6px 10px rgba(252, 252, 252, 0.404);
}

/* Mobile Menu Enhancements */
.nav-links.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: rgba(114, 9, 183, 0.95);
  padding: 2rem 0;
  z-index: 999;
}

.nav-links.active a {
  color: white !important;
  padding: 1rem;
  font-size: 1.2rem;
}

/* Language Switcher */
.language-switcher {
  position: fixed;
  top: 5rem;
  right: 5.5rem;
  display: flex;
  gap: 0.3rem;
  align-items: center;
  z-index: 10000;
}

.language-switcher button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  transition: transform 0.2s;
}

.language-switcher button:hover {
  transform: scale(1.05);
}

.language-switcher img {
  width: 55px;
  height: 46px;
  border-radius: 2px;
  object-fit: cover;
}

/* ============================================================
  Hero Section
============================================================ */
.hero-section {
  text-align: center;
  padding: 5rem 1rem 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(180, 38, 38, 0.226), rgba(27, 197, 174, 0.233)),
          url('assets/image/dollar.jpg') center/cover no-repeat;
  border-radius: 10px;
  margin-bottom: 3rem;
  box-shadow: var(--shadow);
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--fairy-pink), var(--wizard-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 10px var(--spell-purple), 0 0 20px var(--fairy-pink);
  animation: glow-pulse 3s infinite alternate;
}

.hero-subtitle {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
  Main Content & Sections
============================================================ */
.main-content {
  margin-top: 80px;
  padding: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.section .content {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.section.reverse .content {
  flex-direction: row-reverse;
}

.section .text {
  flex: 1;
}

.section .image {
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2.5px solid rgb(6, 253, 150);
}

.section .image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.section .image:hover img {
  transform: scale(1.05);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--unicorn-teal);
  position: relative;
  display: inline-block;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--poppo-gradient);
}

.section p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ============================================================
  Fancy Buttons
============================================================ */
.fancy-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.fancy-btn {
  position: relative;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  color: white;
  overflow: hidden;
  transition: all var(--spell-duration);
  z-index: 1;
  min-width: 150px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: var(--poppo-purple);
}

.fancy-btn.color1 { background-color: var(--poppo-purple); }
.fancy-btn.color2 { background-color: var(--poppo-light-purple); }
.fancy-btn.color3 { background-color: var(--poppo-pink); }
.fancy-btn.color4 { background-color: var(--poppo-dark-purple); }
.fancy-btn.gradient-btn { background: var(--poppo-gradient); width: fit-content; padding: 0; margin: 0; }

.fancy-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Glowing Animated Borders */
.fancy-btn::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(45deg, var(--spell-purple), var(--fairy-pink), var(--wizard-blue));
  background-size: 200% 200%;
  z-index: -1;
  animation: gradient-shift 3s infinite alternate;
  border-radius: 8px;
}

.fancy-btn::after {
  content: "";
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, var(--spell-purple), var(--fairy-pink), var(--wizard-blue));
  background-size: 200% 200%;
  z-index: -2;
  filter: blur(5px);
  opacity: 0.7;
  animation: gradient-shift 3s infinite alternate-reverse;
  border-radius: 10px;
}

/* ============================================================
  Info Cards
============================================================ */
.info-cards {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: var(--frost-blur);
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  flex: 1;
  text-align: center;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.info-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--unicorn-teal);
}

.copy-card {
  background: linear-gradient(135deg, rgba(114, 9, 183, 0.1) 0%, rgba(247, 37, 133, 0.1) 100%);
  border: 1px solid rgba(114, 9, 183, 0.2);
}

.copy-card.copied {
  animation: pulse 0.5s;
  background: linear-gradient(135deg, rgba(114, 9, 183, 0.2) 0%, rgba(247, 37, 133, 0.2) 100%);
}

.copy-card::after {
  content: "Copied!";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(158, 84, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.copy-card.copied::after {
  opacity: 1;
}

/* ============================================================
  Edit Offer Section
============================================================ */
.edit-offer {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin: 4rem 0;
  box-shadow: var(--shadow);
}

.upgraded-offer {
  background: linear-gradient(135deg, rgba(247, 37, 133, 0.05) 0%, rgba(114, 9, 183, 0.05) 100%);
  border: 1px solid rgba(114, 9, 183, 0.1);
}

.offer-header {
  text-align: center;
  margin-bottom: 2rem;
}

.offer-header h2 {
  font-size: 2rem;
  color: var(--poppo-dark-purple);
  margin-bottom: 1rem;
}

.offer-header p {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.offer-body {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.offer-steps-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, rgba(247, 37, 133, 0.05) 0%, rgba(114, 9, 183, 0.05) 100%);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--poppo-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: bold;
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(114, 9, 183, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--poppo-purple);
  font-size: 1.2rem;
}

.icon-wrapper i {
  background-color: rgba(114, 114, 114, 0.74);
  color: white;
}

.offer-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.offer-image img {
  width: 100%;
  height: auto;
  display: block;
}

.offer-cta {
  margin-top: 2rem;
  text-align: center;
}

/* ============================================================
  Zigzag Container
============================================================ */
.zigzag-container {
  margin: 3rem 0;
}

.zigzag-item {
  display: flex;
  align-items: center;
  margin: 3rem 0;
}

.zigzag-item:nth-child(even) {
  flex-direction: row-reverse;
}

.zigzag-content {
  flex: 1;
  padding: 2rem;
}

.zigzag-content h2 {
  font-size: 1.8rem;
  color: var(--poppo-dark-purple);
  margin-bottom: 1rem;
  position: relative;
}

.zigzag-content h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--poppo-gradient);
}

.zigzag-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.zigzag-media {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.zigzag-media img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
  FAQ Section
============================================================ */
.faq-section {
  background: white;
  border-radius: 10px;
  padding: 3rem;
  margin: 4rem 0;
  box-shadow: var(--shadow);
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--poppo-dark-purple);
  margin-bottom: 2rem;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

details {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

summary {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(247, 37, 133, 0.05) 0%, rgba(114, 9, 183, 0.05) 100%);
  color: var(--poppo-dark-purple);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: var(--transition);
}

summary:hover {
  background: linear-gradient(135deg, rgba(247, 37, 133, 0.1) 0%, rgba(114, 9, 183, 0.1) 100%);
}

summary::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: var(--transition);
}

details[open] summary::after {
  content: '-';
}

details p {
  padding: 1.5rem;
  background: rgb(255, 255, 255);
  margin: 0;
}

/* ============================================================
  Contact Page & Section
============================================================ */
.contact-page {
  padding: 2rem;
}

.contact-container {
  background: rgb(212, 212, 212);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.contact-header {
  display: flex;
  align-items: center;
  padding: 2rem 0;
  background: linear-gradient(135deg, rgba(247, 37, 133, 0.1) 0%, rgba(114, 9, 183, 0.1) 100%);
}

.contact-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-title {
  margin-left: 2rem;
}

.contact-title h3 {
  font-size: 1.8rem;
  color: var(--poppo-dark-purple);
}

.contact-title p {
  color: var(--text-dark);
  font-size: 1.1rem;
}

.contact-info {
  padding: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  min-height: 44px;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, rgba(247, 37, 133, 0.05) 0%, rgba(114, 9, 183, 0.05) 100%);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: var(--poppo-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.contact-item h3 {
  color: var(--poppo-dark-purple);
  margin-bottom: 0.5rem;
}

.contact-item p, .contact-item a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--poppo-pink);
}

/* Template Contact Section */
.template-contact-section {
  background: linear-gradient(135deg, var(--poppo-purple) 0%, var(--poppo-pink) 100%);
  color: white;
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.contact-content {
  text-align: center;
}

.contact-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.amharic-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #383838e3;
}

.telegram-contact-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: white;
  color: var(--poppo-purple);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.telegram-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ============================================================
  Footer
============================================================ */
.site-footer {
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  margin-top: 4rem;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.site-footer p {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: var(--unicorn-teal);
  text-decoration: none;
  transition: var(--transition);
}

.site-footer a:hover {
  color: var(--poppo-pink);
}

/* ============================================================
  Animations & Effects
============================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 10px var(--spell-purple); }
  50% { box-shadow: 0 0 20px var(--fairy-pink); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes glow-pulse {
  0% { text-shadow: 0 0 8px var(--spell-purple); opacity: 0.9; }
  100% { text-shadow: 0 0 18px var(--fairy-pink), 0 0 30px var(--wizard-blue); opacity: 1; }
}

/* Fade/Slide Animations */
.fade-in { animation: fadeIn 1s ease-in; }
.slide-in-left { animation: slideInLeft 1s ease-out; }
.slide-in-right { animation: slideInRight 1s ease-out; }

/* ============================================================
  Magical & Decorative Effects
============================================================ */
/* Floating Magical Orbs */
.magic-orb {
  position: absolute;
  width: 15px; height: 15px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: float-orb 15s infinite linear;
}
.magic-orb::before {
  content: "";
  position: absolute;
  width: 100%; height: 100%;
  background: radial-gradient(circle, var(--wizard-blue), transparent 70%);
  border-radius: 50%;
}
@keyframes float-orb {
  0% { transform: translate(0, 0) scale(1); opacity: 0; }
  10%, 90% { opacity: 0.7; }
  100% { transform: translate(100vw, -100vh) scale(0.2); opacity: 0; }
}

/* Shimmer Effect */
.shimmer { position: relative; overflow: hidden; }
.shimmer::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 2.5s infinite;
}
@keyframes shimmer { 100% { left: 100%; } }

/* Frosted Glass Panels */
.frosted-glass {
  background: rgba(255,255,255,0.1);
  backdrop-filter: var(--frost-blur);
  -webkit-backdrop-filter: var(--frost-blur);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
  transition: all var(--spell-duration);
}
.frosted-glass:hover {
  background: rgba(255,255,255,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* 3D Transformations */
.spinning-cube {
  width: 100px; height: 100px;
  position: relative;
  transform-style: preserve-3d;
  animation: spin 10s infinite linear;
}
@keyframes spin {
  0% { transform: rotateX(0) rotateY(0); }
  100% { transform: rotateX(360deg) rotateY(360deg); }
}

/* Particle Animations */
.sparkle {
  position: absolute;
  width: 5px; height: 5px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10;
  animation: sparkle-fall linear infinite;
}
@keyframes sparkle-fall {
  0% { transform: translateY(-10vh) rotate(0deg); opacity: 1; }
  100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

/* Aurora Gradient Animation */
.aurora-bg {
  background: linear-gradient(-45deg, #ff9a9e, #fad0c4, #fbc2eb, #a6c1ee, #a18cd1);
  background-size: 400% 400%;
  animation: aurora 15s ease infinite;
}
@keyframes aurora {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hover Magic Effects */
.magic-hover { position: relative; transition: all var(--spell-duration); }
.magic-hover:hover { transform: translateY(-3px); }
.magic-hover::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--unicorn-teal);
  transition: width var(--spell-duration);
}
.magic-hover:hover::after { width: 100%; }

/* Sparkle Explosion on Hover */
.sparkle-explosion { position: relative; overflow: hidden; }
.sparkle-explosion:hover::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 10px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 5px 2px white, 0 0 10px 5px var(--fairy-pink), 0 0 15px 10px var(--spell-purple);
  transform: translate(-50%, -50%);
  animation: sparkle-explode 0.5s forwards, fade-out 0.5s 0.5s forwards;
  z-index: 10;
}
@keyframes sparkle-explode {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(20); opacity: 0; }
}
@keyframes fade-out { 100% { opacity: 0; } }

/* Mystical Shadows */
.mystical-shadow {
  box-shadow: 0 0 10px var(--spell-purple), 0 0 20px var(--wizard-blue), 0 0 30px var(--fairy-pink);
  transition: box-shadow var(--spell-duration);
}
.mystical-shadow:hover {
  box-shadow: 0 0 15px var(--spell-purple), 0 0 30px var(--wizard-blue), 0 0 45px var(--fairy-pink);
}

/* Shape Morphing */
.morphing-blob {
  border-radius: 50%;
  animation: morph 8s ease-in-out infinite;
  background: linear-gradient(45deg, var(--spell-purple), var(--wizard-blue));
}
@keyframes morph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

/* Ripple Effect */
.ripple-effect { position: relative; overflow: hidden; }
.ripple-effect::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}
.ripple-effect:hover::after { animation: ripple 0.6s ease-out; }
@keyframes ripple {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(20); opacity: 0; }
}

/* Animated Spell Effects */
.fireball {
  position: absolute;
  width: 30px; height: 30px;
  background: radial-gradient(circle, var(--dragon-orange), #ff0000);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--dragon-orange);
  animation: fire-move 2s linear infinite;
}
@keyframes fire-move {
  0% { transform: translateX(0) scale(1); opacity: 1; }
  100% { transform: translateX(200px) scale(0.2); opacity: 0; }
}

.water-ripple { position: relative; }
.water-ripple::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border: 2px solid var(--wizard-blue);
  border-radius: 50%;
  animation: ripple 1.5s infinite;
  opacity: 0;
}

/* Floating Magical Elements */
.floating { animation: float 3s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Ancient Text */
.ancient-text {
  font-family: 'Old English Text MT', 'Times New Roman', serif;
  text-shadow: 1px 1px 2px gold, -1px -1px 2px silver;
  color: #d4af37;
  position: relative;
}
.ancient-text::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="rgba(212,175,55,0.2)" stroke-width="1"/></svg>');
  pointer-events: none;
  z-index: -1;
}

/* ============================================================
  Responsive Styles
============================================================ */
@media (max-width: 992px) {
  .section .content,
  .section.reverse .content,
  .zigzag-item,
  .zigzag-item:nth-child(even),
  .offer-body {
   flex-direction: column;
  }
  .offer-steps-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1.1rem; }
}

@media (max-width: 768px) {
  .header-container { padding: 0 1rem; gap: 1rem; }
  .nav-links { flex-direction: column; align-items: center; gap: 0.5rem; }
  .section .content, .section.reverse .content { flex-direction: column; }
  .section .image, .section .text { flex: none; width: 100%; }
  .reverse-on-mobile .content { flex-direction: column-reverse !important; }
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 1rem; }
  .offer-steps-grid { grid-template-columns: 1fr !important; }
  .main-content { padding: 1rem; }
  .hero-section { padding: 0; }
  .section { margin: 2rem 0; }
  .fancy-buttons { flex-direction: row; }
  .fancy-btn { width: fit-content; padding: 0 10px; margin: 0; }
  .contact-header { flex-direction: column; text-align: center; }
  .contact-title { margin-left: 0; margin-top: 1rem; }
  .logo-icon { width: 32px; height: 32px; }
  .logo-icon .po { font-size: 1.2rem; }
  .mobile-menu-toggle { display: block; font-size: 1.3rem; }
  .nav-links { position: fixed; top: 80px; left: -100%; width: 100%; height: calc(100vh - 80px); background: linear-gradient(135deg, rgba(114, 114, 114, 0.815) 50%, rgba(113, 9, 183, 0.856) 100%); flex-direction: column; align-items: center; justify-content: center; gap: 1rem; transition: var(--transition); }
  .nav-links a { color: white; font-size: 1.1rem; padding: 0.5rem 0; }
  .nav-links.active { left: 0; margin-top: 0; padding-top: 0; }
  .language-switcher { gap: 0.2rem; }
  .language-switcher img { width: 35px; height: 25px; opacity: 0.8; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 1.3rem; }
  .section h2 { font-size: 1.5rem; }
  .edit-offer, .faq-section, .contact-container { padding: 1.5rem; }
  .step-card { padding: 1rem; }
}

/* ============================================================
  Utility Classes
============================================================ */
.a_text { color: rgb(136, 136, 136); }
.color-animate { animation: colorChange 15s infinite alternate; }
.gradient-animate {
  background: linear-gradient(270deg, #f72585, #7209b7, #3a0ca3, #4361ee);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}
@keyframes colorChange {
  0% { background-color: #f72585; }
  25% { background-color: #7209b7; }
  50% { background-color: #3a0ca3; }
  75% { background-color: #4361ee; }
  100% { background-color: #4cc9f0; }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}






















/* ============================================================
  Circle Profile Image - Magical Styling
============================================================ */
.a-circle-profile-image {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 0 30px rgba(158, 84, 255, 0.5);
  transition: all 0.5s ease;
  z-index: 1;
  overflow: hidden;
  border: 3px solid transparent;
  background: linear-gradient(45deg, 
              var(--spell-purple), 
              var(--fairy-pink), 
              var(--wizard-blue));
  background-size: 200% 200%;
  animation: gradientBorder 8s ease infinite;
}

.a-circle-profile-image:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(158, 84, 255, 0.8),
              0 0 70px rgba(247, 37, 133, 0.6);
}

.a-circle-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
  border: 4px solid white;
  box-sizing: border-box;
}

.a-circle-profile-image:hover img {
  transform: scale(0.95);
  filter: brightness(1.05) contrast(1.05);
}

/* Animated Gradient Border */
@keyframes gradientBorder {
  0% {
    background-position: 0% 50%;
    border-color: var(--spell-purple);
  }
  50% {
    background-position: 100% 50%;
    border-color: var(--fairy-pink);
  }
  100% {
    background-position: 0% 50%;
    border-color: var(--wizard-blue);
  }
}

/* Floating Sparkles Effect */
.a-circle-profile-image::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle, 
              rgba(255, 255, 255, 0.8) 0%, 
              rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  animation: sparkle 4s infinite alternate;
  z-index: 3;
  pointer-events: none;
}

@keyframes sparkle {
  0% { opacity: 0.3; transform: scale(0.95); }
  100% { opacity: 0.8; transform: scale(1.05); }
}

/* Glowing Orb Effect */
.a-circle-profile-image::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, 
              rgba(158, 84, 255, 0.2) 0%, 
              rgba(255, 107, 255, 0.1) 30%, 
              transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: pulseGlow 6s infinite alternate;
}

@keyframes pulseGlow {
  0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.95); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.05); }
  100% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.95); }
}

/* Floating Particles */
.a-circle-profile-image .particle {
  position: absolute;
  background-color: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 4;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(20px);
    opacity: 0;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .a-circle-profile-image {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 576px) {
  .a-circle-profile-image {
    width: 220px;
    height: 220px;
  }
}
.floating-id {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #0c2b53;
  border-radius: 5px;
  padding: 10px 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000000;
  color:rgba(247, 37, 133, 0.6)
}
.floating-id .id-number {
  font-weight: bold;
  font-size: 1.2em;
}
.floating-id .id-label {
  font-size: 0.9em;
  color: #666;
}
.social-icons {
    display: flex;
    gap: 1.2rem;
    margin: 1.5rem 0;
    justify-content: center;
    align-items: center;
}

/* Individual Social Icon Links */
.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(247, 37, 133, 0.1) 0%, rgba(114, 9, 183, 0.1) 100%);
    backdrop-filter: blur(5px);
    border: 1.5px solid rgba(3, 247, 194, 0.979);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Hover Effects */
.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(247, 37, 133, 0.2) 0%, rgba(114, 9, 183, 0.2) 100%);
}

/* Glow Effect on Hover */
.social-icons a:hover::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--spell-purple), var(--fairy-pink), var(--wizard-blue));
    background-size: 200% 200%;
    z-index: -1;
    filter: blur(8px);
    opacity: 0.7;
    animation: gradient-shift 3s infinite alternate;
    border-radius: 50%;
}

/* Social Icon Images */
.social-icons a img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.social-icons a:hover img {
    transform: scale(1.15);
    filter: brightness(1.2);
}

/* Specific Platform Colors on Hover */
.social-icons a[href*="facebook"]:hover {
    background: linear-gradient(135deg, rgba(59, 89, 152, 0.2) 0%, rgba(59, 89, 152, 0.3) 100%);
}

.social-icons a[href*="youtube"]:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2) 0%, rgba(255, 0, 0, 0.3) 100%);
}

.social-icons a[href*="tiktok"]:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* Animation for Continuous Subtle Movement */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.social-icons a {
    animation: float 4s ease-in-out infinite;
}

.social-icons a:nth-child(2) {
    animation-delay: 0.5s;
}

.social-icons a:nth-child(3) {
    animation-delay: 1s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-icons {
        gap: 1rem;
    }
    
    .social-icons a {
        width: 50px;
        height: 50px;
    }
    
    .social-icons a img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 576px) {
    .social-icons {
        gap: 0.8rem;
    }
    
    .social-icons a {
        width: 45px;
        height: 45px;
    }
    
    .social-icons a img {
        width: 22px;
        height: 22px;
    }
}

