:root {
  --bg-soft: #fff7fb;
  --bg-cream: #fffaf3;
  --pink-light: #f8c8dc;
  --pink: #e889b5;
  --pink-deep: #b04476;
  --rose-dark: #7a294f;
  --plum: #7b2a53;
  --gold: #c9a45c;
  --gold-soft: #f2dfb3;
  --text: #3c2b35;
  --muted: #7c6470;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(176, 68, 118, 0.15);
  --soft-border: 1px solid rgba(201, 164, 92, 0.28);
  --radius-lg: 30px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 6% 16%, rgba(248, 200, 220, 0.62), transparent 28%),
    radial-gradient(circle at 94% 4%, rgba(242, 223, 179, 0.62), transparent 26%),
    radial-gradient(circle at 90% 72%, rgba(248, 200, 220, 0.34), transparent 30%),
    linear-gradient(135deg, var(--bg-soft), var(--bg-cream));
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  position: sticky;
  top: 14px;
  z-index: 20;
}

.header-inner {
  min-height: 86px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.90);
  border: var(--soft-border);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(176, 68, 118, 0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  backdrop-filter: blur(10px);
}

.site-logo {
  width: 104px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  text-decoration: none;
  color: var(--plum);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 11px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
  background: rgba(248, 200, 220, 0.28);
  transform: translateY(-1px);
}

.language-link {
  border: 1px solid rgba(201, 164, 92, 0.45);
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201, 164, 92, 0.45);
  background: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--rose-dark);
  border-radius: 99px;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 26px auto 22px;
  min-height: 620px;
  padding: clamp(34px, 5vw, 64px);
  border: var(--soft-border);
  border-radius: 34px;
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 88% 18%, rgba(248, 200, 220, 0.46), transparent 22%),
    radial-gradient(circle at 76% 82%, rgba(242, 223, 179, 0.52), transparent 27%),
    rgba(255, 255, 255, 0.82);
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.82fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50% 50% 46% 46%;
  opacity: 0.60;
  z-index: 0;
}

.hero::before {
  width: 86px;
  height: 104px;
  background: #f2a6c4;
  top: 58px;
  right: 170px;
}

.hero::after {
  width: 78px;
  height: 98px;
  background: #d8b46f;
  top: 90px;
  right: 92px;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  color: var(--plum);
}

h1 {
  max-width: 680px;
  font-size: clamp(3.1rem, 5.8vw, 5.9rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.15rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.55rem;
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero-text,
.section-heading p,
.section-text,
.info-card p,
.price-card li,
.steps p,
.contact-copy p,
.form-note {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.hero-text {
  max-width: 590px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-deep), var(--pink));
  box-shadow: 0 10px 22px rgba(176, 68, 118, 0.26);
}

.btn-secondary {
  color: var(--rose-dark);
  background: var(--white);
  border: 1px solid rgba(201, 164, 92, 0.45);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-highlights span {
  background: var(--white);
  border: 1px solid rgba(232, 137, 181, 0.26);
  color: var(--rose-dark);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 0.86rem;
}

.hero-visual {
  justify-self: center;
  width: min(430px, 100%);
}

.hero-image-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,247,251,0.92));
  border: var(--soft-border);
  border-radius: 32px;
  padding: 18px;
  box-shadow: 0 18px 38px rgba(122, 41, 79, 0.12);
}

.hero-image-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  background:
    radial-gradient(circle at 25% 20%, rgba(248, 200, 220, 0.75), transparent 32%),
    radial-gradient(circle at 78% 80%, rgba(242, 223, 179, 0.55), transparent 32%),
    var(--white);
}

.price-bubble {
  width: 190px;
  padding: 18px;
  margin: -58px auto 0;
  position: relative;
  z-index: 2;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: var(--soft-border);
  border-radius: 26px;
  box-shadow: 0 14px 28px rgba(122, 41, 79, 0.12);
}

.price-bubble span,
.price-bubble small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.price-bubble strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.3rem;
  line-height: 0.95;
  color: var(--pink-deep);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 22px auto;
  padding: 74px 46px;
  background: rgba(255, 255, 255, 0.80);
  border: var(--soft-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(176, 68, 118, 0.09);
}

.section-soft {
  background: rgba(255, 247, 251, 0.88);
}

.section-heading {
  max-width: 790px;
  text-align: center;
  margin: 0 auto 38px;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.price-card,
.steps article,
.contact-form,
.contact-copy {
  background: var(--white);
  border: 1px solid rgba(232, 137, 181, 0.24);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 28px rgba(122, 41, 79, 0.07);
}

.info-card,
.price-card,
.steps article {
  padding: 30px;
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(242, 223, 179, 0.35);
  color: var(--pink-deep);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.occasion-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.occasion-list span {
  padding: 12px 18px;
  background: var(--white);
  border: 1px solid rgba(201, 164, 92, 0.32);
  border-radius: 999px;
  color: var(--rose-dark);
  font-weight: 800;
  font-size: 0.92rem;
}

.price-card {
  position: relative;
}

.price-card.featured {
  border-color: rgba(176, 68, 118, 0.35);
  transform: translateY(-8px);
}

.badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(242, 223, 179, 0.55);
  color: var(--rose-dark);
  font-weight: 900;
  font-size: 0.8rem;
}

.price {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--pink-deep);
  font-size: 2.9rem;
  margin: 14px 0 20px;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.price-card li::before {
  content: "✦ ";
  color: var(--gold);
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid figure {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(232, 137, 181, 0.24);
  box-shadow: 0 14px 28px rgba(122, 41, 79, 0.07);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background:
    radial-gradient(circle at 25% 20%, rgba(248, 200, 220, 0.75), transparent 32%),
    radial-gradient(circle at 78% 80%, rgba(242, 223, 179, 0.55), transparent 32%),
    var(--white);
}

.gallery-grid figcaption {
  padding: 16px;
  color: var(--rose-dark);
  font-weight: 900;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.steps span {
  display: inline-block;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: start;
}

.contact-copy,
.contact-form {
  padding: 34px;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-lines a {
  color: var(--rose-dark);
  text-decoration: none;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 7px;
}

label {
  color: var(--rose-dark);
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(201, 164, 92, 0.38);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 250, 253, 0.9);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(232, 137, 181, 0.45);
  border-color: var(--pink);
}

textarea {
  resize: vertical;
}

.form-button {
  width: fit-content;
  margin-top: 4px;
}

.form-note {
  font-size: 0.9rem;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 22px auto 34px;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.72);
  border: var(--soft-border);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--muted);
}

.footer-logo {
  width: 128px;
  margin: 0 auto 14px;
}

.footer-language {
  margin-top: 8px;
}

.footer-language a {
  color: var(--rose-dark);
  font-weight: 900;
}

@media (max-width: 980px) {
  .header-inner {
    border-radius: 26px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    padding: 16px;
    background: rgba(255, 255, 255, 0.97);
    border: var(--soft-border);
    border-radius: 24px;
    box-shadow: 0 16px 32px rgba(122, 41, 79, 0.12);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 247, 251, 0.82);
  }

  .hero,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    text-align: center;
    min-height: auto;
  }

  .hero-copy,
  .hero-text {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-highlights,
  .occasion-list {
    justify-content: center;
  }

  .hero::before {
    top: 34px;
    right: 100px;
  }

  .hero::after {
    top: 62px;
    right: 38px;
  }

  .card-grid.three,
  .gallery-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .section {
    padding: 56px 24px;
  }

  .form-button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(100% - 20px, 1180px);
  }

  .header-inner {
    min-height: 72px;
    padding: 8px 14px;
  }

  .site-logo {
    width: 88px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero {
    padding: 38px 20px;
  }

  .section {
    padding: 46px 18px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .price-bubble strong {
    font-size: 2.8rem;
  }
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 12px 0 18px;
}

.social-icon {
  width: 26px;
  height: 26px;
  fill: var(--rose-dark);
  transition: transform 0.2s ease, fill 0.2s ease;
}

.footer-social a:hover .social-icon {
  transform: translateY(-2px);
  fill: var(--pink-deep);
}

/* Header Social Icons */
.nav-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 6px;
}

.social-icon.small {
  width: 18px;
  height: 18px;
  fill: var(--rose-dark);
  transition: transform 0.2s ease, fill 0.2s ease;
}

.nav-social a:hover .social-icon {
  transform: translateY(-1px);
  fill: var(--pink-deep);
}

/* Share Button */
.share-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201, 164, 92, 0.45);
  background: var(--white);
  color: var(--rose-dark);
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.share-btn:hover {
  background: rgba(248, 200, 220, 0.3);
}
/* =========================
   PROCESS STEPS HOVER EFFECT
========================= */

.steps article {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.steps article:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 22px 45px rgba(122, 41, 79, 0.16);
}

/* Optional: animate number slightly */
.steps article span {
  transition: transform 0.25s ease, color 0.25s ease;
}

.steps article:hover span {
  transform: translateY(-2px);
  color: var(--pink-deep);
}
/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 32px rgba(0,0,0,0.25);
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  fill: white;
}

/* Mobile adjustment */
@media (max-width: 560px) {
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 54px;
    height: 54px;
  }
}