/* BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #181818;
  color: #f5f5f5;
  scroll-behavior: smooth;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* NAVBAR */
/* ================== NAVBAR ================== */
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(20, 20, 30, 0.75);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(-30px);
  animation: navEnter 1s ease forwards;
  animation-delay: 0.3s;
}
@keyframes navEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo inside navbar */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  color: #9333ea;
}

.logo-icon {
  height: 38px;
  width: 38px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #9333ea;
  box-shadow: 0 0 6px rgba(147, 51, 234, 0.4);
  transition: transform 0.3s ease;
}

.brand-logo:hover .logo-icon {
  transform: scale(1.05) rotate(-5deg);
}

.brand-logo span {
  color: #9333ea;
  transition: color 0.3s;
}
.brand-logo:hover span {
  color: #ffffff;
}


.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.nav-links li {
  position: relative;
}
.nav-links li a {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s ease;
}
.nav-links li a:hover {
  color: #9333ea;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #9333ea;
  transition: width 0.3s ease-in-out;
}
.nav-links li a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
}
.nav-close {
  display: none;
  margin-top: 1rem;
  color: #ff4d4d;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  font-size: 1rem;
}

/* ================== MOBILE ================== */
@media screen and (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 65px;
    right: 1.5rem;
    background: #1f1f2b;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .nav-close {
    display: block;
  }

  .nav-links li a {
    font-size: 1rem;
    padding: 0.5rem;
  }
}

@media screen and (max-width: 768px) {
  .logo-icon {
    height: 28px;
  }
}


/* BUTTONS */
.btn-glow, .btn-glass, .btn-glow-sm {
  padding: 0.8rem 1.4rem;
  font-size: 1rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-glow {
  background: linear-gradient(to right, #9333ea, #7c3aed);
  color: white;
  box-shadow: 0 0 14px rgba(147, 51, 234, 0.5);
}
.btn-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.8);
}
.btn-glow-sm {
  background: #7c3aed;
  color: white;
  padding: 0.6rem 1.2rem;
}
.btn-glass {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid #9333ea;
  backdrop-filter: blur(6px);
  color: #f5f5f5;
}
.btn-glass:hover {
  background: #9333ea;
  color: white;
}

/* HERO SECTION */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
}
.hero-gradient {
  background: linear-gradient(120deg, #1e1b4b 0%, #5b21b6 45%, #9333ea 100%);
  background-size: 400% 400%;
  animation: bgScroll 10s ease infinite;
}
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.2);
}
.hero-content p {
  font-size: 1.2rem;
  color: #dcdcdc;
  margin-top: 1rem;
}
.hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ANIMATION */
@keyframes bgScroll {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .nav-links {
    display: none; /* For now, mobile menu coming later */
  }
}

/* Hero 2 */

/* ================== SECTION 2: WHO WE ARE ================== */
.section-dark {
  background: #1f1f2b;
  padding: 5rem 0;
  color: #f5f5f5;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #9333EA;
  margin-bottom: 0.6rem;
}
.section-header p {
  color: #d0d0d0;
  font-size: 1.05rem;
}

/* Zig-Zag Cards Layout */
.zigzag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  border-radius: 16px;
  padding: 1.6rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(147, 51, 234, 0.2);
  box-shadow: 0 0 16px rgba(147, 51, 234, 0.15);
}
.feature-card:nth-child(even) {
  background: rgba(255, 255, 255, 0.06);
}
.feature-card:hover {
  transform: scale(1.02) rotateY(3deg);
  box-shadow: 0 0 24px rgba(147, 51, 234, 0.3);
}

/* Icon Bubble */
.icon-bubble {
  background: linear-gradient(145deg, #9333EA, #7C3AED);
  padding: 1rem;
  border-radius: 50%;
  font-size: 1.4rem;
  color: white;
  box-shadow: 0 0 12px rgba(147, 51, 234, 0.4);
  flex-shrink: 0;
}

/* Text */
.feature-card h3 {
  font-size: 1.3rem;
  color: #f5f5f5;
}
.feature-card p {
  color: #d0d0d0;
  font-size: 1rem;
  line-height: 1.4;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .zigzag-grid {
    padding: 0 1rem;
  }
  .feature-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* js ani */

.slide-left, .slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 1s ease-out;
}
.slide-left.appear {
  opacity: 1;
  transform: translateX(0);
}
.slide-right.appear {
  opacity: 1;
  transform: translateX(0);
}


/*  end hero 2 */


/* hero 3 */

/* ================== SECTION 3: WHAT WE DO ================== */
.section-light {
  background: #181818;
  padding: 5rem 0;
  color: #f5f5f5;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}
.service-card {
  background: #1f1f2b;
  border-radius: 16px;
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(147, 51, 234, 0.15);
  box-shadow: 0 0 14px rgba(147, 51, 234, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.4);
  background: linear-gradient(145deg, #1f1f2b, #222234);
}
.service-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #9333ea;
  background: rgba(147, 51, 234, 0.08);
  padding: 1rem;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(147, 51, 234, 0.3);
}
.service-card h3 {
  font-size: 1.2rem;
  color: #f5f5f5;
  margin-bottom: 0.5rem;
}
.service-card p {
  color: #cfcfcf;
  font-size: 0.95rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .services-grid {
    padding: 0 1rem;
  }
}


/* js ani  */
.scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}
.scroll-fade.appear {
  opacity: 1;
  transform: translateY(0);
}

/* end HEro 3 */


/* hero 4 */

/* ================== SECTION 4: PRICING PACKAGES ================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}
.pricing-card {
  background: #1f1f2b;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(147, 51, 234, 0.15);
  box-shadow: 0 0 14px rgba(147, 51, 234, 0.15);
  transition: all 0.3s ease;
  text-align: center;
}
.pricing-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 22px rgba(147, 51, 234, 0.4);
}
.pricing-card.highlight {
  background: linear-gradient(145deg, #5B21B6, #9333EA);
  border: 2px solid #9333EA;
}
.pricing-card.highlight h3,
.pricing-card.highlight .price {
  color: #ffffff;
}
.pricing-card h3 {
  font-size: 1.6rem;
  color: #f5f5f5;
  margin-bottom: 0.5rem;
}
.pricing-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: #9333EA;
  margin-bottom: 1.2rem;
}
.features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  text-align: left;
}
.features li {
  margin-bottom: 0.7rem;
  color: #cfcfcf;
  font-size: 0.95rem;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.features i {
  color: #38bdf8;
}

/* WhatsApp Button (Reuse from before) */
.full-width {
  display: inline-block;
  width: 100%;
  text-align: center;
}

/* js ani  */
.scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}
.scroll-fade.appear {
  opacity: 1;
  transform: translateY(0);
}

/* end Hero 4 */

/* hero 5 */

/* ================== SECTION 5: CUSTOM PLAN ================== */
.custom-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: #1f1f2b;
  border-radius: 16px;
  box-shadow: 0 0 14px rgba(147, 51, 234, 0.2);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.form-grid label {
  background: rgba(255,255,255,0.04);
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(147, 51, 234, 0.2);
  color: #f5f5f5;
  cursor: pointer;
  display: block;
  transition: all 0.3s ease;
}
.form-grid label:hover {
  background: rgba(147, 51, 234, 0.1);
  transform: scale(1.02);
}
input[type="checkbox"] {
  margin-right: 0.8rem;
}

.total-box {
  margin-top: 2rem;
  text-align: center;
}
.total-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
#whatsappQuote {
  display: inline-block;
  margin-top: 1rem;
}


/* CTA */
/* Custom Project CTA */
.custom-contact-box {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px dashed rgba(147, 51, 234, 0.4);
}
.custom-contact-box h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 0.4rem;
}
.custom-contact-box p {
  font-size: 1rem;
  color: #cfcfcf;
  margin-bottom: 1rem;
}
.custom-contact-box .btn-glow {
  display: inline-block;
  padding: 0.8rem 1.4rem;
}



/* end hero 5 */


/* hero 6 */

/* ================== SECTION 6: TESTIMONIALS (PROFESSIONAL) ================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  padding: 0 2rem;
  max-width: 1200px;
  margin: auto;
}
.testimonial-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(147, 51, 234, 0.2);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 16px rgba(147, 51, 234, 0.15);
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}
.testimonial-box.appear {
  opacity: 1;
  transform: translateY(0);
}
.line-anim {
  height: 4px;
  width: 80px;
  background: #9333EA;
  margin-bottom: 1rem;
  animation: growLine 0.8s ease forwards;
}
.testimonial-box.appear .line-anim {
  animation: growLine 0.8s ease forwards;
}
@keyframes growLine {
  0% { width: 0; opacity: 0; }
  100% { width: 80px; opacity: 1; }
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.client-info img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #9333EA;
}
.client-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #f5f5f5;
}
.client-info .role {
  font-size: 0.85rem;
  color: #b5b5b5;
}
.stars {
  font-size: 1rem;
  color: #facc15;
}
.review {
  font-size: 1rem;
  line-height: 1.5;
  color: #dddddd;
}
@media screen and (max-width: 768px) {
  .testimonial-grid {
    padding: 0 1rem;
  }
}

.icon-avatar {
  width: 48px;
  height: 48px;
  background: #9333ea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}
.icon-avatar svg {
  width: 24px;
  height: 24px;
  fill: white;
}



/* Hero 7 */

/* ================== SECTION 7: FINAL CTA ================== */
.section-gradient {
  background: linear-gradient(135deg, #5B21B6, #9333EA);
  color: #f5f5f5;
  padding: 4rem 2rem;
  text-align: center;
}
.cta-center h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.cta-center p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.final-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-text h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
}
.cta-text p {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.5;
  margin-top: 0.5rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

.btn-glow-lg,
.btn-glass-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  min-width: 240px;
}

.btn-glow-lg {
  background: #1f1f2b;
  color: white;
  box-shadow: 0 0 16px rgba(147, 51, 234, 0.4);
}
.btn-glow-lg:hover {
  transform: scale(1.05);
  background: #2a2a3d;
}

.btn-glass-lg {
  border: 2px solid white;
  color: white;
  background: transparent;
  backdrop-filter: blur(8px);
}
.btn-glass-lg:hover {
  background: rgba(255,255,255,0.1);
  transform: scale(1.05);
}

.spot-counter {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #ffeb3b;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  padding: 0.6rem 1rem;
  border-radius: 8px;
}
.spot-counter i {
  color: #ffeb3b;
}

/* Mobile Optimization */
@media screen and (max-width: 480px) {
  .btn-glow-lg, .btn-glass-lg {
    min-width: 100%;
  }
}


/* Hero 8 */

/* ================== SUPER PROFESSIONAL FOOTER ================== */
.footer-pro {
  background: #0f0f15;
  color: #cccccc;
  padding: 3rem 1.5rem 2rem;
  font-size: 0.95rem;
  position: relative;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 2rem;
}
.footer-left h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.footer-left p {
  color: #bbbbbb;
  max-width: 280px;
}

.footer-center {
  display: flex;
  align-items: center;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin: 0.5rem 0;
}
.footer-links a {
  color: #999;
  text-decoration: none;
  transition: 0.3s ease;
}
.footer-links a:hover {
  color: #9333EA;
  text-decoration: underline;
}

.footer-right h4 {
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.social-icons a {
  margin-right: 1rem;
  font-size: 1.3rem;
  color: #ffffff;
  transition: 0.3s ease;
}
.social-icons a:hover {
  color: #9333EA;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  color: #777;
  font-size: 0.9rem;
}

.footer-pro {
  background: rgba(15, 15, 21, 0.7);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  transition: 0.3s ease;
}
.social-icons a:hover {
  background: #9333ea;
  transform: scale(1.1);
}
.social-icons svg {
  fill: white;
  width: 22px;
  height: 22px;
}



/* back to TOP */
/* ✅ BACK TO TOP BUTTON */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 25px;
  background: #9333ea;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 14px rgba(147, 51, 234, 0.4);
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 999;
}
.back-to-top:hover {
  background: #7e22ce;
  transform: scale(1.1) rotate(-10deg);
}
.back-to-top svg {
  width: 22px;
  height: 22px;
  stroke: white;
}
