* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(
      rgba(4, 10, 20, 0.78),
      rgba(4, 10, 20, 0.88)
    ),
    url("./images/boosthub-bg.png") center center / cover fixed no-repeat;

  min-height: 100vh;
  color: #fff;
  overflow-x: hidden;
}


/* =========================
   HEADER
========================= */

header {
  padding: 16px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.95);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #FFD700;
}

.logo span {
  color: #FF8C00;
}

.logo small {
  color: #FFD700;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.7;
}

nav a {
  color: #c4c4d4;
  text-decoration: none;
  margin-left: 28px;
  font-weight: 500;
  transition: 0.3s;
  font-size: 15px;
}

nav a:hover {
  color: #FFD700;
}

nav a i {
  color: #FFD700;
  margin-right: 6px;
}


/* =========================
   HERO
========================= */

.hero {
  position: relative;

  /* SMALLER THAN BEFORE */
  min-height: 540px;

  padding: 70px 7%;

  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      rgba(4, 10, 20, 0.55),
      rgba(4, 10, 20, 0.72)
    ),
    url("./images/boosthub-bg.png") center center / cover no-repeat;
}


/* OPTIONAL HERO IMAGE */

.hero .hero-bg {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  z-index: 0;
}


/* HERO DARK OVERLAY */

.hero .hero-overlay {
  position: absolute;
  inset: 0;

  background: rgba(3, 8, 18, 0.55);

  z-index: 1;
}


/* HERO CONTENT */

.hero .hero-content {
  position: relative;
  z-index: 5;
  max-width: 800px;
}


/* TAG */

.tag {
  display: inline-block;

  background: rgba(255, 215, 0, 0.1);

  border: 1px solid rgba(255, 215, 0, 0.3);

  padding: 8px 20px;

  border-radius: 50px;

  color: #FFD700;

  font-size: 14px;

  margin-bottom: 20px;

  font-weight: 500;
}

.tag i {
  color: #FFD700;
  margin-right: 8px;
}


/* HERO TITLE */

.hero h1 {
  font-size: 54px;
  max-width: 800px;

  line-height: 1.1;

  font-weight: 800;

  color: #ffffff;
}

.hero h1 span {
  background:
    linear-gradient(
      135deg,
      #FFD700,
      #FF8C00
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}


/* HERO TEXT */

.hero p {
  max-width: 600px;

  margin: 20px auto 30px;

  color: #b0b0b0;

  font-size: 18px;

  line-height: 1.7;
}

.hero-buttons {
  margin-top: 10px;
}


/* =========================
   MOVING SOCIAL ICONS
========================= */

.floating-socials {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  overflow: hidden;

  pointer-events: none;

  z-index: 3;
}

.floating-socials i {
  position: absolute;

  font-size: 38px;

  opacity: 0.18;

  pointer-events: none;

  animation:
    socialFloat 5s ease-in-out infinite;
}


/* TIKTOK */

.float1 {
  top: 18%;
  left: 9%;

  color: #ffffff;

  animation-delay: 0s !important;
}


/* WHATSAPP */

.float2 {
  top: 20%;
  right: 10%;

  color: #25D366;

  animation-delay: .7s !important;
}


/* YOUTUBE */

.float3 {
  bottom: 18%;
  left: 14%;

  color: #ff0000;

  animation-delay: 1.4s !important;
}


/* INSTAGRAM */

.float4 {
  bottom: 17%;
  right: 15%;

  color: #E1306C;

  animation-delay: 2.1s !important;
}


/* FACEBOOK */

.float5 {
  top: 48%;
  left: 4%;

  color: #1877F2;

  animation-delay: 2.8s !important;
}


/* HEART */

.float6 {
  top: 50%;
  right: 4%;

  color: #ff426f;

  animation-delay: 3.5s !important;
}


/* FLOAT ANIMATION */

@keyframes socialFloat {

  0% {
    transform:
      translate(0, 0)
      rotate(0deg)
      scale(1);
  }

  25% {
    transform:
      translate(9px, -11px)
      rotate(5deg)
      scale(1.08);
  }

  50% {
    transform:
      translate(-5px, -20px)
      rotate(-5deg)
      scale(1);
  }

  75% {
    transform:
      translate(-10px, -7px)
      rotate(4deg)
      scale(.95);
  }

  100% {
    transform:
      translate(0, 0)
      rotate(0deg)
      scale(1);
  }
}


/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-block;

  padding: 14px 32px;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 700;

  margin: 6px;

  transition: 0.3s;

  font-size: 15px;

  border: none;

  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.primary {
  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #9333ea 0%,
      #7c3aed 25%,
      #2563eb 65%,
      #06b6d4 100%
    );

  box-shadow:
    0 8px 25px rgba(124, 58, 237, 0.35),
    0 0 20px rgba(6, 182, 212, 0.20);
}

.primary:hover {
  background:
    linear-gradient(
      135deg,
      #a855f7,
      #6366f1,
      #3b82f6,
      #22d3ee
    );
}

.primary i {
  margin-right: 8px;
}

.secondary {
  color: #FFD700;

  border: 2px solid #FFD700;

  background: transparent;
}

.secondary:hover {
  background: rgba(255, 215, 0, 0.1);

  border-color: #FF8C00;

  color: #FF8C00;
}

.secondary i {
  margin-right: 8px;
}


/* =========================
   SERVICES
========================= */

.services {
  padding: 70px 7%;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
}

.section-title h2 span {
  background:
    linear-gradient(
      135deg,
      #FFD700,
      #FF8C00
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.section-title p {
  color: #b0b0b0;

  margin-top: 10px;

  font-size: 16px;
}

.service-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 24px;

  max-width: 1150px;

  margin: auto;
}

.card {
  background:
    rgba(255, 215, 0, 0.03);

  border:
    1px solid rgba(255, 215, 0, 0.10);

  padding: 30px 24px;

  border-radius: 20px;

  transition: 0.4s;
}

.card:hover {
  transform: translateY(-8px);

  border-color: #FFD700;

  background:
    rgba(255, 215, 0, 0.06);
}

.card .icon {
  font-size: 40px;

  margin-bottom: 18px;

  display: block;

  color: #FFD700;
}

.card h3 {
  font-size: 18px;

  margin-bottom: 10px;

  font-weight: 700;

  color: #ffffff;
}

.card p {
  color: #b0b0b0;

  line-height: 1.7;

  font-size: 14px;
}

.card a {
  display: inline-block;

  margin-top: 18px;

  color: #FFD700;

  text-decoration: none;

  font-weight: 600;

  font-size: 14px;
}


/* =========================
   WHY SECTION
========================= */

.why {
  padding: 70px 7%;

  text-align: center;

  background:
    rgba(10, 10, 10, 0.80);
}

.why h2 {
  font-size: 34px;

  font-weight: 800;

  margin-bottom: 10px;

  color: #ffffff;
}

.why h2 span {
  background:
    linear-gradient(
      135deg,
      #FFD700,
      #FF8C00
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.why .subtitle {
  color: #b0b0b0;

  margin-bottom: 40px;
}

.features {
  max-width: 950px;

  margin: auto;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 24px;
}

.feature {
  background:
    rgba(255, 215, 0, 0.03);

  border:
    1px solid rgba(255, 215, 0, 0.08);

  padding: 30px 24px;

  border-radius: 16px;
}

.feature i {
  font-size: 40px;

  color: #FFD700;

  display: block;

  margin-bottom: 12px;
}

.feature strong {
  display: block;

  font-size: 17px;

  margin-bottom: 8px;
}

.feature p {
  color: #b0b0b0;

  font-size: 14px;

  line-height: 1.6;
}


/* =========================
   PAGE HERO
========================= */

.page-hero {
  padding: 70px 7% 50px;

  text-align: center;

  background:
    rgba(10, 10, 10, .75);
}

.page-hero h1 {
  font-size: 44px;
  font-weight: 800;
}

.page-hero h1 span {
  background:
    linear-gradient(
      135deg,
      #FFD700,
      #FF8C00
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.page-hero p {
  color: #b0b0b0;

  margin-top: 12px;

  font-size: 17px;
}


/* =========================
   PRICING
========================= */

.pricing {
  padding: 50px 7% 70px;
}

.pricing-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 24px;

  max-width: 1200px;

  margin: auto;
}

.pricing-card {
  background:
    rgba(10, 10, 10, .80);

  border:
    1px solid rgba(255, 215, 0, 0.08);

  border-radius: 20px;

  padding: 30px 24px;

  text-align: center;

  transition: 0.4s;

  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);

  border-color: #FFD700;
}

.pricing-card.featured {
  border-color: #FFD700;
}

.pricing-card.featured .badge {
  background:
    linear-gradient(
      135deg,
      #FFD700,
      #FF8C00
    );

  color: #0a0a0a;
}

.badge {
  background:
    rgba(255, 215, 0, 0.15);

  color: #FFD700;

  padding: 5px 16px;

  border-radius: 50px;

  font-size: 11px;

  font-weight: 700;

  display: inline-block;

  margin-bottom: 14px;

  text-transform: uppercase;
}

.pricing-card .platform-icon {
  font-size: 45px;

  margin-bottom: 12px;

  display: block;
}

.pricing-card h3 {
  font-size: 18px;

  font-weight: 700;

  color: #ffffff;
}

.price {
  font-size: 28px;

  font-weight: 800;

  color: #FFD700;

  margin: 14px 0 18px;
}

.pricing-card ul {
  list-style: none;

  margin: 16px 0 22px;

  text-align: left;
}

.pricing-card ul li {
  padding: 9px 0;

  color: #b0b0b0;

  font-size: 14px;

  border-bottom: none;
}

.pricing-card ul li i {
  color: #22c55e !important;

  margin-right: 9px;

  text-shadow:
    0 0 7px rgba(34, 197, 94, 0.75),
    0 0 14px rgba(34, 197, 94, 0.35);
}

.pricing-card .fa-check,
.pricing-card .fa-check-circle,
.pricing-card .fa-circle-check {
  color: #22c55e !important;
}

.pricing-card .check-icon {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 22px;
  height: 22px;

  margin-right: 9px;

  border-radius: 50%;

  background: #22c55e !important;

  color: #ffffff !important;

  box-shadow:
    0 0 10px rgba(34, 197, 94, 0.55);
}

.pricing-card .btn {
  width: 100%;

  text-align: center;

  padding: 12px;

  font-size: 14px;
}


/* =========================
   CONTACT
========================= */

.contact-section {
  padding: 50px 7% 70px;
}

.contact-container {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 50px;

  max-width: 1100px;

  margin: auto;
}

.contact-form,
.contact-info {
  background:
    rgba(10, 10, 10, .80);

  border:
    1px solid rgba(255, 215, 0, 0.08);

  padding: 40px;

  border-radius: 20px;
}

.contact-form h2,
.contact-info h3 {
  color: #ffffff;

  margin-bottom: 24px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;

  padding: 14px 16px;

  margin-bottom: 16px;

  border:
    1px solid rgba(255, 215, 0, 0.1);

  border-radius: 12px;

  background:
    rgba(255,255,255,0.03);

  color: #ffffff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;

  border-color: #FFD700;
}

.contact-form select option {
  background: #0a0a0a;

  color: #ffffff;
}

.contact-form .btn {
  width: 100%;
}


/* =========================
   ABOUT
========================= */

.about-section {
  padding: 50px 7% 70px;
}

.about-container {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 50px;

  max-width: 1100px;

  margin: auto;
}

.about-text h2 {
  font-size: 24px;

  margin: 28px 0 12px;
}

.about-text h2:first-child {
  margin-top: 0;
}

.about-text h2 i {
  color: #FFD700;

  margin-right: 10px;
}

.about-text p,
.about-text ul li {
  color: #b0b0b0;

  line-height: 1.8;
}

.about-text ul {
  list-style: none;

  margin-top: 12px;
}

.about-text ul li i {
  color: #22c55e;

  margin-right: 10px;
}


/* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp-float {
  position: fixed;

  bottom: 28px;
  right: 28px;

  background: #25D366;

  color: #ffffff;

  width: 58px;
  height: 58px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 32px;

  text-decoration: none;

  box-shadow:
    0 6px 25px rgba(37, 211, 102, 0.40),
    0 0 20px rgba(37, 211, 102, 0.25);

  transition: 0.3s;

  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}


/* =========================
   FOOTER
========================= */

footer {
  text-align: center;

  padding: 30px;

  color: #666;

  background:
    rgba(10,10,10,.80);

  border-top:
    1px solid rgba(255, 215, 0, 0.08);

  font-size: 14px;
}


/* =========================
   TABLET
========================= */

@media(max-width: 850px) {

  nav {
    display: none;
  }

  .hero {
    min-height: 470px;

    padding: 55px 6%;
  }

  .hero h1 {
    font-size: 38px;
  }

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

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

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

  .contact-container,
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-image {
    display: none;
  }
}


/* =========================
   PHONE
========================= */

@media(max-width: 520px) {

  header {
    padding: 14px 5%;
  }

  .logo {
    font-size: 21px;
  }


  /* SMALL HERO */

  .hero {
    min-height: 390px;

    padding:
      32px 6% 36px;
  }

  .tag {
    padding: 6px 14px;

    font-size: 12px;

    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: 30px;

    line-height: 1.08;
  }

  .hero p {
    max-width: 330px;

    margin:
      15px auto 18px;

    font-size: 14px;

    line-height: 1.5;
  }

  .hero-buttons {
    margin-top: 5px;
  }

  .btn {
    padding: 12px 20px;

    font-size: 14px;
  }


  /* MOVING ICONS ON PHONE */

  .floating-socials i {
    font-size: 25px;

    opacity: .18;

    animation-duration: 4.5s;
  }

  .float1 {
    top: 9%;
    left: 5%;
  }

  .float2 {
    top: 11%;
    right: 5%;
  }

  .float3 {
    bottom: 9%;
    left: 6%;
  }

  .float4 {
    bottom: 9%;
    right: 7%;
  }

  .float5 {
    top: 48%;
    left: 2%;
  }

  .float6 {
    top: 49%;
    right: 2%;
  }


  /* SERVICES */

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

  .services {
    padding: 50px 6%;
  }


  /* PRICING */

  .pricing {
    padding:
      30px 5% 60px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .pricing-card {
    padding: 27px 22px;
  }


  /* CONTACT */

  .contact-form,
  .contact-info {
    padding: 24px;
  }


  /* WHATSAPP */

  .whatsapp-float {
    width: 50px;
    height: 50px;

    font-size: 26px;

    bottom: 18px;
    right: 18px;
  }


  .section-title h2 {
    font-size: 28px;
  }

  .page-hero h1 {
    font-size: 32px;
  }
}


/* ACCESSIBILITY */

@media(prefers-reduced-motion: reduce) {

  .floating-socials i {
    animation: none;
  }

}