@import url("https://fonts.googleapis.com/css2?family=Gilroy:wght@100;200;300;400;500;600;700;800;900&display=swap");

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

body {
  font-family: "Gilroy", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #333;
  background: white;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TRANSPARENT GLASS HEADER */
header {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
}

.logo-icon {
  height: 3rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #2d3748;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* HERO SECTION - Soft Blue */
.hero {
  background: linear-gradient(135deg, #e6f3ff 0%, #cce7ff 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(102, 126, 234, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(118, 75, 162, 0.1) 0%,
      transparent 50%
    );
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #2d3748;
}

.pink-text {
  color: #e91e63;
}

/* PRIVACY POLICY PAGE */
.privacy-policy-section {
  background: #f7fafc;
  padding: 6rem 0 1rem 0;
  min-height: 100vh;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 2rem 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.privacy-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 2rem;
  text-align: center;
}

.privacy-item {
  margin-bottom: 2.5rem;
}

.privacy-item h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.privacy-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 1rem;
}

.privacy-item ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.privacy-item ul li {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pig-image {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.pig-icon {
  width: 25rem;
  height: auto;
  opacity: 0.8;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.check {
  background: linear-gradient(135deg, #48bb78, #38a169);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

/* UPDATED FORM */
.consultation-form {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.consultation-form h2 {
  color: #2d3748;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.consultation-form p {
  color: #4a5568;
  text-align: center;
  margin-bottom: 2rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.country-select {
  position: relative;
}

.phone-input-container {
  display: flex;
  gap: 0.5rem;
}

.country-code-select {
  width: auto !important;
  min-width: 120px;
  flex-shrink: 0;
}

.phone-input-container input[type="tel"] {
  flex: 1;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.checkbox-group {
  margin-bottom: 1.5rem;
}

.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: #667eea;
  cursor: pointer;
}

.checkbox-text {
  color: #4a5568;
}

.privacy-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: #764ba2;
  text-decoration: underline;
}

/* SCAM TYPES SECTION - Soft Pink */
.scam-types {
  background: linear-gradient(135deg, #fff0f5 0%, #ffe4e1 100%);
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2d3748;
}

.section-subtitle {
  text-align: center;
  color: #4a5568;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.scam-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.scam-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.scam-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.scam-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.scam-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.read-more-btn {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.scam-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 1rem;
}

.scam-details.active {
  max-height: 200px;
}

/* HOW IT WORKS SECTION - Soft Green */
.how-it-works {
  background: linear-gradient(135deg, #f0fff4 0%, #e6ffe6 100%);
  padding: 80px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.process-card {
  padding: 0.5rem 0;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 3rem;
}

.process-card:hover {
  transform: translateY(-5px);
}

.process-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #48bb78, #38a169);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 1rem;
}

.process-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
}

/* CRYPTO RECOVERY SECTION - Soft Purple */
.crypto-recovery {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  padding: 80px 0;
  position: relative;
}

.crypto-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.crypto-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
}

.crypto-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.crypto-logos .crypto-logo:nth-child(3) {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}

.crypto-logo {
  width: 10rem;
  height: 10rem;
  padding: 1rem;
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 0 30px rgba(102, 126, 234, 0.3); */
  animation: glow 2s ease-in-out infinite alternate;
}

.crypto-logo-img {
  width: 80%;
  height: auto;
}

.tether {
  width: 100%;
}

/* @keyframes glow {
  from {
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
  }
  to {
    box-shadow: 0 0 50px rgba(102, 126, 234, 0.6);
  }
} */

/* FEES SECTION - Soft Orange */
.fees {
  background: linear-gradient(135deg, #fffaf0 0%, #fff5e1 100%);
  padding: 80px 0;
  text-align: center;
}

.fee-balloon {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.fee-balloon::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
}

.fee-image {
  width: 100%;
}

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

/* PARTNERS SECTION */
.partners {
  background: #f7fafc;
  padding: 60px 0;
  overflow: hidden;
}

.partners-scroll {
  display: flex;
  animation: scroll 20s linear infinite;
  gap: 3rem;
}

.partner-logo {
  min-width: 20rem;
  height: 10rem;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
  max-width: 80%;
  height: auto;
}

.okx {
  width: 40%;
}

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

/* TESTIMONIALS SECTION */
.testimonials {
  background: linear-gradient(135deg, #e6f3ff 0%, #cce7ff 100%);
  padding: 80px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 4rem;
}

.testimonial-photo {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  transform: rotate(5deg);
  transition: transform 0.3s ease;
  overflow: hidden;
  box-sizing: border-box;
}

.testimonials-photo-item {
  margin-top: -0.5rem;
  width: 110%;
  height: 115%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-sizing: border-box;
}

.testimonial-photo:hover {
  transform: rotate(0deg) scale(1.1);
}

/* AS SEEN ON */
.as-seen-on {
  background: #f7fafc;
  padding: 60px 0;
}

.media-scroll {
  display: flex;
  animation: scroll 25s linear infinite;
  gap: 3rem;
}

.media-logo {
  min-width: 120px;
  height: 50px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #2d3748;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* CTA SECTION */
.cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.cta-button {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
  border: none;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* FAQ SECTION */
.faq {
  background: linear-gradient(135deg, #fff0f5 0%, #ffe4e1 100%);
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 1);
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #667eea;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.faq-answer.active {
  max-height: 200px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* ABOUT SECTION */
.about {
  background: linear-gradient(135deg, #f0fff4 0%, #e6ffe6 100%);
  padding: 80px 0;
}

.about-title {
  text-align: left;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  text-align: left;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-image:hover {
  transform: scale(1.05);
}

/* FOOTER */
footer {
  background: #f7fafc;
  color: #2d3748;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: #2d3748;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 5rem;
  width: auto;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #4a5568;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #667eea;
}

.footer-bottom {
  border-top: 1px solid #e2e8f0;
  padding-top: 2rem;
  text-align: center;
  color: #4a5568;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .nav-links {
    display: none;
  }

  .crypto-content {
    grid-template-columns: 1fr;
  }

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

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

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2rem;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #4a5568;
}
