:root {
  --primary: #C61162;
  --primary-hover: #9A0E4C;
  --primary-2: #EAA552;
  --secondary: #FAE6EF;
  --neutral-white: #FFFFFF;
  --neutral-lightest: #F6F9FC;
  --neutral-lighter: #F2F2F2;
  --neutral-dark: #8F9BB3;
  --neutral-darkest: #303746;
  --font-family-base: Poppins, sans-serif;
  --font-family-serif: Playfair Display, Merriweather, Georgia, serif;
  --gradient-primary: linear-gradient(135deg, #C61162 0%, #EAA552 100%);
  --body-size: clamp(0.75rem, 1.1vw, 1.25rem);
  --body-lh: 160%;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: var(--body-size);
  line-height: var(--body-lh);
  color: #303746;
  background-color: #FFFFFF;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3.875rem);
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 0.875rem;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2.25rem);
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 0.625rem;
}

h5 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

h6 {
  font-size: clamp(0.875rem, 1.2vw, 1.1rem);
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

a {
  color: #C61162;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #FFFFFF;
}

.tagline {
  line-height: 150%;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0.05em;
  color: #8F9BB3;
}

.button {
  display: inline-block;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 0.625rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  text-align: center;
}
.button:hover {
  transform: scale(1.04);
}
.button--primary {
  background-color: #C61162;
  color: #FFFFFF;
}
.button--primary:hover {
  background-color: #9A0E4C;
  transform: scale(1.04);
}
.button--secondary {
  background-color: #FAE6EF;
  color: #C61162;
}
.button--secondary:hover {
  background-color: #F1BBD3;
  transform: scale(1.04);
}
.button--primary-2 {
  background-color: #EAA552;
  color: #FFFFFF;
}
.button--primary-2:hover {
  background-color: #E58D25;
  transform: scale(1.04);
}
.button--gradient {
  background: var(--gradient-primary);
  color: #FFFFFF;
}
.button--gradient:hover {
  opacity: 0.9;
  transform: scale(1.04);
}
.button--outline {
  background: transparent;
  border: 2px solid #C61162;
  color: #C61162;
}
.button--outline:hover {
  background-color: #C61162;
  color: #FFFFFF;
  transform: scale(1.04);
}
@media (max-width: 767px) {
  .button {
    border-radius: 0.625rem;
    font-size: 0.875rem;
    padding: 1.125rem 1.5rem;
    width: 100%;
  }
}

input[type=text],
input[type=email],
input[type=search],
input[type=url],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #F2F2F2;
  border-radius: 0.375rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #303746;
  background-color: #FFFFFF;
  transition: border-color 0.2s ease;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=url]:focus,
textarea:focus {
  outline: none;
  border-color: #C61162;
  box-shadow: 0 0 0 2px rgba(198, 17, 98, 0.1);
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=url]::-moz-placeholder,
textarea::-moz-placeholder {
  color: #8F9BB3;
  opacity: 0.7;
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #8F9BB3;
  opacity: 0.7;
}
input[type=text]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder,
input[type=search]::-ms-input-placeholder,
input[type=url]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #8F9BB3;
  opacity: 0.7;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=search]::placeholder,
input[type=url]::placeholder,
textarea::placeholder {
  color: #8F9BB3;
  opacity: 0.7;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.logo-wrapper .logo-full {
  display: block;
  width: auto;
  height: clamp(32px, 3vw, 52px);
}
@media (max-width: 767px) {
  .logo-wrapper .logo-full {
    display: none;
  }
}
.logo-wrapper .logo-icon {
  display: none;
  width: 40px;
  height: 40px;
}
@media (max-width: 767px) {
  .logo-wrapper .logo-icon {
    display: block;
  }
}

.site-header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 4px rgba(242, 242, 242, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .site-header .container {
    padding: 0.75rem 1rem;
  }
}
@media (max-width: 768px) {
  .site-header .container {
    padding: 1rem 2rem;
    max-width: 100% !important;
  }
}
.site-header .logo {
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .site-header .logo {
    max-width: 120px;
  }
}
@media (max-width: 767px) {
  .site-header .logo {
    margin: 0 auto;
    order: 1;
    max-width: 110px;
  }
}
.site-header .logo img {
  height: auto;
  transition: opacity 0.2s ease;
}
.site-header .logo img:hover {
  opacity: 0.8;
}
.site-header .nav-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .site-header .nav-wrapper {
    margin-left: 0;
    order: 1;
  }
}
.site-header .nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 1400px) {
  .site-header .nav-menu {
    gap: 1.5rem;
  }
}
@media (max-width: 1024px) {
  .site-header .nav-menu {
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .site-header .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.85, 0, 0.15, 1);
    z-index: 1000;
  }
  .site-header .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  .site-header .nav-menu.active li {
    opacity: 1;
    transform: translateY(0);
  }
  .site-header .nav-menu li {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.85, 0, 0.15, 1);
  }
  .site-header .nav-menu li:nth-child(1) {
    transition-delay: 0.15s;
  }
  .site-header .nav-menu li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .site-header .nav-menu li:nth-child(3) {
    transition-delay: 0.25s;
  }
  .site-header .nav-menu li:nth-child(4) {
    transition-delay: 0.3s;
  }
  .site-header .nav-menu li:nth-child(5) {
    transition-delay: 0.35s;
  }
  .site-header .nav-menu li:nth-child(6) {
    transition-delay: 0.4s;
  }
  .site-header .nav-menu li:nth-child(7) {
    transition-delay: 0.45s;
  }
  .site-header .nav-menu li:nth-child(8) {
    transition-delay: 0.5s;
  }
}
.site-header .nav-menu .nav-link {
  display: inline-block;
  text-decoration: none;
  color: var(--neutral-darkest);
  font-weight: 500;
  font-size: 1.125rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .site-header .nav-menu .nav-link {
    font-size: var(--body-size);
    padding: 0.5rem 0.75rem;
  }
}
.site-header .nav-menu .nav-link:hover, .site-header .nav-menu .nav-link.active {
  color: var(--primary);
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .site-header .nav-menu .nav-link {
    font-size: 1.75rem;
    font-weight: 600;
    padding: 1rem;
    width: 100%;
  }
  .site-header .nav-menu .nav-link:hover, .site-header .nav-menu .nav-link.active {
    color: var(--primary);
    transform: scale(1.1);
  }
}
.site-header .nav-menu .nav-link.contact-btn {
  background-color: var(--primary);
  color: var(--neutral-white);
  padding: 0.875rem 1.5rem;
  border-radius: 0.625rem;
  margin-left: 1rem;
}
@media (max-width: 1024px) {
  .site-header .nav-menu .nav-link.contact-btn {
    padding: 0.625rem 1.25rem;
    font-size: var(--body-size);
    margin-left: 0.5rem;
  }
}
@media (max-width: 767px) {
  .site-header .nav-menu .nav-link.contact-btn {
    margin-left: 0;
    margin-top: 2rem;
    width: auto;
    padding: 1.25rem 3rem;
    font-size: var(--body-size);
    box-shadow: 0 10px 20px rgba(198, 17, 98, 0.2);
    border-radius: 0.625rem;
  }
}
.site-header .nav-menu .nav-link.contact-btn:hover {
  background-color: var(--primary-hover);
  color: var(--neutral-white);
  transform: scale(1.04);
}
.site-header .hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: var(--neutral-lightest);
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 1001;
  position: relative;
}
.site-header .hamburger .hamburger-line {
  display: block;
  height: 2px;
  width: 22px;
  background-color: var(--neutral-darkest);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  position: absolute;
}
.site-header .hamburger .hamburger-line:nth-child(1) {
  transform: translateY(-6px);
}
.site-header .hamburger .hamburger-line:nth-child(2) {
  width: 16px;
  transform: translateX(-3px);
}
.site-header .hamburger .hamburger-line:nth-child(3) {
  transform: translateY(6px);
}
.site-header .hamburger:hover {
  background-color: var(--secondary);
}
.site-header .hamburger:hover .hamburger-line {
  background-color: var(--primary);
}
@media (max-width: 767px) {
  .site-header .hamburger {
    display: flex;
  }
}
.site-header .hamburger.active {
  background-color: var(--primary);
}
.site-header .hamburger.active .hamburger-line {
  background-color: var(--neutral-white);
  width: 22px;
  transform: translateX(0);
}
.site-header .hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg);
}
.site-header .hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}
.site-header .hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg);
}
.site-header body.menu-open {
  overflow: hidden;
}

main {
  row-gap: 2rem;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: clamp(725px, 82vw, 1320px) !important;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 2rem);
}
@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
    max-width: 100% !important;
  }
}

.hero {
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  position: relative;
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 4vw;
    padding: 4rem 0;
  }
}
@media (max-width: 1024px) {
  .hero {
    padding: 3rem 0;
    gap: 0rem;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 2rem;
  }
}
.hero .hero-content {
  flex: 1.2;
}
@media (max-width: 767px) {
  .hero .hero-content {
    flex: none;
  }
}
.hero .hero-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 5.5rem);
  line-height: 110%;
  background: linear-gradient(135deg, #C61162 0%, #EAA552 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 1.5rem 0;
  width: 100%;
  max-width: clamp(350px, 42vw, 800px);
}
@media (max-width: 767px) {
  .hero .hero-title {
    font-size: 2rem;
    max-width: 100%;
    line-height: 1.2;
  }
}
@supports not (-webkit-background-clip: text) {
  .hero .hero-title {
    -webkit-text-fill-color: #FFFFFF;
  }
}
.hero .tagline {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 150%;
  color: #303746;
  margin: 0 0 clamp(1rem, 2vw, 2.5rem) 0;
  max-width: clamp(300px, 36vw, 700px);
  font-size: clamp(0.875rem, 1vw, 1.225rem);
}
@media (max-width: 767px) {
  .hero .tagline {
    font-size: 1rem;
    max-width: 100%;
    margin: 0 0 1rem 0;
  }
}
.hero .app-buttons {
  display: flex;
  gap: 1rem;
}
@media (max-width: 767px) {
  .hero .app-buttons {
    flex-direction: row;
    gap: 0.5rem;
  }
}
.hero .app-buttons a {
  display: inline-block;
  transition: transform 0.2s ease;
}
.hero .app-buttons a:hover {
  transform: scale(1.04);
}
@media (max-width: 767px) {
  .hero .app-buttons img {
    width: 138px;
    height: auto;
  }
}
.hero .hero-image-wrapper {
  flex: 0.8;
  position: relative;
  overflow: visible !important;
  max-width: clamp(360px, 34vw, 580px);
}
@media (min-width: 768px) {
  .hero .hero-image-wrapper {
    text-align: right;
  }
}
@media (max-width: 767px) {
  .hero .hero-image-wrapper {
    order: 2;
    max-width: 300px;
    margin: 0 auto;
  }
}
.hero .hero-image-wrapper .hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .hero .hero-image-wrapper .hero-image {
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }
}
.hero .hero-closing-bubble {
  background: #FAE6EF;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  max-width: 315px;
  animation: bubbleFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
  position: absolute;
  bottom: -26px;
  right: -80px;
  z-index: 1;
  text-align: left;
  max-width: clamp(245px, 24vw, 400px);
  right: clamp(-30px, -2vw, -80px);
  bottom: clamp(-40px, -2vw, -26px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  cursor: default;
}
@keyframes bubbleFadeIn {
  from {
    opacity: 0;
    margin-bottom: -20px;
  }
  to {
    opacity: 1;
    margin-bottom: 0;
  }
}
.hero .hero-closing-bubble:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.hero .hero-closing-bubble:hover .heart-icon {
  transform: scale(1.15) rotate(8deg);
}
@media (max-width: 767px) {
  .hero .hero-closing-bubble {
    margin: 0 auto;
    max-width: 242px;
    flex-direction: row;
    right: 5px;
    border-radius: 0.625rem;
    padding: 0.625rem;
  }
  .hero .hero-closing-bubble:hover {
    transform: scale(1.03) translateY(-3px);
  }
}
.hero .hero-closing-bubble .heart-icon {
  width: 48px;
  height: 48px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1366px) {
  .hero .hero-closing-bubble .heart-icon {
    width: 35px;
    height: 35px;
  }
}
.hero .hero-closing-bubble p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 140%;
  color: #303746;
  margin: 0;
}
@media (max-width: 767px) {
  .hero .hero-closing-bubble p {
    font-size: 0.75rem;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stats {
  background: linear-gradient(135deg, #C61162 0%, #EAA552 100%);
  padding: 4rem 7.063rem;
  text-align: center;
  color: #FFFFFF;
  gap: 1.25rem;
  border-radius: 3.125rem;
  width: 100%;
  padding: clamp(2rem, 4vw, 5rem) clamp(1rem, 3vw, 4rem);
}
@media (max-width: 768px) {
  .stats {
    padding: 2.5rem 2.5rem;
    border-radius: 0;
  }
}
@media (min-width: 768px) {
  .stats {
    padding: 5vw 2vw;
  }
}
.stats h2#stats-title {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  text-transform: none;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  animation: fadeInUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
}
@media (max-width: 767px) {
  .stats h2#stats-title {
    display: none;
  }
}
.stats .stats-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  min-height: 250px;
  animation: fadeInUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}
@media (max-width: 767px) {
  .stats .stats-grid {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1.5rem;
    min-height: auto;
  }
}
.stats .stat-card {
  padding: 2rem 1.5rem;
  text-align: center;
  width: clamp(180px, 18vw, 260px);
  flex: 0 0 auto;
  transition: transform 0.2s ease;
  animation: fadeInUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}
.stats .stat-card:hover {
  transform: translateY(-4px);
}
.stats .stat-card .stat-icons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.stats .stat-card .stat-icons .stat-icon {
  width: auto;
  height: auto;
  max-height: clamp(50px, 5.5vw, 85px);
  max-width: none;
  -o-object-fit: contain;
     object-fit: contain;
}
.stats .stat-card .stat-number {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 100%;
  color: #FFFFFF;
  display: block;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.stats .stat-card .stat-label {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 140%;
  color: #FFFFFF;
  text-transform: capitalize;
  letter-spacing: 0.05em;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .stats .stat-card {
    padding: 1rem;
    width: auto;
    min-width: 120px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.vip-section-wrapper {
  position: relative;
  background-color: #F3E2EA;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
  padding: 3.5rem 0;
  overflow: hidden;
  color: #303746;
}
.vip-section-wrapper .vip-section {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: nowrap;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (max-width: 970px) {
  .vip-section-wrapper .vip-section {
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .vip-section-wrapper .vip-section {
    flex-direction: row;
    gap: 2rem;
    flex-wrap: nowrap;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.vip-section-wrapper .vip-bg-crown {
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 768px) {
  .vip-section-wrapper .vip-bg-crown {
    display: none;
  }
}
.vip-section-wrapper .vip-bg-crown--1 {
  top: 0%;
  left: -15%;
}
.vip-section-wrapper .vip-bg-crown--2 {
  top: 12%;
  left: 40%;
}
.vip-section-wrapper .vip-bg-crown--3 {
  top: 0%;
  right: -8%;
}
.vip-section-wrapper .vip-bg-crown--4 {
  bottom: -4%;
  left: -3%;
}
.vip-section-wrapper .vip-bg-crown--5 {
  bottom: -5%;
  right: 25%;
}
.vip-section-wrapper .vip-illustration-wrapper {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  box-shadow: none !important;
  background: transparent;
}
@media (max-width: 1024px) and (min-width: 992px) {
  .vip-section-wrapper .vip-illustration-wrapper {
    flex: 0 0 320px;
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .vip-section-wrapper .vip-illustration-wrapper {
    justify-content: center;
    margin-bottom: 2rem;
  }
}
.vip-section-wrapper .vip-illustration-wrapper .vip-illustration {
  max-width: clamp(320px, 27vw, 500px);
  height: auto;
  box-shadow: none !important;
  background: transparent;
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}
@media (max-width: 767px) {
  .vip-section-wrapper .vip-illustration-wrapper .vip-illustration {
    max-width: 250px;
  }
}
.vip-section-wrapper .vip-content {
  flex: 1;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1024px) and (min-width: 992px) {
  .vip-section-wrapper .vip-content {
    max-width: 450px;
    flex: 1;
  }
}
@media (max-width: 991px) {
  .vip-section-wrapper .vip-content {
    align-items: center;
  }
}
.vip-section-wrapper .vip-content h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
}
@media (max-width: 1024px) {
  .vip-section-wrapper .vip-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .vip-section-wrapper .vip-content h2 {
    font-size: 2rem;
  }
}
.vip-section-wrapper .vip-content h2 .vip-text {
  color: #C41459;
  font-weight: 400;
  font-family: "Playfair Display", "Merriweather", "Georgia", serif;
  margin-left: 0px;
  letter-spacing: 0px;
  margin-top: -6px;
}
@media (max-width: 768px) {
  .vip-section-wrapper .vip-content h2 .vip-text {
    font-size: 2.4rem;
    margin-left: 8px;
  }
}
.vip-section-wrapper .vip-content .vip-custom-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
  color: #4A4A4A;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .vip-section-wrapper .vip-content .vip-custom-list {
    font-size: 0.95rem;
    line-height: 1.3;
  }
}
.vip-section-wrapper .vip-content .vip-custom-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}
@media (max-width: 1024px) {
  .vip-section-wrapper .vip-content .vip-custom-list li {
    gap: 10px;
    margin-bottom: 12px;
  }
}
@media (max-width: 991px) {
  .vip-section-wrapper .vip-content .vip-custom-list li {
    text-align: left;
  }
}
.vip-section-wrapper .vip-content .vip-custom-list li::before {
  content: none !important;
  display: none !important;
}
.vip-section-wrapper .vip-content .vip-custom-list li .check-icon {
  flex-shrink: 0;
  stroke: #C41459;
  stroke-width: 2.5;
}
.vip-section-wrapper .vip-content .vip-button-wrapper {
  margin-top: auto;
}
@media (max-width: 991px) {
  .vip-section-wrapper .vip-content .vip-button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.profiles-section {
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  color: #303746;
}
.profiles-section .profiles-section-btnMobile {
  display: none;
}
@media (min-width: 768px) {
  .profiles-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 6vw 0;
    gap: 4vw;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .profiles-section {
    flex-wrap: nowrap;
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .profiles-section {
    text-align: left;
  }
  .profiles-section .profiles-section-btnDesktop {
    display: none;
  }
  .profiles-section .profiles-section-btnMobile {
    display: block;
  }
}
.profiles-section .profiles-text {
  flex: 1;
  animation: fadeInLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}
.profiles-section .profiles-text h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin: 0 0 1rem 0;
}
@media (max-width: 767px) {
  .profiles-section .profiles-text h2 {
    font-size: 2rem;
  }
}
@supports not (-webkit-background-clip: text) {
  .profiles-section .profiles-text h2 {
    -webkit-text-fill-color: #FFFFFF;
  }
}
.profiles-section .profiles-text h2 .color-primary {
  color: #C61162;
}
.profiles-section .profiles-text p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 160%;
  color: #303746;
}
@media (max-width: 767px) {
  .profiles-section .profiles-text p {
    font-size: 0.875rem;
    max-width: 100%;
  }
}
.profiles-section .profiles-mobile-mockup {
  flex: 1;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: flex-end;
  animation: fadeInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}
@media (max-width: 767px) {
  .profiles-section .profiles-mobile-mockup {
    width: 100%;
    justify-content: center;
    padding-top: 0;
  }
}
.profiles-section .profiles-mobile-mockup .mobile-mockup {
  max-width: clamp(380px, 30vw, 600px);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
  transition: transform 0.4s ease;
}
@media (max-width: 767px) {
  .profiles-section .profiles-mobile-mockup .mobile-mockup {
    max-width: 280px;
  }
}
.profiles-section .profiles-mobile-mockup .mobile-mockup:hover {
  transform: translateY(-10px);
}
.profiles-section .profiles-mobile-mockup.mockup-main {
  width: 100%;
  max-width: clamp(360px, 33vw, 600px);
  z-index: 2;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.find-love {
  background: #FAE6EF;
  padding: 4rem 1rem;
  text-align: center;
  color: #303746;
}
@media (min-width: 768px) {
  .find-love {
    padding: 6rem 2rem;
  }
}
.find-love h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #303746;
  margin: 0 0 1rem 0;
  animation: fadeInUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.find-love h2 .color-primary {
  color: #C61162;
}
@media (max-width: 767px) {
  .find-love h2 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
  }
}
.find-love p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 140%;
  color: #303746;
  margin: 0 auto 3rem auto;
  animation: fadeInUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
  max-width: 750px;
}
@media (max-width: 767px) {
  .find-love p {
    font-size: 1rem;
    line-height: 120%;
  }
}
.find-love .features-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  animation: fadeInUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}
@media (max-width: 767px) {
  .find-love .features-grid {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    padding: 0;
  }
}
.find-love .feature-card {
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: left;
  min-width: 250px;
  box-shadow: 0 4px 12px rgba(242, 242, 242, 0.3);
  transition: all 0.2s ease;
  animation: cardFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}
@keyframes cardFadeIn {
  from {
    opacity: 0;
    margin-top: 20px;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}
.find-love .feature-card:nth-child(2) {
  animation-delay: 0.5s;
}
.find-love .feature-card:nth-child(3) {
  animation-delay: 0.7s;
}
.find-love .feature-card:hover {
  transform: scale(1.03) translateY(-5px);
}
.find-love .feature-card:hover .feature-card-icon img {
  transform: scale(1.15) rotate(8deg);
}
.find-love .feature-card .feature-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #FAE6EF;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
@media (max-width: 767px) {
  .find-love .feature-card .feature-card-icon {
    width: 64px;
    height: 64px;
  }
}
.find-love .feature-card .feature-card-icon img {
  width: 42%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.find-love .feature-card h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.4;
  line-height: 140%;
  color: #303746;
  margin: 0 0 0.5rem 0;
}
@media (max-width: 767px) {
  .find-love .feature-card h3 {
    line-height: 130%;
  }
}
.find-love .feature-card p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 150%;
  color: #303746;
  margin: 0;
}
@media (max-width: 767px) {
  .find-love .feature-card {
    width: 100%;
    max-width: 350px;
    margin-bottom: 0;
  }
  .find-love .feature-card p {
    font-size: 1rem;
    line-height: 120%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.perfect-match {
  background: #FFFFFF;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 768px) {
  .perfect-match {
    flex-direction: row;
    padding: 6rem 2rem;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .perfect-match {
    flex-wrap: nowrap;
  }
}
@media (max-width: 767px) {
  .perfect-match {
    overflow-x: hidden;
  }
}
.perfect-match .match-images {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: clamp(300px, 28vw, 450px);
  width: 100%;
  max-width: clamp(350px, 35vw, 600px);
  animation: fadeInLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}
@media (max-width: 767px) {
  .perfect-match .match-images {
    min-height: 360px;
    max-width: 100%;
  }
}
.perfect-match .match-images .match-image-wrapper {
  position: absolute;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: transparent;
}
.perfect-match .match-images .match-image-wrapper img:first-of-type {
  border-radius: 0.75rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: clamp(300px, 28vw, 440px);
  display: block;
}
@media (max-width: 767px) {
  .perfect-match .match-images .match-image-wrapper img:first-of-type {
    width: 220px;
    height: auto;
  }
}
.perfect-match .match-images .match-image-wrapper .heart-badge {
  position: absolute;
  background: transparent;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 3;
  animation: fadeInUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}
.perfect-match .match-images .match-image-wrapper .heart-badge img {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .perfect-match .match-images .match-image-wrapper .heart-badge img {
    width: 70%;
  }
}
.perfect-match .match-images .match-image-wrapper.image-1 {
  transform: rotate(0deg) translateX(-96px) translateY(120px);
  z-index: 5;
  animation: bounce-image-1 2s ease-in-out 2;
}
.perfect-match .match-images .match-image-wrapper.image-1 .heart-badge {
  bottom: -88px;
  left: -27px;
  z-index: 1;
  opacity: 0;
  animation: bounceIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation-delay: 1.2s;
}
@media (max-width: 767px) {
  .perfect-match .match-images .match-image-wrapper.image-1 .heart-badge {
    bottom: -58px;
    left: -7px;
  }
}
@media (max-width: 767px) {
  .perfect-match .match-images .match-image-wrapper.image-1 {
    transform: rotate(0deg) translateX(-60px) translateY(120px);
  }
}
.perfect-match .match-images .match-image-wrapper.image-2 {
  transform: rotate(0deg) translateX(40px) translateY(-10px);
  z-index: 1;
  animation: bounce-image-2 2s ease-in-out 2;
  animation-delay: 0.8s;
}
.perfect-match .match-images .match-image-wrapper.image-2 .heart-badge {
  top: -79px;
  left: -19px;
  opacity: 0;
  animation: bounceIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation-delay: 2s;
}
@media (max-width: 767px) {
  .perfect-match .match-images .match-image-wrapper.image-2 .heart-badge {
    top: -50px;
    left: -10px;
  }
}
@media (max-width: 767px) {
  .perfect-match .match-images .match-image-wrapper.image-2 {
    transform: rotate(6deg) translateX(40px) translateY(10px);
    z-index: 1;
    position: relative;
  }
}
.perfect-match .match-images .match-image-wrapper:hover {
  z-index: 10;
}
.perfect-match .match-images .match-image-wrapper:hover img {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}
@keyframes bounce-image-1 {
  0%, 100% {
    transform: rotate(0deg) translateX(-96px) translateY(120px);
  }
  50% {
    transform: rotate(0deg) translateX(-96px) translateY(105px);
  }
}
@keyframes bounce-image-2 {
  0%, 100% {
    transform: rotate(0deg) translateX(40px) translateY(-10px);
  }
  50% {
    transform: rotate(0deg) translateX(40px) translateY(-25px);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.perfect-match .match-content {
  flex: 1;
  text-align: left;
  padding-left: 2rem;
  animation: fadeInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}
@media (max-width: 767px) {
  .perfect-match .match-content {
    padding-left: 0;
    text-align: left;
  }
}
.perfect-match .match-content h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #303746;
  margin-bottom: 1.5rem;
}
.perfect-match .match-content h2 .color-primary {
  color: #C61162;
}
.perfect-match .match-content p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 160%;
  color: #303746;
  margin-bottom: 2.5rem;
  max-width: 500px;
}
@media (max-width: 767px) {
  .perfect-match .match-content p {
    font-size: 1rem;
    margin: 0.25rem auto 1.5rem auto;
  }
}
.perfect-match .match-content .button {
  padding: 1rem 2.5rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounceUpMale {
  0% {
    opacity: 0;
    transform: translateY(100px) scale(1.2);
  }
  60% {
    opacity: 1;
    transform: translateY(-20px) scale(1.2);
  }
  80% {
    transform: translateY(10px) scale(1.2);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1.2);
  }
}
@keyframes bounceUpFemale {
  0% {
    opacity: 0;
    transform: translateY(100px) scale(0.8);
  }
  60% {
    opacity: 1;
    transform: translateY(-20px) scale(0.8);
  }
  80% {
    transform: translateY(10px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(0.8);
  }
}
.security-privacy {
  background: #FFFFFF;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 3rem;
  text-align: left;
}
@media (min-width: 768px) {
  .security-privacy {
    flex-direction: row;
    padding: 3rem 1rem 1rem 1rem;
    justify-content: space-between;
    gap: 4rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .security-privacy {
    flex-wrap: nowrap;
    gap: 2rem;
  }
}
.security-privacy .security-content {
  flex: 1;
  animation: fadeInLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}
.security-privacy .security-content h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #303746;
  margin-bottom: 2rem;
}
.security-privacy .security-content h2 .color-primary {
  color: #C61162;
}
@media (max-width: 767px) {
  .security-privacy .security-content h2 {
    font-size: 1.5rem;
    margin: 0;
    line-height: 120%;
  }
}
.security-privacy .security-content p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #303746;
  max-width: 500px;
}
@media (max-width: 767px) {
  .security-privacy .security-content p {
    font-size: 1rem;
    line-height: 120%;
    margin-top: 0.5rem;
  }
}
.security-privacy .privacy-options-card {
  flex: 1;
  background: #F6F9FC;
  border-radius: 1rem;
  padding: 1.75rem 1.188rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 500px;
  animation: fadeInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}
.security-privacy .privacy-options-card .privacy-option {
  background: #FFFFFF;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  cursor: pointer;
  transition: all 0.2s ease;
}
.security-privacy .privacy-options-card .privacy-option.active {
  border-color: #303746;
}
.security-privacy .privacy-options-card .privacy-option .radio-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #303746;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.security-privacy .privacy-options-card .privacy-option .radio-circle .inner-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #303746;
  display: block;
}
.security-privacy .privacy-options-card .privacy-option:not(.active) .radio-circle {
  border-color: #8F9BB3;
}
.security-privacy .privacy-options-card .privacy-option:not(.active) .radio-circle .inner-circle {
  display: none;
}
.security-privacy .privacy-options-card .privacy-option .option-text h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #303746;
  margin: 0 0 0.5rem 0;
}
@media (max-width: 767px) {
  .security-privacy .privacy-options-card .privacy-option .option-text h3 {
    font-size: 1rem;
  }
}
.security-privacy .privacy-options-card .privacy-option .option-text p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #303746;
  margin: 0;
  line-height: 140%;
}
@media (max-width: 767px) {
  .security-privacy .privacy-options-card .privacy-option {
    padding: 1rem;
  }
}

.download-banner {
  background-color: #C61162;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  margin-top: 0;
}
.download-banner .container {
  max-width: 100% !important;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .download-banner .container {
    padding: 0 2rem;
  }
}
.download-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/heart-bg.png");
  background-size: contain;
  background-position: center;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}
.download-banner .banner-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 992px) {
  .download-banner .banner-wrapper {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 1.5rem;
  }
}
.download-banner .banner-text h2 {
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 768px) {
  .download-banner .banner-text h2 {
    font-size: 1.75rem;
  }
}
.download-banner .banner-buttons {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .download-banner .banner-buttons {
    justify-content: center;
  }
}
.download-banner .banner-buttons img {
  height: 52px;
  width: auto;
  transition: transform 0.2s ease;
}
.download-banner .banner-buttons img:hover {
  transform: scale(1.05);
}

.site-footer {
  background-color: #FFFFFF;
  padding: 4rem 0 2rem 0;
  border-top: 1px solid #F2F2F2;
}
@media (max-width: 768px) {
  .site-footer {
    padding: 2rem 0 2rem 0;
  }
}
.site-footer .footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .site-footer .footer-top {
    flex-direction: column;
    gap: 2rem;
  }
}
.site-footer .footer-brand {
  max-width: 300px;
}
.site-footer .footer-brand .footer-logo {
  color: #C61162;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .site-footer .footer-brand .footer-logo {
    font-size: 1.5rem;
  }
}
.site-footer .footer-brand .footer-tagline {
  color: #303746;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .site-footer .footer-brand .footer-tagline {
    font-size: 1rem;
  }
}
.site-footer .footer-brand .social-links {
  display: flex;
  gap: 0.75rem;
}
@media (max-width: 767px) {
  .site-footer .footer-brand .social-links {
    display: none !important;
  }
}
.site-footer .footer-brand .social-links .social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F9F9F9;
  border: 1px solid #EEEEEE;
  border-radius: 0.25rem;
  transition: all 0.2s ease;
}
.site-footer .footer-brand .social-links .social-icon img {
  width: 20px;
  height: 20px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.2s ease;
}
.site-footer .footer-brand .social-links .social-icon:hover {
  border-color: #C61162;
  background-color: #FFF0F5;
}
.site-footer .footer-brand .social-links .social-icon:hover img {
  filter: none;
  opacity: 1;
}
.site-footer .footer-links-wrapper {
  display: flex;
  gap: 3rem;
}
@media (max-width: 768px) {
  .site-footer .footer-links-wrapper {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    width: 100%;
  }
}
.site-footer .footer-column h3 {
  color: #303746;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .site-footer .footer-column h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}
.site-footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-column ul li {
  margin-bottom: 0;
}
.site-footer .footer-column ul li .nav-link {
  color: #303746;
  text-decoration: none !important;
  font-weight: 400;
  font-size: var(--body-size);
  transition: all 0.2s ease;
  position: relative;
}
.site-footer .footer-column ul li .nav-link:hover {
  color: #C61162;
}
.site-footer .footer-column ul li .nav-link.active {
  color: #C61162;
  font-weight: 700;
}
.site-footer .footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  margin-top: 3rem;
}
.site-footer .footer-bottom .mobile-footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin: 0.5rem 0;
}
@media (min-width: 768px) {
  .site-footer .footer-bottom .mobile-footer-socials {
    display: none !important;
  }
}
.site-footer .footer-bottom .mobile-footer-socials .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #F8FAFC;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.site-footer .footer-bottom .mobile-footer-socials .social-icon img {
  width: 20px;
  height: 20px;
  filter: grayscale(1) opacity(0.6);
}
.site-footer .footer-bottom .mobile-footer-socials .social-icon:hover {
  background: #FAE6EF;
}
.site-footer .footer-bottom .mobile-footer-socials .social-icon:hover img {
  filter: none;
  opacity: 1;
}
.site-footer .footer-bottom .bottom-logo {
  width: 64px;
  height: auto;
}
@media (max-width: 768px) {
  .site-footer .footer-bottom .bottom-logo {
    width: 42px;
  }
}
.site-footer .footer-bottom p {
  color: #303746;
  font-weight: 300;
  font-size: var(--body-size);
  margin: 0;
}
@media (max-width: 768px) {
  .site-footer .footer-bottom p {
    font-size: var(--body-size);
  }
}

.contact-page {
  background-color: #FFFFFF;
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  .contact-page {
    background-color: #FFFFFF;
  }
}
.contact-page .contact-hero {
  height: 450px;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .contact-page .contact-hero {
    height: 220px;
  }
}
.contact-page .contact-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
}
.contact-page .contact-content-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -150px;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .contact-page .contact-content-wrapper {
    margin-top: 0;
    padding: 5px 20px 0 20px;
    margin-bottom: 0;
  }
}
.contact-page .contact-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 2vw, 2rem);
}
@media (max-width: 992px) {
  .contact-page .contact-grid {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 2rem 1rem;
  }
}
.contact-page .contact-info {
  flex: 1;
  padding-top: clamp(80px, 12vw, 155px);
}
@media (max-width: 992px) {
  .contact-page .contact-info {
    padding-top: 0;
    text-align: center;
    width: 100%;
  }
}
.contact-page .contact-info h1 {
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #303746;
}
.contact-page .contact-info h1 .break-line {
  display: block;
  margin-top: 5px;
}
.contact-page .contact-info h1 .brand-pink {
  color: #C61162;
}
.contact-page .contact-info .contact-subtitle {
  color: #303746;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .contact-page .contact-info .contact-subtitle {
    margin: 1rem 0 1rem 0;
  }
}
.contact-page .contact-info .contact-methods {
  display: flex;
  gap: 1.25rem;
}
.contact-page .contact-info .contact-methods .method-item {
  width: 52px;
  height: 52px;
  background-color: #C61162;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  transition: all 0.3s ease;
  text-decoration: none;
}
.contact-page .contact-info .contact-methods .method-item svg {
  width: 22px;
  height: 22px;
}
.contact-page .contact-info .contact-methods .method-item:hover {
  background-color: #9A0E4C;
  transform: translateY(-4px);
}
.contact-page .contact-info .contact-methods .method-item.disabled-whatsapp {
  background-color: #a0aab2 !important;
  /* Gray out */
  cursor: not-allowed;
  position: relative;
  pointer-events: auto;
  /* Required for hover tooltip to work */
}
.contact-page .contact-info .contact-methods .method-item.disabled-whatsapp:hover {
  transform: none;
  background-color: #a0aab2 !important;
}
.contact-page .contact-info .contact-methods .method-item.disabled-whatsapp .custom-tooltip {
  visibility: hidden;
  opacity: 0;
  width: 170px;
  background-color: #303746;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 6px 10px;
  position: absolute;
  z-index: 10;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s ease, visibility 0.3s ease;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.contact-page .contact-info .contact-methods .method-item.disabled-whatsapp .custom-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #303746 transparent transparent transparent;
}
.contact-page .contact-info .contact-methods .method-item.disabled-whatsapp:hover .custom-tooltip {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 768px) {
  .contact-page .contact-info .contact-methods .method-item {
    font-size: 2.25rem;
    width: 40px;
    height: 40px;
  }
  .contact-page .contact-info .contact-methods .method-item svg {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 768px) {
  .contact-page .contact-info .contact-methods {
    gap: 0.5rem;
  }
}
.contact-page .contact-form-card {
  flex: 1.2;
  background: #F6F9FC;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-radius: 25px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
  min-width: clamp(320px, 45vw, 650px);
}
@media (max-width: 768px) {
  .contact-page .contact-form-card {
    background: #F6F9FC;
    width: 100%;
    padding: 1.5rem 1rem;
    border-radius: 20px;
    box-shadow: none;
    margin-top: 1.5rem;
    min-width: 100%;
  }
}
.contact-page .contact-form-card .form-group {
  margin-bottom: 1.5rem;
}
.contact-page .contact-form-card .form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #303746;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .contact-page .contact-form-card .form-group label {
    font-size: 1rem;
  }
}
.contact-page .contact-form-card .form-group input,
.contact-page .contact-form-card .form-group textarea {
  width: 100%;
  padding: 1.125rem 1.25rem;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  background: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.contact-page .contact-form-card .form-group input::-moz-placeholder,
.contact-page .contact-form-card .form-group textarea::-moz-placeholder {
  color: #A0AEC0;
  font-family: "Poppins", sans-serif;
  opacity: 1;
}
.contact-page .contact-form-card .form-group input:-ms-input-placeholder,
.contact-page .contact-form-card .form-group textarea:-ms-input-placeholder {
  color: #A0AEC0;
  font-family: "Poppins", sans-serif;
  opacity: 1;
}
.contact-page .contact-form-card .form-group input::-ms-input-placeholder,
.contact-page .contact-form-card .form-group textarea::-ms-input-placeholder {
  color: #A0AEC0;
  font-family: "Poppins", sans-serif;
  opacity: 1;
}
.contact-page .contact-form-card .form-group input::placeholder,
.contact-page .contact-form-card .form-group textarea::placeholder {
  color: #A0AEC0;
  font-family: "Poppins", sans-serif;
  opacity: 1;
}
.contact-page .contact-form-card .form-group input:focus,
.contact-page .contact-form-card .form-group textarea:focus {
  border-color: #C61162;
  outline: none;
}
.contact-page .contact-form-card .btn-send {
  width: 100%;
  padding: 1.25rem;
  background-color: #C61162;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.contact-page .contact-form-card .btn-send:hover {
  background-color: #a00e4e;
  transform: translateY(-2px);
}

.download-banner {
  display: block;
}
@media (max-width: 768px) {
  .download-banner {
    display: none;
  }
}

.privacy-page {
  background-color: #FFFFFF;
  padding: 8rem 0 5rem;
}
@media (max-width: 768px) {
  .privacy-page {
    padding: 6rem 0 3rem;
  }
}
.privacy-page .privacy-card {
  background: #FFFFFF;
  padding: 4rem;
  border-radius: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid #E4E7EB;
}
@media (max-width: 768px) {
  .privacy-page .privacy-card {
    padding: 2rem 1.5rem;
    border-radius: 1.25rem;
  }
}
.privacy-page .privacy-content {
  color: #303746;
  line-height: 1.8;
}
.privacy-page .privacy-content h1 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.1;
  font-weight: 700;
  color: #303746;
  margin-bottom: 0.5rem;
}
.privacy-page .privacy-content .last-updated {
  display: block;
  color: #8F9BB3;
  font-size: 0.95rem;
  margin-bottom: 3rem;
  font-weight: 500;
}
.privacy-page .privacy-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 3.875rem);
  line-height: 1.2;
  font-weight: 600;
  color: #C61162;
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(198, 17, 98, 0.1);
}
.privacy-page .privacy-content p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: #8F9BB3;
}
@media (max-width: 768px) {
  .privacy-page .privacy-content p {
    font-size: 1rem;
  }
}
.privacy-page .privacy-content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}
.privacy-page .privacy-content ul li {
  margin-bottom: 0.75rem;
  position: relative;
  list-style-type: none;
  padding-left: 1.5rem;
  font-size: 1.125rem;
  color: #8F9BB3;
}
.privacy-page .privacy-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background-color: #C61162;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .privacy-page .privacy-content ul li {
    font-size: 1rem;
  }
}
.privacy-page .privacy-content ul li strong {
  color: #303746;
  font-weight: 600;
}
.privacy-page .privacy-content .disclaimer-box {
  background: rgba(198, 17, 98, 0.03);
  padding: 2rem;
  border-radius: 1.25rem;
  border-left: 4px solid #C61162;
  margin-bottom: 3rem;
}
.privacy-page .privacy-content .disclaimer-box p {
  margin-bottom: 0;
  font-style: italic;
  color: #303746;
}

.service-one {
  padding: 40px 0;
}

.block-title__text {
  font-size: clamp(1.4rem, 2.5vw, 2.25rem);
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 15px;
  color: #222;
}

.block-title__text_2 {
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 25px;
  color: #333;
}

.block-title__text_3 {
  font-size: clamp(1.4rem, 2.5vw, 2.25rem);
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 30px;
  color: #222;
}

.cta-three__text, .cta-three__text_2 {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #555;
}

.privacy-container p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #555;
}
.privacy-container ul.pl-20 {
  padding-left: 25px;
  list-style-type: disc;
  margin-bottom: 20px;
}
.privacy-container ul.pl-20 li {
  margin-bottom: 8px;
  color: #555;
}
.privacy-container hr {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #eee;
}
.privacy-container a {
  color: var(--primary);
  text-decoration: none;
}
.privacy-container a:hover {
  text-decoration: underline;
}

.hero-container {
  max-width: 870px;
  margin: 0 auto;
  padding: 0 1rem;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 768px) {
  .blog-container {
    padding: 0 !important;
  }
}

.blog-section {
  padding: 0;
  position: relative;
  background: transparent;
}

.filters {
  padding: 2rem;
  margin: 0 auto 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.filter-group {
  display: flex;
  flex-direction: column;
  min-width: 200px;
  flex: auto;
}

.category-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.no-results,
.loading {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem;
  color: #8F9BB3;
  font-size: 1.2rem;
  display: none;
}

.blog-banner {
  padding: 100px 0 70px;
  background: linear-gradient(135deg, #FFF1F7 0%, #FFFFFF 50%, rgba(255, 241, 247, 0.5) 100%);
}
@media (max-width: 767px) {
  .blog-banner {
    padding: 50px 0 30px;
  }
}

.blog-title h1 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.1;
  font-weight: 700;
}

.blog-page-title {
  font-size: clamp(1.8rem, 3.5vw, 3.875rem);
  line-height: 1.2;
  font-weight: 800;
  margin: 0;
}
.blog-page-title__brand {
  color: #C61162;
}
.blog-page-title__dark {
  color: #1a1a2e;
}

.featured-title-container {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .featured-title-container {
    gap: 1rem;
    text-align: right;
  }
}
.featured-title-container h2 {
  font-size: clamp(1.8rem, 3.5vw, 3.875rem);
  line-height: 1.2;
  margin-bottom: 0 !important;
  white-space: nowrap;
}

.featured-line {
  flex-grow: 1;
  height: 4px;
  background: #C61162;
  border-radius: 2px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .featured-line {
    width: 100%;
    flex-grow: 0;
  }
}

.featured-card-main {
  display: flex;
  flex-direction: row;
  gap: 0;
}
@media (max-width: 991px) {
  .featured-card-main {
    flex-direction: column;
    gap: 1.5rem !important;
  }
}

.featured-large {
  flex: 1;
}
@media (max-width: 991px) {
  .featured-large {
    max-width: 100% !important;
    width: 100%;
  }
}

.featured-small-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 991px) {
  .featured-small-stack {
    max-width: 100% !important;
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
}

.small-card {
  height: clamp(180px, 20vw, 290px);
  display: flex;
  flex-direction: row;
}
@media (max-width: 576px) {
  .small-card {
    flex-direction: column !important;
    height: auto !important;
  }
}

.small-card-thumb {
  width: 40%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 16px 0 0 16px;
}
@media (max-width: 576px) {
  .small-card-thumb {
    width: 100% !important;
    height: 200px !important;
    border-radius: 16px 16px 0 0 !important;
  }
}

.small-card-infos {
  width: 60%;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  .small-card-infos {
    width: 100% !important;
    padding: 0.5rem 0 !important;
  }
}
.small-card-infos .title {
  -webkit-line-clamp: 2 !important;
}
@media (max-width: 576px) {
  .small-card-infos .title {
    font-size: 16px !important;
    line-height: 1.3 !important;
    -webkit-line-clamp: 2 !important;
  }
}
.small-card-infos .txt {
  font-size: 0.9rem;
  line-height: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 4 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 1.5rem;
}
.section-heading__title {
  font-size: clamp(1.8rem, 3.5vw, 3.875rem);
  line-height: 1.2;
  font-weight: 800;
  color: #1a1a2e;
  white-space: nowrap;
  margin: 0;
}
.section-heading__title .brand {
  color: #C61162;
}
.section-heading__line {
  flex: 1;
  height: 4px;
  background-color: #C61162;
  border-radius: 2px;
}
@media (max-width: 576px) {
  .section-heading {
    flex-wrap: wrap;
  }
  .section-heading__line {
    display: block;
  }
}

.category-carousel-section {
  padding: 1rem 0;
  background: #FFFFFF;
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}

.category-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 16px;
  font-weight: 500;
  color: #303746;
  background: transparent;
  border: none;
  padding: 0;
  text-transform: capitalize;
  transition: color 0.3s ease;
  text-decoration: none;
}
.category-chip::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #C61162;
  display: inline-block;
}
.category-chip:hover {
  color: #C61162;
}

.cat-btn {
  background: #FFFFFF !important;
  color: #C61162 !important;
  border: 1px solid rgba(198, 17, 98, 0.2) !important;
  padding: 7.5px 12px !important;
  border-radius: 7.5px !important;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  display: inline-block !important;
  margin: 0.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: capitalize;
  text-decoration: none;
}
.cat-btn::before {
  display: none !important;
}
.cat-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #C61162 !important;
  border-color: #C61162 !important;
}
.cat-btn.active {
  background: #C61162 !important;
  color: #FFFFFF !important;
  border-color: #C61162 !important;
}

.category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #FAE6EF;
  color: #C61162;
  padding: 4px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  line-height: 1;
  text-transform: capitalize;
  display: inline-block;
}

.card {
  background: #FFFFFF;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  color: inherit;
  display: flex !important;
  flex-direction: column;
  gap: 12px;
  text-align: left !important;
  align-items: flex-start !important;
  overflow: hidden;
}
.card.hidden {
  display: none !important;
  opacity: 0;
}
.card:hover {
  transform: translateY(-5px);
}
.card .thumb {
  width: 100%;
  height: 260px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.card .infos {
  padding: 0 0.75rem;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px;
  text-align: left !important;
  align-items: flex-start !important;
  width: 100%;
}
@media (max-width: 576px) {
  .card .infos {
    padding: 0.5rem 0;
  }
}
.card .infos .title {
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.3;
  font-weight: 600;
  color: #303746;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: left !important;
  margin: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}
.card .infos .txt {
  font-size: 0.938rem;
  color: #718096;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left !important;
  margin: 0 !important;
  min-height: 2.813rem;
  word-break: break-word;
  overflow-wrap: break-word;
}
.card .infos .date {
  display: none;
}
.card.large-card .thumb {
  height: clamp(300px, 35vw, 380px);
}
.card.large-card .infos .title {
  font-size: clamp(1.4rem, 2.5vw, 2.25rem);
  line-height: 1.2;
}
.card.small-card {
  flex-direction: row;
  height: 140px;
}
.card.small-card .thumb {
  border-radius: 16px 0 0 16px;
}

.custom-readmorebtn {
  font-size: 0.75rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  color: #C61162;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0 0.5rem;
  cursor: pointer;
}
.custom-readmorebtn .readmore-white,
.custom-readmorebtn svg {
  position: relative;
  z-index: 1;
  font-style: normal;
}
.custom-readmorebtn svg {
  margin-left: 0.5em;
  vertical-align: middle;
  fill: none;
}
.custom-readmorebtn .circlecolor {
  width: 2em;
  height: 2em;
  border-radius: 2em;
  background-color: #FAE6EF;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -0.65em;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 0;
}

.parentreadmorebtn:hover .custom-readmorebtn .readmore-white, .parentreadmorebtn:hover .custom-readmorebtn svg {
  color: #C61162;
  transition: color 0.4s ease;
}
.parentreadmorebtn:hover .custom-readmorebtn .circlecolor {
  background-color: #FAE6EF;
  animation: hoverAnim 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes hoverAnim {
  0% {
    width: 2em;
    left: -0.65em;
  }
  40% {
    width: calc(100% + 1.3em);
    left: -0.65em;
  }
  100% {
    width: 2em;
    left: calc(100% - 1.45em);
  }
}
#paginationLinks .pagination,
#paginationLinks ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
#paginationLinks li,
#paginationLinks .page-item {
  list-style: none;
  margin: 0;
}
#paginationLinks li::before,
#paginationLinks .page-item::before {
  content: none;
}
#paginationLinks .page-link,
#paginationLinks a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 12px;
  border: 1px solid #edf2f7;
  background: #fff;
  color: #4a5568;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
#paginationLinks .page-item.active .page-link,
#paginationLinks li.active span {
  background: linear-gradient(135deg, #C61162 0%, #EAA552 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px rgba(198, 17, 98, 0.25);
}
#paginationLinks .page-link:hover:not(.disabled) {
  border-color: #C61162;
  color: #C61162;
  transform: translateY(-2px);
}
#paginationLinks .flex.justify-between.flex-1 {
  display: none;
}

.skeleton {
  background: #f6f7f8;
  background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  background-repeat: no-repeat;
  background-size: 800px 100%;
  display: inline-block;
  position: relative;
  animation: shimmer 1.2s linear infinite forwards;
  border-radius: 16px;
}

@keyframes shimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
.skeleton-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  height: 100%;
}
.skeleton-card .skeleton-thumb {
  width: 100%;
  height: 200px;
  display: block;
}
.skeleton-card .skeleton-content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.skeleton-card .skeleton-title {
  height: 22px;
  width: 90%;
  border-radius: 6px;
}
.skeleton-card .skeleton-text {
  height: 14px;
  width: 100%;
  border-radius: 4px;
}
.skeleton-card .skeleton-text.short {
  width: 40%;
  margin-top: 10px;
  height: 20px;
  border-radius: 20px;
}

.hero-skeleton {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 60px 0;
}
.hero-skeleton .skeleton-title {
  height: 48px;
  width: 60%;
  border-radius: 8px;
}
.hero-skeleton .skeleton-subtitle {
  height: 18px;
  width: 80%;
  border-radius: 4px;
}

.featured-skeleton .skeleton-card.large-feature {
  height: 500px;
}
@media (max-width: 768px) {
  .featured-skeleton .skeleton-card.large-feature {
    height: 400px;
  }
}
.featured-skeleton .skeleton-card.large-feature .skeleton-thumb {
  height: 350px;
}
.featured-skeleton .skeleton-card.small-feature {
  height: 240px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .featured-skeleton .skeleton-card.small-feature {
    flex-direction: column;
    height: auto;
  }
}
.featured-skeleton .skeleton-card.small-feature .skeleton-thumb {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .featured-skeleton .skeleton-card.small-feature .skeleton-thumb {
    width: 100%;
    height: 180px;
  }
}
.featured-skeleton .skeleton-card.small-feature .skeleton-content {
  width: 100%;
}
@media (max-width: 768px) {
  .featured-skeleton .skeleton-card.small-feature .skeleton-content {
    width: 100%;
  }
}

.content-fade-in {
  animation: fadeInAnimation 0.5s ease forwards;
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.blog-detail-section {
  padding: 4rem 0;
}

.blog-author-name {
  color: #C61162;
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.blog-details-heading {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.1;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.blog-image {
  border-radius: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.blog-image:hover {
  transform: scale(1.02);
}

.blog-content {
  font-family: "Inter", sans-serif;
  line-height: 1.8;
  color: #2c3e50;
  font-size: 1.15rem;
}
@media (max-width: 576px) {
  .blog-content {
    font-size: 1.05rem;
  }
}
.blog-content p {
  margin-bottom: 1.8rem;
  text-align: justify;
  font-weight: 400;
}
.blog-content h2, .blog-content h3 {
  color: #C61162;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  border-bottom: 1px solid #FAE6EF;
  padding-bottom: 0.5rem;
}
.blog-content blockquote {
  border-left: 4px solid #C61162;
  padding: 1.5rem;
  font-style: italic;
  background: #FAE6EF;
  border-radius: 0 8px 8px 0;
  margin: 2.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1rem;
}
.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.blog-content img:hover {
  transform: scale(1.02);
}

.sidebar-section {
  background: #fff;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 1.5rem;
}

.sidebar-wrapper.dynamic-height {
  position: relative;
  height: auto;
  overflow: visible;
}
@media (max-width: 991px) {
  .sidebar-wrapper {
    position: static !important;
    height: auto !important;
    overflow: visible;
  }
}

.sidebar-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 24px;
  display: block;
  text-transform: capitalize;
}
.sidebar-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #C61162;
  border-radius: 50px;
}
.sidebar-title .accent-text {
  color: #C61162;
}

.related-card {
  transition: all 0.4s ease;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(250, 230, 239, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  background: #fff;
  display: block;
  text-decoration: none;
  margin-bottom: 1.5rem;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(198, 17, 98, 0.15);
}
.related-card:hover .related-thumb {
  transform: scale(1.05);
}
.related-card .related-thumb {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
  position: relative;
}
.related-card .related-info {
  padding: 1.25rem;
}
.related-card .related-title {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-card .related-excerpt {
  font-size: 0.9rem;
  color: rgba(48, 55, 70, 0.7);
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-posts-list .related-card .related-info .related-title {
  font-size: 1.1rem;
  line-height: 1.4;
  color: #1a1a1a !important;
}
.related-posts-list .related-card .related-info .related-excerpt {
  font-size: 14px;
  color: rgba(48, 55, 70, 0.7);
  line-height: 1.6;
}

.related-post-item.hidden {
  display: none !important;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #fff;
  color: #C61162;
  border: 1.5px solid #FAE6EF;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(198, 17, 98, 0.05);
  margin-top: 1.5rem;
}
.view-all-btn:hover {
  background: #C61162;
  color: #fff !important;
  border-color: #C61162;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(198, 17, 98, 0.15);
  text-decoration: none !important;
}
.view-all-btn:active {
  transform: translateY(0);
}
.view-all-btn.hidden {
  display: none !important;
}

.progress-container {
  height: 3px;
  background: rgba(250, 230, 239, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
@media (max-width: 576px) {
  .progress-container {
    display: none;
  }
}

.progress-bar {
  height: 100%;
  width: 0%;
  transition: width 0.3s ease;
  background-color: #C61162 !important;
}

.vertical-share-bar {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  background: #C61162;
  padding: 1.5rem 1rem;
  border-radius: 0 20px 20px 0;
  box-shadow: 2px 0 15px rgba(198, 17, 98, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 60px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (max-width: 991px) {
  .vertical-share-bar {
    display: none !important;
  }
}
.vertical-share-bar.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.vertical-share-bar .share-title {
  font-size: 0.85rem;
  color: #fff;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
  margin: 0;
}
.vertical-share-bar .share-buttons-vertical {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.vertical-share-bar .share-btn-vertical {
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  border: none !important;
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none !important;
}
.vertical-share-bar .share-btn-vertical:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.vertical-share-bar .share-btn-vertical svg {
  fill: currentColor;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #C61162;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.back-link:hover {
  transform: translateX(-5px);
  color: #9A0E4C;
}
.back-link svg {
  stroke: currentColor;
  transition: transform 0.3s ease;
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: #666;
}
.empty-state i {
  font-size: 4rem;
  color: #C61162;
  margin-bottom: 1rem;
  opacity: 0.5;
}
.empty-state p {
  font-size: 1.125rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.success-stories {
  background: #FFFFFF;
  overflow: hidden;
  text-align: center;
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .success-stories {
    padding: 2rem 0;
  }
}
.success-stories .success-stories-content {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .success-stories .success-stories-content {
    margin-bottom: 0rem;
  }
}
.success-stories .success-stories-content img {
  margin-bottom: 0rem;
}
.success-stories .success-stories-content h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #303746;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.success-stories .success-stories-content p {
  max-width: 750px;
  margin: 0 auto;
  color: #303746;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .success-stories .success-stories-content p {
    padding: 0 1rem;
  }
}
.success-stories .custom-carousel-relative-wrapper {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden !important;
}
.success-stories .custom-swiper-container {
  padding: 1.5rem 0;
}
@media (max-width: 768px) {
  .success-stories .custom-swiper-container {
    padding: 1.5rem 0;
  }
}
.success-stories .custom-swiper-container .custom-swiper-wrapper {
  display: flex;
  will-change: transform;
  padding: 30px 0;
}
@media (min-width: 768px) {
  .success-stories .custom-swiper-container .custom-swiper-wrapper {
    padding: 40px 0;
  }
}
@media (min-width: 1024px) {
  .success-stories .custom-swiper-container .custom-swiper-wrapper {
    padding: 47px 0;
  }
}
.success-stories .custom-swiper-container .custom-swiper-slide {
  flex-shrink: 0;
  width: clamp(120px, 12vw, 229px);
  height: auto;
  aspect-ratio: 11/23;
  margin-right: clamp(20px, 2.5vw, 21px);
  border-radius: clamp(1rem, 1.5vw, 2rem);
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  filter: brightness(0.85);
  backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform, filter;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease, box-shadow 0.5s ease;
}
.success-stories .custom-swiper-container .custom-swiper-slide.custom-is-center {
  filter: brightness(1);
  transform: scale(1.1);
  box-shadow: none;
  z-index: 10;
}
.success-stories .custom-swiper-container .custom-swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.success-stories .custom-swiper-container .custom-swiper-slide .custom-story-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: clamp(0.75rem, 1.5vw, 1.1rem);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  color: #fff;
  text-align: left;
  z-index: 2;
  max-height: 100px;
  transition: all 0.4s ease;
}
.success-stories .custom-swiper-container .custom-swiper-slide .custom-story-overlay h3 {
  font-size: clamp(0.75rem, 1.1vw, 1rem);
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: #fff;
  transition: all 0.3s ease;
}
.success-stories .custom-swiper-container .custom-swiper-slide .custom-story-overlay .custom-story-city {
  font-size: clamp(0.65rem, 0.9vw, 0.9rem);
  margin: 0 0 0.5rem 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}
.success-stories .custom-swiper-container .custom-swiper-slide .custom-story-overlay .custom-story-description {
  font-size: clamp(0.65rem, 0.8vw, 0.85rem);
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  line-height: 1.4;
}
.success-stories .custom-swiper-container .custom-swiper-slide:hover .custom-story-overlay {
  max-height: 300px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 100%);
  padding: clamp(0.75rem, 2vw, 1.1rem);
}
.success-stories .custom-swiper-container .custom-swiper-slide:hover .custom-story-overlay h3 {
  font-size: clamp(0.75rem, 1vw, 1.2rem);
  margin-bottom: 0.2rem;
}
.success-stories .custom-swiper-container .custom-swiper-slide:hover .custom-story-overlay .custom-story-description {
  opacity: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 200px;
  margin-top: 0.5rem;
}

.custom-static-phone-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 50;
  box-shadow: inset 0 0 0 2px black, 0 0 0 3px black, 0 0 0 4px #cdcdc5, 0px 30px 30px 0px rgba(0, 0, 0, 0.09), 0 0 0 #b5b5b5;
  width: clamp(130px, 13vw, 275px);
  height: auto;
  aspect-ratio: 194/412;
  border-radius: clamp(1.25rem, 1.5vw, 1.6rem);
  border: none;
  background: transparent;
}
.custom-static-phone-frame::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 16px;
  background: #000;
  border-radius: 12px;
  z-index: 60;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .custom-static-phone-frame::after {
    width: 40px;
    height: 11px;
  }
}

.img-placeholder-v1 {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 3.5rem;
  border-radius: 0.625rem;
}
.img-placeholder-v1 i {
  opacity: 0.5;
}

/* --- Back to Top Button (Premium Design) --- */
.back-to-top-dkr {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 5px 15px rgba(198, 17, 98, 0.3);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(20px) scale(0.8);
}
.back-to-top-dkr.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.back-to-top-dkr i {
  transition: transform 0.3s ease;
}
.back-to-top-dkr:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
  box-shadow: 0 8px 25px rgba(198, 17, 98, 0.4);
  transform: translateY(-5px) scale(1.1);
}
.back-to-top-dkr:hover i {
  transform: translateY(-3px);
}
.back-to-top-dkr:active {
  transform: scale(0.95);
}
@media (max-width: 767px) {
  .back-to-top-dkr {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}