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


main {
    min-height: 100vh;
    background: #000;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 90px;
}

/* floating gradient orbs */

main::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 138, 0, 0.2) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    animation: gradientFloat 15s infinite;
}

main::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229, 46, 113, 0.15) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    border-radius: 50%;
    animation: gradientFloat 20s infinite reverse;
}



/* GRID */
.contact-wrapper {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #0f0f0f;
  border-radius: 30px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 20px 60px rgba(0,0,0,0.8);
    
}




/* LEFT */
.contact-left {
  padding: 3rem;
  background: linear-gradient(135deg, #050505, #141414);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-left h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg,#ff8a00,#e52e71);
  -webkit-background-clip: text;
  color: transparent;
}

.contact-left p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

/* FEATURES */
.contact-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  color: #ccc;
  font-size: 0.95rem;
}

/* INFO */
.contact-info {
  margin-bottom: 2rem;
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* SOCIAL */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  background: #141414;
  border: 1px solid #222;
  transition: 0.3s;
}

.social-btn:hover {
  transform: translateX(6px);
  border-color: transparent;
}

/* BRAND COLORS */
.social-btn.whatsapp:hover { background:#25D366; }
.social-btn.instagram:hover { background:linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7); }
.social-btn.facebook:hover { background:#1877f2; }
.social-btn.email:hover { background:#ff6b6b; }
.social-btn.linkedin:hover { background:#0a66c2; }

/* RIGHT */
.contact-right {
  padding: 3rem;
  background: #0b0b0b;
}

.contact-right h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg,#ff8a00,#e52e71);
  -webkit-background-clip: text;
  color: transparent;
}

.contact-right p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

/* FORM */
#contactForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#contactForm input,
#contactForm textarea,
#contactForm select,
#contactForm option{
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid #1f1f1f;
  background: #111;
  color: #fff;
  outline: none;
  transition: 0.3s;
}

#contactForm input:focus,
#contactForm textarea:focus,
#contactForm select:focus ,
#contactForm option{
  border-color: #ff8a00;
  box-shadow: 0 0 0 2px rgba(255,138,0,0.15);
}

#contactForm textarea {
  min-height: 120px;
}

/* BUTTON */
#submitBtn {
  margin-top: 0.5rem;
  padding: 0.95rem;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg,#ff8a00,#e52e71);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

#submitBtn:hover {
  transform: translateY(-2px);
}

/* TRUST BADGES */
.trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.trust-badges img {
  height: 70px;
  object-fit: contain;
  background: #111;
  padding: 6px;
  border-radius: 8px;
  border: 1px solid #1f1f1f;
}


/* STATS CONTAINER */
.stats-container {
  display: flex;
  gap: 12px;
  margin-bottom: 2rem;
  margin-top:2rem;
  flex-wrap: wrap;
}

/* CARD */
.stat-card {
  flex: 1;
  min-width: 100px;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

/* NUMBER */
.stat-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  -webkit-background-clip: text;
  color: transparent;
}

/* TEXT */
.stat-card p {
  font-size: 0.85rem;
  color: #aaa;
}

/* HOVER */
.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 138, 0, 0.3);
  box-shadow: 0 10px 25px rgba(255, 138, 0, 0.15);
}
.stat-card:nth-child(1) {
  background: linear-gradient(135deg, rgba(255,138,0,0.15), transparent);
}

.stat-card:nth-child(2) {
  background: linear-gradient(135deg, rgba(0,255,100,0.15), transparent);
}

.stat-card:nth-child(3) {
  background: linear-gradient(135deg, rgba(255,0,0,0.15), transparent);
}

/* LOADING BUTTON */
button.loading {
  pointer-events: none;
  opacity: 0.7;
}

button.loading::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-top: transparent;
  border-radius: 50%;
  margin-left: 10px;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.top-popup {
    position: fixed;
    top: -120px; 
    left: 50%;
    transform: translateX(-50%);
    background: #0d1117;
    color: #fff;
    padding: 14px 25px;
    border-radius: 8px;
    border: 1px solid #30363d;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    font-size: 14px;
    z-index: 9999;
    transition: top 0.4s ease;
    opacity: 0; 
    pointer-events: none; 
}

.top-popup.show {
    top: 20px;
    opacity: 1;
    pointer-events: auto;
}

/* =========================
   RESPONSIVE BREAKPOINTS
========================= */

/* =========================
   LARGE DESKTOP (1400px+)
========================= */
@media (min-width: 1400px) {
  .contact-wrapper {
    max-width: 1300px;
  }

  .contact-left h1 {
    font-size: 3rem;
  }

  .contact-right h2 {
    font-size: 2.8rem;
  }

  .stat-card h3 {
    font-size: 1.8rem;
  }
}


/* =========================
   NORMAL DESKTOP (1200px)
========================= */
@media (max-width: 1200px) {
  .contact-wrapper {
    max-width: 1000px;
  }

  .contact-left,
  .contact-right {
    padding: 2.5rem;
  }
}


/* =========================
   SMALL LAPTOP (1024px)
========================= */
@media (max-width: 1024px) {
  .contact-left h1 {
    font-size: 2.2rem;
  }

  .contact-right h2 {
    font-size: 2.1rem;
  }

  .trust-badges img {
    height: 65px;
  }
}


/* =========================
   TABLET (900px)
========================= */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-left,
  .contact-right {
    padding: 2rem;
  }

  .contact-left {
    order: 2; 
  }

  .contact-right {
    order: 1;
  }

  .contact-left h1,
  .contact-right h2 {
    font-size: 2rem;
  }

  .stats-container {
    justify-content: center;
  }
}


/* =========================
   LARGE MOBILE (768px)
========================= */
@media (max-width: 768px) {
  main {
    padding: 30px 15px;
  }

  .contact-wrapper {
    border-radius: 20px;
  }

  .contact-left,
  .contact-right {
    padding: 1.8rem;
  }

  .social-links {
    gap: 0.6rem;
  }

  .social-btn {
    padding: 0.75rem;
    font-size: 14px;
  }

  .trust-badges {
    justify-content: center;
  }

  .trust-badges img {
    height: 55px;
  }
}


/* =========================
   MOBILE (600px)
========================= */
@media (max-width: 600px) {
  main {
    padding: 1rem;
    margin-top: 90px;
  }

  .contact-left h1,
  .contact-right h2 {
    font-size: 1.6rem;
  }

  .contact-left p,
  .contact-right p {
    font-size: 14px;
  }

  .contact-features,
  .contact-info {
    font-size: 13px;
  }

  #contactForm input,
  #contactForm textarea,
  #contactForm select {
    font-size: 14px;
  }

  #submitBtn {
    font-size: 14px;
    padding: 0.8rem;
  }

  .stat-card {
    min-width: 90px;
    padding: 0.8rem;
  }

  .stat-card h3 {
    font-size: 1.2rem;
  }
}


/* =========================
   SMALL MOBILE (480px)
========================= */
@media (max-width: 480px) {
  .contact-left,
  .contact-right {
    padding: 1.2rem;
  }

  .contact-left h1,
  .contact-right h2 {
    font-size: 1.4rem;
  }

  .social-btn {
    font-size: 13px;
    padding: 0.6rem;
  }

  .trust-badges img {
    height: 50px;
  }

  .stat-card {
    flex: 100%;
  }
}


/* =========================
   EXTRA SMALL (360px)
========================= */
@media (max-width: 360px) {
  .contact-left h1,
  .contact-right h2 {
    font-size: 1.2rem;
  }

  .contact-left p,
  .contact-right p {
    font-size: 12px;
  }

  #submitBtn {
    padding: 0.7rem;
    font-size: 13px;
  }
}