:root {
  --color-primary: #ff69b4; /* Hot pink - matches logo text */
  --color-secondary: #9b4dca; /* Purple - matches logo gradient */
  --color-gradient: linear-gradient(135deg, #ff69b4 0%, #9b4dca 100%);
  --color-neutral: #fdf2f8; /* Very soft pink - warm, clean */
  --color-accent: #e040fb; /* Bright magenta accent */
  --color-dark: #4a1942; /* Deep purple-brown for text */
  --color-text: #5c3054; /* Muted purple for body text */
  --color-light-text: #ffffff;
  --grain-opacity: 0.03;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
  padding: 0;
  background-color: var(--color-neutral);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Grain Texture Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: var(--grain-opacity);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 9998;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padded {
  padding: 60px 0;
}

.text-center {
  text-align: center;
}

h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-dark);
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 40px;
  text-align: center;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 15px;
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-primary);
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary {
  background: var(--color-gradient);
  color: var(--color-light-text);
  border: none;
  box-shadow: 0 4px 15px rgba(155, 77, 202, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(155, 77, 202, 0.4);
}

.btn-secondary {
  background-color: var(--color-light-text);
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

.btn-secondary:hover {
  background-color: var(--color-secondary);
  color: var(--color-light-text);
  transform: translateY(-2px);
}

.btn-phone {
  background: var(--color-gradient);
  color: var(--color-light-text);
  border: none;
  box-shadow: 0 4px 15px rgba(155, 77, 202, 0.25);
}

.btn-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(155, 77, 202, 0.35);
}

/* Header - Hidden until scroll past hero, uses fixed positioning */
.sticky-header {
  background-color: rgba(253, 242, 248, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  border-bottom: 2px solid rgba(255, 105, 180, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(155, 77, 202, 0.08);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticky-header.visible {
  transform: translateY(0);
}

.sticky-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.logo::before,
.logo::after {
  display: none !important;
  content: none !important;
}

.logo img {
  height: 40px;
  width: auto;
  margin-right: 10px;
  display: block;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.logo span {
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sticky-header nav a {
  color: var(--color-text);
  text-decoration: none;
  margin: 0 15px;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
}

.sticky-header nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gradient);
  transition: width 0.3s ease;
}

.sticky-header nav a:hover::after {
  width: 100%;
}

.sticky-header nav a:hover {
  color: var(--color-primary);
}

.header-cta {
  display: flex;
  align-items: center;
}

/* ===== HERO - Immersive Logo-First ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #f5d0fe 100%);
  padding: 20px 20px 40px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(155, 77, 202, 0.06) 0%,
    transparent 65%
  );
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: "✦";
  position: absolute;
  font-size: 2.5rem;
  color: rgba(255, 105, 180, 0.25);
  top: 8%;
  right: 8%;
  animation: sparkle 3s ease-in-out infinite;
  z-index: 5;
  pointer-events: none;
}

@keyframes sparkle {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2) rotate(10deg);
    opacity: 1;
  }
}

/* Decorative blob shapes */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-blob-1 {
  width: 50vw;
  height: 50vw;
  background: rgba(255, 105, 180, 0.12);
  top: -15%;
  right: -10%;
  animation: blobFloat 9s ease-in-out infinite;
}

.hero-blob-2 {
  width: 40vw;
  height: 40vw;
  background: rgba(155, 77, 202, 0.1);
  bottom: 5%;
  left: -10%;
  animation: blobFloat 11s ease-in-out infinite reverse;
}

@keyframes blobFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -25px) scale(1.05);
  }
}

/* Hero content wrapper - pushed to upper area of screen */
.hero-inner {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 0;
}

/* Hero Logo - Large & Centered, FRONT */
.hero-logo-wrap {
  margin-bottom: 20px;
  opacity: 0;
  transform: scale(0.85);
  animation: logoReveal 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s forwards;
}

@keyframes logoReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-logo {
  max-width: 600px;
  width: 90%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 50px rgba(155, 77, 202, 0.25));
}

/* Tagline below logo */
.hero-tagline {
  opacity: 0;
  transform: translateY(35px);
  animation: taglineReveal 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.4s
    forwards;
}

@keyframes taglineReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  line-height: 1.15;
}

.hero-tagline .subheadline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  max-width: 500px;
  margin: 0 auto 35px auto;
  color: var(--color-text);
}

/* CTA Button */
.btn-hero {
  padding: 16px 40px;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(25px);
  animation: ctaReveal 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.7s
    forwards;
}

@keyframes ctaReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Blob animation on load */
.hero-blob {
  opacity: 0;
  animation: blobReveal 1.5s ease-out forwards;
}
.hero-blob-1 {
  animation-delay: 0.2s;
}
.hero-blob-2 {
  animation-delay: 0.4s;
}
@keyframes blobReveal {
  to {
    opacity: 1;
  }
}

/* Hero sparkle reveal */
.hero::after {
  opacity: 0;
  animation:
    sparkleReveal 1s ease-out 0.6s forwards,
    sparkle 3s ease-in-out 1.6s infinite;
}
@keyframes sparkleReveal {
  to {
    opacity: 0.5;
  }
}

/* ===== Trust Bar ===== */
.trust-bar {
  background: var(--color-gradient);
  color: var(--color-light-text);
  padding: 12px 0;
  text-align: center;
}

.trust-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 15px;
}

.trust-bar span {
  font-weight: 700;
  font-size: 0.95rem;
}

/* ===== Scroll-triggered animations ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Grid Layouts ===== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: #fff;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(155, 77, 202, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 105, 180, 0.3);
  box-shadow: 0 15px 40px rgba(155, 77, 202, 0.15);
}

/* ===== Services Section - Bento Box ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(155, 77, 202, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 105, 180, 0.3);
  box-shadow: 0 15px 40px rgba(155, 77, 202, 0.15);
}
.service-card h3 {
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
  flex-grow: 1;
}
.service-card ul li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
  font-size: 0.95rem;
}
.service-card ul li::before {
  content: "✦";
  color: var(--color-primary);
  position: absolute;
  left: 0;
  font-size: 0.8rem;
  top: 2px;
}
.service-card.primary {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, #fff5f9 0%, #fce7f3 100%);
  border: 2px solid rgba(255, 105, 180, 0.3);
}
.service-card.primary h3 {
  font-size: 1.8rem;
}
.service-note {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
}
.service-note a {
  font-weight: 700;
}

/* ===== About Section ===== */
.content-two-col {
  display: flex;
  gap: 50px;
  align-items: center;
}
.about-text {
  flex: 1;
}
.about-image {
  flex: 1;
  text-align: center;
}
.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(155, 77, 202, 0.2);
  border: 4px solid #fff;
}

/* ===== Testimonials ===== */
.bg-light {
  background: linear-gradient(180deg, #fdf2f8 0%, #fce7f3 100%);
}
.testimonial-card {
  background-color: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(155, 77, 202, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  border-color: rgba(255, 105, 180, 0.3);
  transform: translateY(-3px);
}
.testimonial-card .stars {
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.testimonial-card cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-weight: 700;
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== CTA Section ===== */
.bg-brand-light {
  background: linear-gradient(135deg, #fce7f3 0%, #f5d0fe 100%);
  position: relative;
  overflow: hidden;
}
.bg-brand-light::before {
  content: "💫";
  position: absolute;
  font-size: 8rem;
  opacity: 0.1;
  top: -20px;
  right: -20px;
}
.btn-lg {
  padding: 16px 45px;
  font-size: 1.2rem;
}

/* ===== Footer ===== */
footer {
  background: linear-gradient(135deg, #4a1942 0%, #6b3fa0 100%);
  color: var(--color-light-text);
  padding: 60px 0 20px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h3 {
  color: #ff69b4;
  margin-bottom: 20px;
}
.payment-list {
  font-size: 0.95rem;
  margin-bottom: 10px;
}
footer p,
footer ul li {
  font-size: 0.95rem;
  margin-bottom: 10px;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer a {
  color: var(--color-light-text);
  text-decoration: none;
  transition: all 0.3s ease;
}
footer a:hover {
  color: var(--color-primary);
}
.social-links a {
  margin-right: 15px;
  font-size: 1.1rem;
  display: inline-block;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
}
.small-text {
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0.8;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .sticky-header .container {
    flex-direction: column;
    text-align: center;
  }
  .sticky-header nav {
    margin: 15px 0;
  }
  .header-cta {
    margin-top: 10px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card.primary {
    grid-column: span 2;
    grid-row: span 1;
  }
  .content-two-col {
    flex-direction: column;
  }
  .about-image {
    margin-top: 30px;
  }
  h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
  }
  h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card.primary {
    grid-column: span 1;
  }
  .hero-logo {
    max-width: 400px;
  }
}

@media (max-width: 576px) {
  .trust-bar .container span {
    width: 100%;
    margin-bottom: 10px;
  }
  .sticky-header .logo span {
    display: none;
  }
  .sticky-header .logo img {
    height: 35px;
  }
  .sticky-header nav a {
    margin: 0 8px;
    font-size: 0.85rem;
  }
  .btn-phone {
    font-size: 0.85rem;
    padding: 8px 12px;
  }
  .btn-primary {
    font-size: 0.85rem;
    padding: 8px 12px;
  }
  .hero {
    min-height: 100vh;
    padding: 15px 15px 30px;
  }
  .hero-logo {
    max-width: 100vw;
    width: 100%;
  }
  .hero-tagline h1 {
    font-size: 1.8rem;
  }
  .hero-tagline .subheadline {
    font-size: 0.95rem;
  }
  .section-padded {
    padding: 40px 0;
  }
  .feature-card,
  .testimonial-card {
    padding: 20px 15px;
  }
  .service-card {
    padding: 20px 15px;
  }
  .footer-col {
    text-align: center;
  }
  .social-links a {
    margin: 5px;
  }
}

/* ===== Contact Form ===== */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(155, 77, 202, 0.12);
}

.form-intro {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid rgba(155, 77, 202, 0.15);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-text);
  background: #fff;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(92, 48, 84, 0.4);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239B4DCA' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.form-message {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
}

.form-message.success {
  background: linear-gradient(135deg, #fce7f3 0%, #f5d0fe 100%);
  color: var(--color-dark);
  border: 2px solid rgba(255, 105, 180, 0.3);
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 2px solid #fecaca;
}

@media (max-width: 768px) {
  .contact-form {
    padding: 25px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .contact-form {
    padding: 20px 15px;
    border-radius: 15px;
  }
  .form-intro {
    font-size: 1rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 15px;
  }
}
