/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #05070d;
  color: white;
  overflow-x: hidden;
}

/* PREMIUM BACKGROUND GLOW */
body::before,
body::after {
  content: "";
  position: fixed;
  width: 600px;
  height: 600px;
  filter: blur(120px);
  z-index: -1;
}

body::before {
  background: rgba(155,92,255,0.25);
  top: -100px;
  left: -100px;
}

body::after {
  background:rgba(155,92,255,0.25);
  bottom: -100px;
  right: -100px;
}

button {
    font-family: 'Outfit', sans-serif;
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 10%;
  min-height: 100vh;
}

.hero-left {
  max-width: 500px;
}

.hero-right img {
  width: 500px;
  max-width: 100%;
  border-radius: 16px;
  filter: drop-shadow(0 0 40px rgba(155,92,255,0.4));
}

/* TEXT */
.tag {
  color: #9b5cff;
  font-size: 13px;
  letter-spacing: 1px;
}

h1 {
  font-size: 52px;
  margin: 10px 0;
}

h1 span {
  background: linear-gradient(90deg, #7b2cff, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.desc {
  color: #94a3b8;
  margin: 20px 0;
}

/* FEATURES SMALL TAGS */
.features {
  display: flex;
  gap: 10px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.feature {
  padding: 10px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  font-size: 13px;
}

/* BUTTONS */
.buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.btn-primary {
  padding: 12px 22px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(90deg, #7b2cff, #22c55e);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.learn {
  color: #94a3b8;
  text-decoration: none;
}

/* SECTION */
.features-section {
  padding: 100px 10%;
  text-align: center;
}

/* GRID */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
  gap: 25px;
}

/* CARD (MAIN FIX) */
.card {
  padding: 25px;
  border-radius: 18px;

  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);

  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.3s;
}

/* HOVER */
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(155,92,255,0.2);
}

/* ICON */
.card i {
  font-size: 26px;
  margin-bottom: 10px;
  color: #9b5cff;
}

/* REMOVE OLD COLOR BLOCKS ❌ */
/* DO NOT USE .green .blue .red .orange background-color */

/* TESTIMONIALS */
.testimonials-premium {
  padding: 100px 10%;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 20px;
  gap: 30px;
}

.testimonial-card {
  padding: 30px;
  border-radius: 20px;
  position: relative;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.quote {
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 60px;
  opacity: 0.08;
}

.user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.user span {
  color: #94a3b8;
  font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .feature-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.faq-premium {
    padding: 100px 10%;
    text-align: center;
}

.faq-premium h2 {
    font-size: 34px;
}

.subtitle {
    color: #94a3b8;
    margin-bottom: 50px;
}

/* LIST */
.faq-list {
    max-width: 800px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ITEM */
.faq-item {
    border-radius: 16px;
    overflow: hidden;

    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(16px);

    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.3s;
}

/* QUESTION */
.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 15px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    cursor: pointer;
}

/* ICON */
.faq-question i {
    transition: 0.3s;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 20px;
}

.faq-answer p {
    color: #94a3b8;
    padding-bottom: 15px;
    font-size: 14px;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
    max-height: 150px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* HOVER GLOW */
.faq-item:hover {
    border-color: rgba(155,92,255,0.3);
    box-shadow: 0 0 25px rgba(155,92,255,0.15);
}

@media(max-width:900px){
    body::after,
    body::before {
        width: 150px;
        height:150px;
    }
}

/* ==========================================================================
   PREMIUM SPLIT CONTACT SECTION
   ========================================================================== */

.contact-premium-split {
  padding: 120px 10%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #05070d 0%, #080b14 100%);
}

.contact-container {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* LEFT PANEL: INFO STACK */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: left;
}

.sub-tag {
  color: #9b5cff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.contact-info-panel h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 30%, #a3a3a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-info-panel p {
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 15px;
}

/* INFO CARDS LIST */
.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-card:hover {
  background: rgba(155, 92, 255, 0.04);
  border-color: rgba(155, 92, 255, 0.2);
  transform: translateX(6px);
}

.icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(155, 92, 255, 0.1);
  border: 1px solid rgba(155, 92, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9b5cff;
  font-size: 18px;
  transition: 0.3s;
}

.info-card:hover .icon-wrapper {
  background: #9b5cff;
  color: white;
  box-shadow: 0 0 15px rgba(155, 92, 255, 0.4);
}

.card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-text .label {
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-text .value {
  font-size: 16px;
  color: #e2e8f0;
  font-weight: 500;
}

.card-text .link {
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-text .link:hover {
  color: #22c55e;
}

/* RIGHT PANEL: FORM */
.contact-form-panel {
  position: relative;
}

/* Ambient glow focal point exclusively beneath form block */
.contact-form-panel::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(155, 92, 255, 0.15), transparent 70%);
  top: -10%;
  left: -10%;
  z-index: 0;
  pointer-events: none;
}

.premium-form {
  position: relative;
  z-index: 1;
  padding: 40px;
  border-radius: 24px;
  background: rgba(10, 14, 26, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.premium-form h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.input-group label {
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.3px;
}

.premium-form input,
.premium-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-form input::placeholder,
.premium-form textarea::placeholder {
  color: #475569;
}

/* Explicit interactive visual design cue states */
.premium-form input:focus,
.premium-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  border-color: #9b5cff;
  box-shadow: 0 0 0 3px rgba(155, 92, 255, 0.15);
}

.premium-form textarea {
  height: 130px;
  resize: none;
}

/* HIGH-END ACTION BUTTON */
.btn-submit {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(90deg, #7b2cff, #22c55e);
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(123, 44, 255, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-submit i {
  transition: transform 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(34, 197, 94, 0.35);
}

.btn-submit:hover i {
  transform: translateX(4px);
}

.btn-submit:active {
  transform: translateY(0);
}

/* RESPONSIVE DESIGN BREAKPOINTS */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .contact-info-panel {
    text-align: center;
  }
  
  .info-card {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .contact-premium-split {
    padding: 80px 6%;
  }
  
  .premium-form {
    padding: 30px 20px;
  }
  
  .contact-info-panel h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {

  /* HERO LAYOUT */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 6%;
    gap: 40px;
  }

  /* LEFT CONTENT */
  .hero-left {
    max-width: 100%;
  }

  /* TAG */
  .tag {
    font-size: 11px;
    letter-spacing: 1.5px;
    opacity: 0.8;
  }

  /* HEADING (BIG IMPROVEMENT) */
  h1 {
    font-size: 34px;
    line-height: 1.25;
    margin-top: 10px;
  }

  /* DESCRIPTION */
  .desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 15px 0;
  }

  /* FEATURES TAGS */
  .features {
    justify-content: center;
    gap: 8px;
  }

  .feature {
    font-size: 12px;
    padding: 8px 12px;
  }

  /* BUTTONS */
  .buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 14px;
  }

  .learn {
    font-size: 13px;
  }

  /* IMAGE (THIS IS IMPORTANT 🔥) */
  .hero-right {
    position: relative;
  }

  .hero-right img {
    width: 90%;
    max-width: 320px;
    margin: auto;
    display: block;

    border-radius: 18px;

    /* PREMIUM FLOATING EFFECT */
    transform: perspective(800px) rotateX(6deg) scale(1);
    box-shadow: 
      0 20px 40px rgba(0,0,0,0.6),
      0 0 30px rgba(155,92,255,0.25);
  }

  /* ADD GLOW UNDER IMAGE */
  .hero-right::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(155,92,255,0.4), transparent);
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(60px);
    z-index: -1;
  }

}