:root {
  --color-1: #ff0080;
  --color-2: #ff339c;
  --color-3: #ffd966;
  --color-4: #fff5b3;
  --color-5: #ffffbd;
  --dark: #241421;
  --text: #3a2435;
  --white: #ffffff;
  --soft: #fff8cf;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, var(--color-5), var(--color-4));
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 0, 128, 0.15);
}

.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--color-1);
}

.logo span {
  color: var(--dark);
}

.logo img {
  height: 46px;
  width: auto;
  display: block;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-menu a {
  color: var(--dark);
  transition: 0.2s ease;
}

.main-menu a:hover {
  color: var(--color-1);
}

.nav-cta {
  background: var(--color-1);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(255, 0, 128, 0.25);
}

/* Top scrolling text carousel */
.text-carousel {
  background: var(--color-1);
  color: var(--white);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.text-carousel-inner {
  display: inline-flex;
  gap: 60px;
  animation: scrollText 18s linear infinite;
}

.text-carousel-inner span {
  display: inline-block;
  padding-left: 60px;
}

@keyframes scrollText {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Hero */
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 22px 55px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--color-3);
  color: var(--dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.95;
  color: var(--dark);
  letter-spacing: -2.5px;
  margin-bottom: 22px;
}

h1 strong {
  color: var(--color-1);
}

/* Rotating words inside hero heading */
.rotating-words {
  position: relative;
  display: inline-block;
  min-width: 360px;
  height: 1em;
  vertical-align: bottom;
  color: var(--color-1);
  overflow: hidden;
}

.rotating-words span {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  animation: rotateWords6 18s infinite;
}

.rotating-words span:nth-child(1) {
  animation-delay: 0s;
}

.rotating-words span:nth-child(2) {
  animation-delay: 3s;
}

.rotating-words span:nth-child(3) {
  animation-delay: 6s;
}

.rotating-words span:nth-child(4) {
  animation-delay: 9s;
}

.rotating-words span:nth-child(5) {
  animation-delay: 12s;
}

.rotating-words span:nth-child(6) {
  animation-delay: 15s;
}

@keyframes rotateWords6 {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  5% {
    opacity: 1;
    transform: translateY(0);
  }

  14% {
    opacity: 1;
    transform: translateY(0);
  }

  18% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.hero p {
  font-size: 18px;
  max-width: 580px;
  margin-bottom: 28px;
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--color-1);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(255, 0, 128, 0.28);
}

.btn-primary:hover {
  background: var(--color-2);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border: 2px solid rgba(255, 0, 128, 0.15);
}

/* Old placeholder box, keep this in case you want placeholders again */
.image-placeholder {
  min-height: 380px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 0, 128, 0.18), rgba(255, 217, 102, 0.55)),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.55) 0,
      rgba(255, 255, 255, 0.55) 12px,
      rgba(255, 0, 128, 0.08) 12px,
      rgba(255, 0, 128, 0.08) 24px
    );
  border: 3px dashed rgba(255, 0, 128, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  color: var(--color-1);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 22px 45px rgba(36, 20, 33, 0.12);
}

/* New real hero image */
.hero-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 22px 45px rgba(36, 20, 33, 0.12);
}

/* Sections */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 55px 22px;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.section-title h2 {
  font-size: clamp(30px, 4vw, 46px);
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 0, 128, 0.12);
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 16px 34px rgba(36, 20, 33, 0.08);
}

.card-image {
  height: 190px;
  border-radius: 20px;
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(255, 51, 156, 0.20), rgba(255, 217, 102, 0.55)),
    var(--soft);
  border: 2px dashed rgba(255, 0, 128, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-1);
  font-weight: 900;
  text-align: center;
}

.card h3 {
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 8px;
}

.banner {
  background: linear-gradient(135deg, var(--color-1), var(--color-2));
  color: var(--white);
  border-radius: 34px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: 0 20px 40px rgba(255, 0, 128, 0.25);
}

.banner h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  margin-bottom: 10px;
}

.banner .btn {
  background: var(--color-3);
  color: var(--dark);
}

/* Footer */
.site-footer {
  margin-top: 40px;
  background: var(--dark);
  color: var(--white);
  padding-bottom: 95px;
}

.footer-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-brand {
  font-weight: 900;
  font-size: 22px;
  color: var(--color-3);
}

.footer-menu {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-menu a:hover {
  color: var(--color-3);
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  background: #25d366;
  color: #ffffff;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Mobile */
@media (max-width: 850px) {
  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-menu {
    width: 100%;
    gap: 12px;
    flex-wrap: wrap;
  }

  .text-carousel {
    font-size: 13px;
    padding: 10px 0;
  }

  .text-carousel-inner {
    gap: 34px;
    animation-duration: 16s;
  }

  .text-carousel-inner span {
    padding-left: 34px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 45px;
  }

  .image-placeholder {
    min-height: 280px;
  }

  .hero-image {
    height: 280px;
  }

  .rotating-words {
    min-width: 260px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .banner {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding-bottom: 105px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 18px;
    padding: 10px 18px;
    font-size: 14px;
  }
}

.banner h2 {
    color: #ffffff;
}

.banner h2 .brand-pin {
    color: #faad00;
}