:root {
  --primary: #d4af37; /* Altın */
  --primary-dark: #b8860b; /* Koyu Altın */
  --secondary: #1a1a1a; /* Siyah */
  --accent: #fbf7f0; /* Krem Beyaz */
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: var(--accent);
  color: var(--secondary);
  padding-top: 80px; /* Navbar yüksekliği için boşluk */
}

/* Navbar Styles */
.navbar {
  background-color: var(--secondary);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* --- Add Funds Page Specifics --- */

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

/* Quick Amount Buttons (Gold Theme) */
.quick-amount {
  transition: all 0.2s ease;
}

.quick-amount:hover {
  background-color: rgba(212, 175, 55, 0.05); /* --primary with opacity */
  transform: translateY(-2px);
}

.quick-amount.active {
  background: var(--primary); /* Gold Background */
  border-color: var(--primary);
  color: #1a1a1a; /* Dark Text for contrast on gold */
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
  font-weight: 800;
}

/* Custom Scrollbar for dropdowns if needed */
#addFundsForm select::-webkit-scrollbar {
  width: 8px;
}
#addFundsForm select::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 4px;
}

.navbar-scrolled {
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.nav-link {
  color: var(--accent);
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 80%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--secondary);
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--secondary);
}

/* Language Dropdown */
.language-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--secondary);
  min-width: 150px;
  box-shadow: 0 8px 16px rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  overflow: hidden;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  border: 1px solid var(--primary);
}

.dropdown-content a {
  color: var(--accent);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.dropdown-content a:hover {
  background-color: var(--primary);
  color: var(--secondary);
}

.language-dropdown:hover .dropdown-content {
  display: block;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--secondary);
  z-index: 999;
  padding: 2rem;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, var(--secondary), #000000);
  color: var(--accent);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-section h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary);
}

.footer-link {
  color: var(--accent);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.footer-link:hover {
  color: var(--primary);
  padding-left: 10px;
  opacity: 1;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  color: var(--primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.2rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.social-icon:hover {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
  border-color: var(--primary);
}

/* Social Media Specific Colors */
.social-icon.facebook:hover {
  background: linear-gradient(135deg, #1877f2, #0c63d4);
  color: white;
  box-shadow: 0 10px 25px rgba(24, 119, 242, 0.5);
}

.social-icon.twitter:hover {
  background: linear-gradient(135deg, #1da1f2, #0c85d0);
  color: white;
  box-shadow: 0 10px 25px rgba(29, 161, 242, 0.5);
}

.social-icon.instagram:hover {
  background: linear-gradient(135deg, #e4405f, #833ab4, #fd1d1d);
  color: white;
  box-shadow: 0 10px 25px rgba(228, 64, 95, 0.5);
}

.social-icon.linkedin:hover {
  background: linear-gradient(135deg, #0a66c2, #004182);
  color: white;
  box-shadow: 0 10px 25px rgba(10, 102, 194, 0.5);
}

.social-icon.telegram:hover {
  background: linear-gradient(135deg, #0088cc, #229ed9);
  color: white;
  box-shadow: 0 10px 25px rgba(0, 136, 204, 0.5);
}

.copyright {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: var(--accent);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .desktop-nav {
    display: none;
  }

  .footer-section {
    margin-bottom: 2rem;
  }
}

/* Logo Animation */
.logo-img {
  transition: transform 0.3s ease;
}

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

/* Hero Section Styles */
.hero-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--accent) 0%, #ffffff 100%);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 3rem;
}

.hero-image {
  background: transparent;
}

.hero-image img {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

/* Login Form Styles */
.login-form-container {
  position: relative;
}

.login-form {
  background: transparent;
  backdrop-filter: none;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 25px 80px rgba(26, 26, 26, 0.15);
  border: 2px solid rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.login-form::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../../img/login-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  border-radius: 24px;
}

.login-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  z-index: 3;
}

.login-form-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  z-index: 3;
  border-radius: 24px 24px 0 0;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group.has-icon {
  position: relative;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a2e;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  position: relative;
  z-index: 2;
  color: var(--secondary);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.3);
  color: var(--secondary);
}

.form-input::placeholder {
  color: #9ca3af;
}

.form-group.has-icon .input-icon {
  position: absolute;
  right: 1rem;
  top: calc(1.425rem + 0.5rem + 0.875rem + 0.75rem);
  transform: translateY(-50%);
  color: var(--primary);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.form-group.has-icon .form-input {
  padding-right: 3rem;
}

.form-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 0.75rem;
  cursor: pointer;
  accent-color: var(--primary);
}

.form-checkbox label {
  font-size: 0.9rem;
  color: #1a1a2e;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.forgot-password {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.forgot-password:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.login-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--secondary);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  position: relative;
  z-index: 2;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.login-btn:active {
  transform: translateY(0);
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
  color: rgba(26, 26, 26, 0.7);
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid rgba(26, 26, 26, 0.3);
}

.divider span {
  padding: 0 1rem;
}

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

.social-btn {
  padding: 0.75rem 2rem;
  border: 2px solid rgba(26, 26, 26, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 150px;
  position: relative;
  z-index: 2;
  color: #1a1a2e;
}

.social-btn:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.social-btn.google {
  color: #1a1a2e;
}

.social-btn.google:hover {
  background: rgba(234, 67, 53, 0.1);
  border-color: #ea4335;
}

.signup-link {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #1a1a2e;
  position: relative;
  z-index: 2;
}

.signup-link a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.signup-link a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Benefits Section Styles */
.benefits-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--accent) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.benefits-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.benefits-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.benefit-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(26, 26, 26, 0.08);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
  border-color: var(--primary);
}

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

.benefit-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--secondary);
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.benefit-card:hover .benefit-card-icon {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.benefit-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary);
  line-height: 1.3;
}

.benefit-card-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .benefits-title {
    font-size: 2rem;
  }

  .benefits-subtitle {
    font-size: 1rem;
  }

  .benefit-card {
    padding: 2rem;
  }

  .benefit-card-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }

  .benefit-card-title {
    font-size: 1.2rem;
  }

  .benefit-card-description {
    font-size: 0.9rem;
  }
}

/* Features Section Styles */
.features-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
}

.features-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.features-subtitle {
  font-size: 1.25rem;
  color: #666;
  max-width: 3xl;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(26, 26, 26, 0.08);
  position: relative;
  overflow: hidden;
}

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

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
  border-color: var(--primary);
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--secondary);
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.feature-card:hover .feature-icon {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.feature-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Why Lion Follower Section Styles */
.why-lionfollower-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--accent) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.why-lionfollower-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.why-lionfollower-image {
  position: relative;
  z-index: 1;
}

.why-lionfollower-image img {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 20px 40px rgba(26, 26, 26, 0.1));
}

.why-lionfollower-content {
  position: relative;
  z-index: 1;
}

.why-lionfollower-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.why-lionfollower-intro {
  font-size: 1.25rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.why-lionfollower-benefits {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefit-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(26, 26, 26, 0.08);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.benefit-item:hover::before {
  transform: scaleY(1);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--secondary);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.benefit-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .login-form {
    padding: 2rem;
  }

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

  .features-subtitle {
    font-size: 1rem;
  }

  .feature-card {
    padding: 2rem;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }

  .why-lionfollower-title {
    font-size: 2rem;
  }

  .why-lionfollower-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .benefit-item {
    padding: 1.25rem;
    gap: 1rem;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 1.25rem;
  }

  .benefit-title {
    font-size: 1.1rem;
  }

  .benefit-description {
    font-size: 0.95rem;
  }
}

/* Stats Numbers Styles */
.stats-numbers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5rem;
  padding: 3rem 4rem;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.05),
    rgba(212, 175, 55, 0.02)
  );
  border-radius: 24px;
  border: 2px solid rgba(212, 175, 55, 0.15);
  position: relative;
  overflow: hidden;
}

.stats-numbers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--primary-dark),
    var(--primary)
  );
}

.stat-item {
  text-align: center;
  flex: 1;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1),
    rgba(212, 175, 55, 0.05)
  );
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.05);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: "Inter", sans-serif;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
  text-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.stat-label {
  font-size: 0.95rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.stat-item:hover .stat-label {
  color: var(--primary);
}

.stat-divider {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--primary), transparent);
  opacity: 0.3;
}

@media (max-width: 1024px) {
  .stats-numbers {
    padding: 2.5rem 2rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .stat-divider {
    height: 50px;
  }
}

@media (max-width: 768px) {
  .stats-numbers {
    flex-wrap: wrap;
    padding: 2rem 1.5rem;
    gap: 2rem;
  }

  .stat-item {
    flex: 1 1 45%;
    min-width: 150px;
  }

  .stat-divider {
    display: none;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .stats-numbers {
    padding: 1.5rem 1rem;
  }

  .stat-item {
    flex: 1 1 100%;
  }

  .stat-number {
    font-size: 2.25rem;
  }
}

/* How It Works Section Styles */
.how-it-works-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  position: relative;
  overflow: hidden;
}

.how-it-works-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.hiw-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.hiw-subtitle {
  font-size: 1.25rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.hiw-card {
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease forwards;
}

.hiw-card[data-step="1"] {
  animation-delay: 0.1s;
}
.hiw-card[data-step="2"] {
  animation-delay: 0.3s;
}
.hiw-card[data-step="3"] {
  animation-delay: 0.5s;
}

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

.hiw-card-inner {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(26, 26, 26, 0.1);
  border: 2px solid transparent;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
}

.hiw-card-inner:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.25);
  border-color: var(--primary);
}

.hiw-step-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--secondary);
  z-index: 10;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
  transition: all 0.4s ease;
}

.hiw-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.hiw-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.hiw-card-inner:hover .hiw-image img {
  transform: scale(1.1);
}

.hiw-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(26, 26, 26, 0.4) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hiw-card-inner:hover .hiw-image-overlay {
  opacity: 1;
}

.hiw-content {
  padding: 2rem;
}

.hiw-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.hiw-card-inner:hover .hiw-card-title {
  color: var(--primary);
}

.hiw-card-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
}

/* Arrow Between Cards */
.hiw-arrow {
  position: absolute;
  right: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.25rem;
  z-index: 20;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Progress Line */
.hiw-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--primary-dark),
    var(--primary)
  );
  transform: translateY(-50%);
  z-index: 0;
  opacity: 0.2;
}

@media (max-width: 1024px) {
  .hiw-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 500px;
    margin: 0 auto;
  }

  .hiw-arrow {
    right: 50%;
    top: auto;
    bottom: -2rem;
    transform: translateX(50%) rotate(90deg);
    width: 50px;
    height: 50px;
  }

  .hiw-grid::before {
    display: none;
  }

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

@media (max-width: 768px) {
  .hiw-title {
    font-size: 2rem;
  }

  .hiw-subtitle {
    font-size: 1rem;
  }

  .hiw-image {
    height: 180px;
  }

  .hiw-content {
    padding: 1.5rem;
  }

  .hiw-step-badge {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

/* Global Reach Section Styles */
.global-reach-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--accent) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.global-reach-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 0% 50%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 100% 50%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.global-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.global-subtitle {
  font-size: 1.25rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.accordion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.accordion-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(26, 26, 26, 0.06);
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.accordion-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.accordion-item.active {
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary);
  transition: all 0.3s ease;
  text-align: left;
}

.accordion-header:hover {
  color: var(--primary);
}

.accordion-item.active .accordion-header {
  color: var(--primary);
  background: rgba(212, 175, 55, 0.05);
}

.accordion-header i {
  font-size: 0.9rem;
  color: var(--primary);
  transition: transform 0.4s ease;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-content p {
  padding: 0 1.5rem 1.5rem;
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .accordion-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .global-title {
    font-size: 2rem;
  }

  .global-subtitle {
    font-size: 1rem;
  }

  .accordion-header {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }

  .accordion-content p {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.95rem;
  }
}

/* Testimonials Section Styles */
.testimonials-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.testimonials-subtitle {
  font-size: 1.25rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.testimonials-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.testimonials-nav {
  position: absolute;
  top: -5rem;
  right: 0;
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.testimonial-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  background: white;
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(26, 26, 26, 0.08);
}

.testimonial-nav-btn:hover {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  transition: transform 0.5s ease;
}

.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(26, 26, 26, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2);
  border-color: var(--primary);
}

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

.testimonial-quote {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.testimonial-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(212, 175, 55, 0.15);
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.author-role {
  font-size: 0.9rem;
  color: #888;
  font-weight: 500;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
}

.testimonial-rating i {
  color: var(--primary);
  font-size: 1rem;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  width: 40px;
  border-radius: 6px;
  background: var(--primary);
}

.testimonials-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.08),
    rgba(212, 175, 55, 0.04)
  );
  border-radius: 24px;
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.cta-text {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 2rem;
  font-weight: 500;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--secondary);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.cta-button i {
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .testimonials-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

  .testimonials-nav {
    top: -4.5rem;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 4rem 0;
  }

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

  .testimonials-subtitle {
    font-size: 1rem;
  }

  .testimonials-track {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonials-nav {
    position: relative;
    top: auto;
    right: auto;
    justify-content: center;
    margin-top: 2rem;
    order: 2;
  }

  .testimonials-carousel-wrapper {
    display: flex;
    flex-direction: column;
  }

  .testimonials-dots {
    order: 1;
    margin-top: 2rem;
    margin-bottom: 0;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .author-name {
    font-size: 1rem;
  }

  .author-role {
    font-size: 0.85rem;
  }

  .cta-text {
    font-size: 1.1rem;
  }

  .cta-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

/* Terms & Conditions Page Styles */
.terms-hero-section {
  background: linear-gradient(135deg, var(--accent) 0%, #ffffff 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.terms-hero-section::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.terms-icon-badge {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--secondary);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.terms-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.terms-main-subtitle {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.terms-meta-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: #888;
  flex-wrap: wrap;
}

.terms-meta-info i {
  color: var(--primary);
  margin-right: 0.5rem;
}

.meta-separator {
  color: var(--primary);
  font-weight: 700;
}

.terms-content-section {
  background: #ffffff;
  padding: 4rem 0;
}

.terms-intro-box {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.08),
    rgba(212, 175, 55, 0.04)
  );
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 3rem;
  border: 2px solid rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}

.terms-intro-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.content-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.terms-intro-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.terms-intro-box p:last-child {
  margin-bottom: 0;
}

.terms-content-box {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(26, 26, 26, 0.08);
  border: 2px solid rgba(212, 175, 55, 0.1);
}

.terms-content-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 24px 24px 0 0;
}

.terms-content-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 2.5rem 0 1.25rem 0;
  position: relative;
  padding-left: 1rem;
}

.terms-content-box h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
}

.terms-content-box h3:first-of-type {
  margin-top: 2rem;
}

.terms-content-box p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.25rem;
}

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

.terms-agreement-box {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.08),
    rgba(212, 175, 55, 0.04)
  );
  padding: 2.5rem;
  border-radius: 20px;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin: 3rem 0;
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.terms-agreement-box i {
  font-size: 2.5rem;
  color: var(--primary);
}

.terms-agreement-box h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.terms-agreement-box p {
  color: #555;
  line-height: 1.8;
  margin: 0;
}

.terms-cta-section {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.terms-cta-btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  font-size: 1rem;
  border: 2px solid transparent;
}

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

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

.terms-cta-btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--secondary);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.terms-cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.terms-cta-btn.secondary {
  background: white;
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(26, 26, 26, 0.1);
}

.terms-cta-btn.secondary:hover {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.terms-cta-btn.outline {
  background: transparent;
  color: var(--secondary);
  border-color: rgba(212, 175, 55, 0.3);
}

.terms-cta-btn.outline:hover {
  background: var(--accent);
  border-color: var(--primary);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .terms-main-title {
    font-size: 2.5rem;
  }

  .terms-main-subtitle {
    font-size: 1.1rem;
  }

  .terms-meta-info {
    font-size: 0.85rem;
  }

  .terms-intro-box,
  .terms-content-box {
    padding: 2rem;
  }

  .terms-content-box h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem 0;
  }

  .terms-content-box p {
    font-size: 0.95rem;
  }

  .terms-cta-section {
    flex-direction: column;
  }

  .terms-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .terms-agreement-box {
    flex-direction: column;
    padding: 2rem;
  }

  .terms-agreement-box i {
    font-size: 2rem;
  }

  .terms-agreement-box h4 {
    font-size: 1.25rem;
  }
}

/* Signup Page Styles */
.signup-hero-section {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    #ffffff 50%,
    var(--accent) 100%
  );
  padding: 3rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.signup-hero-section::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left Content */
.signup-content {
  padding: 2rem;
}

.signup-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--secondary);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.signup-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.signup-main-description {
  font-size: 1.25rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 3rem;
}

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

.stat-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(26, 26, 26, 0.08);
  border: 2px solid rgba(212, 175, 55, 0.1);
}

.stat-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.5rem;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: #666;
  font-weight: 600;
}

.signup-image {
  text-align: center;
  margin-top: 2rem;
}

.signup-lion {
  max-width: 350px;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(212, 175, 55, 0.4));
}

/* Right Form */
.signup-form-side {
  padding: 2rem;
}

.signup-box {
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(26, 26, 26, 0.12);
  border: 2px solid rgba(212, 175, 55, 0.15);
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.signup-top-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.signup-header {
  padding: 2.5rem 2.5rem 1.5rem;
  text-align: center;
}

.signup-header h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.signup-header p {
  font-size: 1rem;
  color: #666;
}

.signup-box form {
  padding: 0 2.5rem 2.5rem;
}

.input-group {
  margin-bottom: 1.25rem;
}

.input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--secondary);
  font-size: 0.95rem;
}

.input-group label i {
  color: var(--primary);
  margin-right: 0.5rem;
}

.input-group input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--secondary);
}

.input-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.input-group input::placeholder {
  color: #9ca3af;
}

.submit-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--secondary);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

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

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

.form-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #666;
}

.form-footer a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.form-footer a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-item i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Why Join Section */
.why-join-section {
  background: white;
  padding: 3rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.benefit-box {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--accent);
  border-radius: 20px;
  border: 2px solid rgba(212, 175, 55, 0.15);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  color: var(--secondary);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.benefit-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.benefit-box p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}

/* CTA Section */
.signup-cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 3rem 0;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.cta-content p {
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.8);
}

.cta-button {
  padding: 1.25rem 2.5rem;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(26, 26, 26, 0.3);
  white-space: nowrap;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(26, 26, 26, 0.4);
}

.cta-button i {
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1024px) {
  .signup-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .signup-main-title {
    font-size: 2.5rem;
  }

  .signup-stats {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .cta-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .signup-hero-section {
    padding: 2rem 0;
  }

  .signup-main-title {
    font-size: 2rem;
  }

  .signup-stats {
    grid-template-columns: 1fr;
  }

  .signup-lion {
    max-width: 250px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-badges {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Free Followers Form Styles */
.free-followers-section {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
}

#freeFollowersForm select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
  background-color: white;
}

#freeFollowersForm select option {
  background-color: white;
  color: #1a1a2e;
  padding: 0.5rem;
}

#freeFollowersForm input:focus,
#freeFollowersForm select:focus,
#freeFollowersForm textarea:focus {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* Lion Character Styles */
.lion-container {
  pointer-events: none;
}

.lion-container img {
  transition: filter 0.2s ease;
}

/* Responsive Lion Position */
@media (max-width: 1400px) {
  .lion-container {
    right: -360px !important;
  }
  .lion-container img {
    height: 400px !important;
  }
}

@media (max-width: 1280px) {
  .lion-container {
    right: -320px !important;
  }
  .lion-container img {
    height: 350px !important;
  }
}

@media (max-width: 1024px) {
  .lion-container {
    display: none !important;
  }
}

/* Notification Animations */
@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

/* Button Loading State */
#sendButton:disabled {
  cursor: not-allowed;
  transform: none !important;
}

#sendButton:disabled:hover {
  box-shadow: none !important;
}

/* Responsive Form Styles */
@media (max-width: 768px) {
  #freeFollowersForm {
    padding: 0 1rem;
  }

  #freeFollowersForm input,
  #freeFollowersForm select,
  #freeFollowersForm textarea {
    font-size: 16px; /* Prevent zoom on iOS */
  }
}

/* Services Section Styles */
.services-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}

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

.services-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.services-subtitle {
  font-size: 1.25rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.services-infinite-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 3rem 0;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.services-infinite-track {
  display: flex;
  gap: 2rem;
  width: fit-content;
  animation: infiniteScroll 40s linear infinite;
  will-change: transform;
}

.services-infinite-wrapper:hover .services-infinite-track {
  animation-play-state: paused;
}

@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.service-card {
  flex-shrink: 0;
  width: 380px;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.service-card:hover {
  width: 480px;
  transform: scale(1.05);
  z-index: 10;
}

.service-card-inner {
  background: white;
  border-radius: 24px;
  padding: 2rem 2.5rem;
  position: relative;
  overflow: visible;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid transparent;
  box-shadow: 0 15px 40px rgba(26, 26, 26, 0.1);
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1.75rem;
}

.service-card:hover .service-card-inner {
  box-shadow: 0 25px 60px rgba(26, 26, 26, 0.2);
  transform: translateY(-8px);
}

.service-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

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

.service-card-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  filter: blur(40px);
}

.service-card-inner:hover::after {
  opacity: 0.3;
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.15),
    rgba(212, 175, 55, 0.08)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

.service-card-inner:hover .service-icon-wrapper {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.service-icon {
  font-size: 2.25rem;
  color: var(--primary);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  text-align: left;
  letter-spacing: -0.5px;
}

.service-card-inner:hover .service-title {
  color: var(--primary);
  transform: translateX(5px);
}

.service-count {
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
  text-align: left;
  margin-bottom: 0.75rem;
}

.service-card-inner:hover .service-count {
  color: var(--primary);
}

.service-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(-15px);
}

.service-card-inner:hover .service-details {
  opacity: 1;
  max-height: 120px;
  transform: translateY(0);
}

.service-detail-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #888;
  transition: all 0.4s ease;
  font-weight: 500;
}

.service-detail-item i {
  font-size: 0.75rem;
  color: var(--primary);
  min-width: 16px;
  transition: all 0.4s ease;
}

.service-card-inner:hover .service-detail-item {
  color: #555;
  transform: translateX(3px);
}

.service-card-inner:hover .service-detail-item i {
  transform: scale(1.2);
}

/* Platform-specific colors */
.service-card[data-service="instagram"]:hover .service-card-inner {
  border-color: #e4405f;
}

.service-card[data-service="instagram"]:hover .service-icon-wrapper {
  background: linear-gradient(135deg, #e4405f, #833ab4, #fd1d1d);
}

.service-card[data-service="instagram"]:hover .service-icon {
  color: white;
}

.service-card[data-service="instagram"] .service-card-inner::after {
  background: radial-gradient(circle, #e4405f, #833ab4);
}

.service-card[data-service="tiktok"]:hover .service-card-inner {
  border-color: #000000;
}

.service-card[data-service="tiktok"]:hover .service-icon-wrapper {
  background: linear-gradient(135deg, #000000, #ee1d52, #69c9d0);
}

.service-card[data-service="tiktok"]:hover .service-icon {
  color: white;
}

.service-card[data-service="tiktok"] .service-card-inner::after {
  background: radial-gradient(circle, #ee1d52, #69c9d0);
}

.service-card[data-service="youtube"]:hover .service-card-inner {
  border-color: #ff0000;
}

.service-card[data-service="youtube"]:hover .service-icon-wrapper {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.service-card[data-service="youtube"]:hover .service-icon {
  color: white;
}

.service-card[data-service="youtube"] .service-card-inner::after {
  background: radial-gradient(circle, #ff0000, #cc0000);
}

.service-card[data-service="twitter"]:hover .service-card-inner {
  border-color: #1da1f2;
}

.service-card[data-service="twitter"]:hover .service-icon-wrapper {
  background: linear-gradient(135deg, #1da1f2, #0c85d0);
}

.service-card[data-service="twitter"]:hover .service-icon {
  color: white;
}

.service-card[data-service="twitter"] .service-card-inner::after {
  background: radial-gradient(circle, #1da1f2, #0c85d0);
}

.service-card[data-service="facebook"]:hover .service-card-inner {
  border-color: #1877f2;
}

.service-card[data-service="facebook"]:hover .service-icon-wrapper {
  background: linear-gradient(135deg, #1877f2, #0c63d4);
}

.service-card[data-service="facebook"]:hover .service-icon {
  color: white;
}

.service-card[data-service="facebook"] .service-card-inner::after {
  background: radial-gradient(circle, #1877f2, #0c63d4);
}

.service-card[data-service="telegram"]:hover .service-card-inner {
  border-color: #0088cc;
}

.service-card[data-service="telegram"]:hover .service-icon-wrapper {
  background: linear-gradient(135deg, #0088cc, #229ed9);
}

.service-card[data-service="telegram"]:hover .service-icon {
  color: white;
}

.service-card[data-service="telegram"] .service-card-inner::after {
  background: radial-gradient(circle, #0088cc, #229ed9);
}

.service-card[data-service="linkedin"]:hover .service-card-inner {
  border-color: #0a66c2;
}

.service-card[data-service="linkedin"]:hover .service-icon-wrapper {
  background: linear-gradient(135deg, #0a66c2, #004182);
}

.service-card[data-service="linkedin"]:hover .service-icon {
  color: white;
}

.service-card[data-service="linkedin"] .service-card-inner::after {
  background: radial-gradient(circle, #0a66c2, #004182);
}

.service-card[data-service="spotify"]:hover .service-card-inner {
  border-color: #1db954;
}

.service-card[data-service="spotify"]:hover .service-icon-wrapper {
  background: linear-gradient(135deg, #1db954, #1aa34a);
}

.service-card[data-service="spotify"]:hover .service-icon {
  color: white;
}

.service-card[data-service="spotify"] .service-card-inner::after {
  background: radial-gradient(circle, #1db954, #1aa34a);
}

/* Responsive Services */
@media (max-width: 1024px) {
  .services-title {
    font-size: 2.5rem;
  }

  .service-card {
    width: 320px;
  }

  .service-card:hover {
    width: 400px;
  }

  .services-infinite-track {
    gap: 1.5rem;
  }

  .service-icon-wrapper {
    width: 70px;
    height: 70px;
    min-width: 70px;
  }

  .service-icon {
    font-size: 2rem;
  }

  .service-title {
    font-size: 1.25rem;
  }

  .service-detail-item {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 4rem 0;
  }

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

  .services-subtitle {
    font-size: 1rem;
  }

  .service-card {
    width: 280px;
  }

  .service-card:hover {
    width: 360px;
  }

  .services-infinite-track {
    gap: 1.25rem;
  }

  .service-card-inner {
    padding: 1.5rem 2rem;
    gap: 1.5rem;
  }

  .service-icon-wrapper {
    width: 65px;
    height: 65px;
    min-width: 65px;
  }

  .service-icon {
    font-size: 1.9rem;
  }

  .service-title {
    font-size: 1.15rem;
  }

  .service-count {
    font-size: 0.85rem;
  }

  .service-detail-item {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .service-card {
    width: 240px;
  }

  .service-card:hover {
    width: 300px;
  }

  .services-infinite-track {
    gap: 1rem;
  }

  .service-card-inner {
    padding: 1.25rem 1.5rem;
    gap: 1.25rem;
  }

  .service-icon-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  .service-icon {
    font-size: 1.75rem;
  }

  .service-title {
    font-size: 1.05rem;
  }

  .service-count {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }

  .service-detail-item {
    font-size: 0.65rem;
    gap: 0.5rem;
  }
}

/* Services Page Styles */
@keyframes animate-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-scroll {
  animation: animate-scroll 30s linear infinite;
  display: inline-flex;
}

.animate-scroll:hover {
  animation-play-state: paused;
}
