


:root {
  
  --bg-white: #FFFFFF;
  --bg-soft: #FDF2F7;
  --bg-light-blue: #FCE6F1;
  
  --blue-primary: #ED0082;
  --blue-royal: #ED0082;
  --blue-vibrant: #D90077;
  --blue-deep: #B30062;
  --blue-hover: #C4006B;
  --blue-subtle: rgba(237, 0, 130, 0.08);
  --blue-glow: rgba(237, 0, 130, 0.15);
  --blue-border: rgba(237, 0, 130, 0.18);
  
  --text-black: #111111;
  --text-body: #222222;
  --text-muted: #131314;
  
  
  --nav-glass-bg: rgba(255, 255, 255, 0.90);
  --glass-border: rgba(237, 0, 130, 0.12);
  --glass-shadow: 0 10px 30px rgba(237, 0, 130, 0.06);

  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-script: 'Allura', 'Great Vibes', cursive;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  
  --header-max-width: 1440px;
  --radius-btn: 10px;
  --radius-nav: 16px;

  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-white);
  color: var(--text-black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

.hidden {
  display: none !important;
}


.hero-header {
  position: relative;
  width: 100%;
  min-height: 85vh;
  min-height: 700px;
  background-color: var(--bg-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding-bottom: 0;
}

.bg-glow-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}


.radial-glow {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(237, 0, 130, 0.1) 0%, rgba(252, 230, 241, 0.35) 45%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  filter: blur(60px);
}


.bg-geometric-grid {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(237, 0, 130, 0.04) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.7;
}

.bg-line {
  position: absolute;
  background: rgba(237, 0, 130, 0.08);
}

.line-diagonal-1 {
  top: 10%;
  left: -5%;
  width: 400px;
  height: 1px;
  transform: rotate(-35deg);
}

.line-diagonal-2 {
  bottom: 15%;
  left: 30%;
  width: 300px;
  height: 1px;
  transform: rotate(25deg);
}


.nav-wrapper {
  position: relative;
  z-index: 100;
  width: 100%;
  padding: 24px 40px 0;
  display: flex;
  justify-content: center;
}

.navbar-glass {
  width: 100%;
  max-width: var(--header-max-width);
  height: 70px;
  background: var(--nav-glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-nav);
  box-shadow: var(--glass-shadow);
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}


.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo-img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.brand-logo:hover .site-logo-img {
  transform: scale(1.03);
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-black);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--blue-primary);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--blue-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--blue-primary);
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
}


.btn-whatsapp-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--blue-primary);
  color: var(--bg-white);
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(237, 0, 130, 0.22);
  transition: all var(--transition-fast);
}

.btn-whatsapp-nav:hover {
  background-color: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(237, 0, 130, 0.32);
}

.icon-whatsapp {
  flex-shrink: 0;
}


.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.mobile-toggle .bar {
  width: 22px;
  height: 2px;
  background-color: var(--text-black);
  border-radius: 2px;
  transition: all 0.3s ease;
}


.mobile-menu-drawer {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
}

.mobile-menu-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bg-light-blue);
}

.mobile-logo-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
}

.mobile-close-btn {
  font-size: 32px;
  color: var(--text-black);
  line-height: 1;
}

.mobile-nav-list {
  list-style: none;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-black);
}

.mobile-nav-link.active {
  color: var(--blue-primary);
}

.mobile-drawer-cta {
  margin-top: auto;
  padding-top: 20px;
}


.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 30px 0 0 40px;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  min-height: calc(85vh - 90px);
}


.hero-content-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
  padding-right: 20px;
  animation: heroFadeIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero-heading {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 20px;
}

.heading-line {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 800;
  color: var(--text-black);
  line-height: 1;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}


.script-tagline {
  font-family: var(--font-script);
  font-size: 44px;
  color: var(--blue-primary);
  line-height: 1.1;
  margin-top: 6px;
  margin-left: 4px;
  font-weight: 400;
  text-transform: none;
  filter: drop-shadow(0 2px 4px rgba(237, 0, 130, 0.15));
}


.hero-description-block {
  margin-bottom: 28px;
}

.tagline-badge {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-black);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-paragraph {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 420px;
  font-weight: 400;
}


.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn-icon {
  flex-shrink: 0;
}

.btn-primary-blue {
  background-color: var(--blue-primary);
  color: var(--bg-white);
  box-shadow: 0 6px 20px rgba(237, 0, 130, 0.25);
  border: 1.5px solid var(--blue-primary);
}

.btn-primary-blue:hover {
  background-color: var(--blue-hover);
  border-color: var(--blue-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(237, 0, 130, 0.35);
}

.btn-secondary-outline {
  background-color: var(--bg-white);
  color: var(--text-black);
  border: 1.5px solid var(--blue-primary);
  box-shadow: 0 2px 8px rgba(237, 0, 130, 0.05);
}

.btn-secondary-outline:hover {
  background-color: var(--bg-light-blue);
  color: var(--blue-primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(237, 0, 130, 0.15);
}

.w-full {
  width: 100%;
}


.trust-indicators-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(237, 0, 130, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-icon {
  color: var(--blue-primary);
  flex-shrink: 0;
}

.trust-text {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-black);
  letter-spacing: 0.2px;
}

.trust-divider {
  width: 1px;
  height: 14px;
  background-color: rgba(237, 0, 130, 0.18);
}


.hero-visual-right {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}


.tilted-full-wrapper {
  position: relative;
  width: 100%;
  height: 640px;
  margin-right: 0;
}


.tilted-layer-back {
  position: absolute;
  top: -12px;
  right: -20px;
  width: 100%;
  height: calc(100% + 24px);
  background: linear-gradient(135deg, var(--bg-light-blue) 0%, rgba(237, 0, 130, 0.12) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

.tilted-layer-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(237, 0, 130, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}


.tilted-layer-border {
  position: absolute;
  top: -4px;
  left: -4px;
  width: calc(100% + 4px);
  height: calc(100% + 8px);
  border-left: 2px solid rgba(237, 0, 130, 0.35);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 2;
  pointer-events: none;
}


.tilted-media-frame {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
  box-shadow: -15px 20px 45px rgba(237, 0, 130, 0.12);
  background-color: var(--bg-soft);
  will-change: transform;
}


.tilted-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  z-index: 1;
  transform: translateZ(0);
}


.tilted-overlay-blue {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(237, 0, 130, 0.04) 0%, rgba(179, 0, 98, 0.2) 100%);
  z-index: 3;
  pointer-events: none;
}


.tilted-video-controls {
  position: absolute;
  bottom: 30px;
  left: 20%;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-video-control {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(237, 0, 130, 0.2);
  color: var(--blue-primary);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(11, 47, 107, 0.1);
  transition: all var(--transition-fast);
}

.btn-video-control:hover {
  background: var(--blue-primary);
  color: var(--bg-white);
  border-color: var(--blue-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(23, 78, 166, 0.25);
}

.control-label {
  font-size: 11px;
  letter-spacing: 0.5px;
}


.editorial-label {
  position: absolute;
  bottom: 30px;
  right: 50px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(23, 78, 166, 0.15);
  box-shadow: 0 6px 20px rgba(11, 47, 107, 0.08);
}

.editorial-line {
  width: 2px;
  height: 24px;
  background-color: var(--blue-primary);
  border-radius: 2px;
}

.editorial-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: var(--text-black);
  line-height: 1.1;
  font-weight: 600;
}


.deco-accent {
  position: absolute;
  pointer-events: none;
  z-index: 4;
}

.deco-diamond-1 {
  top: 40px;
  left: 18%;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--blue-primary);
  transform: rotate(45deg);
  opacity: 0.6;
}

.deco-circle-1 {
  bottom: 90px;
  left: 12%;
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(23, 78, 166, 0.4);
  border-radius: 50%;
}


.models-section {
  position: relative;
  width: 100%;
  min-height: 720px;
  padding: 70px 20px 65px;
  background-color: var(--bg-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.models-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
}


.eyebrow-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.eyebrow-line {
  width: 45px;
  height: 1px;
  background-color: var(--blue-royal);
}

.eyebrow-text {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--blue-royal);
  letter-spacing: 4.5px;
  text-transform: uppercase;
}


.main-title {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 700;
  color: var(--text-black);
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.main-title .highlight-blue {
  color: var(--blue-royal);
}


.section-description {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 16px;
}


.heart-divider {
  display: flex;
  align-items: center;
  gap: 20px;
}

.divider-line {
  width: 42px;
  height: 1px;
  background-color: rgba(237, 0, 130, 0.35);
}

.heart-icon-svg {
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(237, 0, 130, 0.2));
}


.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 18px;
  width: 100%;
  max-width: 1020px;
  margin: 28px 0 34px;
}


.category-card {
  background: var(--bg-white);
  border-radius: 16px;
  border: 1px solid rgba(237, 0, 130, 0.1);
  box-shadow: 0 12px 30px rgba(237, 0, 130, 0.09);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(237, 0, 130, 0.2);
}


.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 125px;
  overflow: hidden;
  background-color: var(--bg-soft);
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.4s ease;
}

.category-card:hover .card-img-wrapper img {
  transform: scale(1.06);
}


.card-info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  height: 54px;
  background-color: var(--bg-white);
}

.category-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--blue-royal);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(237, 0, 130, 0.25);
}

.category-text-meta {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
  overflow: hidden;
}

.category-name {
  font-family: var(--font-serif);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-black);
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.category-subtitle {
  font-size: 9.5px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.card-arrow-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 1px solid var(--blue-royal);
  color: var(--blue-royal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.category-card:hover .card-arrow-btn {
  background-color: var(--blue-royal);
  color: var(--bg-white);
  transform: translateX(3px);
}


.view-all-wrapper {
  margin-bottom: 10px;
}

.btn-view-all-models {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 32px;
  height: 48px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--blue-royal) 0%, var(--blue-deep) 100%);
  color: var(--bg-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(237, 0, 130, 0.38);
  transition: all var(--transition-fast);
}

.btn-view-all-models:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(237, 0, 130, 0.5);
}



.experience-section {
  position: relative;
  width: 100%;
  min-height: 520px;
  padding: 55px 20px;
  background-color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: center;
  gap: 40px;
}


.experience-image-col {
  display: flex;
  justify-content: center;
  position: relative;
}

.experience-image-wrapper {
  position: relative;
  width: 340px;
  height: 390px;
}


.experience-backdrop-tilted-1 {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(237, 0, 130, 0.45) 0%, rgba(252, 230, 241, 0.9) 100%);
  border-radius: 22px;
  transform: rotate(-4.5deg);
  transform-origin: center;
  z-index: 1;
  opacity: 0.85;
}


.experience-backdrop-tilted-2 {
  position: absolute;
  top: -8px;
  right: -12px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(252, 230, 241, 0.95) 0%, rgba(237, 0, 130, 0.3) 100%);
  border-radius: 22px;
  transform: rotate(4deg);
  transform-origin: center;
  z-index: 2;
}


.experience-main-frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 8px solid var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(237, 0, 130, 0.16);
  background-color: var(--bg-soft);
  transform: rotate(0deg);
}

.experience-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: rotate(0deg);
  transition: transform 0.5s ease;
}

.experience-main-frame:hover .experience-img {
  transform: scale(1.04);
}


.floating-premium-card {
  position: absolute;
  bottom: 15px;
  right: -20px;
  z-index: 10;
  width: 150px;
  padding: 15px 13px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 35px rgba(237, 0, 130, 0.18);
  text-align: left;
  transform: rotate(0deg);
  transition: transform var(--transition-fast);
}

.floating-premium-card:hover {
  transform: translateY(-3px);
}

.crown-icon-wrapper {
  margin-bottom: 4px;
}

.floating-card-title {
  font-family: var(--font-serif);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-black);
  line-height: 1.15;
}

.floating-card-line {
  width: 20px;
  height: 1.5px;
  background-color: var(--blue-royal);
  margin: 6px 0;
}

.floating-card-text {
  font-size: 9.5px;
  
  color: #19191a;
  line-height: 1.35;
}


.experience-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}


.exp-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.exp-eyebrow-line {
  width: 35px;
  height: 1px;
  background-color: var(--blue-royal);
}

.exp-eyebrow-text {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--blue-royal);
  letter-spacing: 3px;
  text-transform: uppercase;
}


.exp-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--text-black);
  line-height: 1.02;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.exp-title .highlight-blue {
  color: var(--blue-royal);
}


.exp-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
  margin-bottom: 30px;
}

.exp-paragraph {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.65;
  font-weight: 400;
}


.exp-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn-explore-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 185px;
  height: 44px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--blue-royal) 0%, var(--blue-vibrant) 100%);
  color: var(--bg-white);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(237, 0, 130, 0.35);
  transition: all var(--transition-fast);
}

.btn-explore-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(237, 0, 130, 0.48);
}

.exp-cta-sep {
  width: 1px;
  height: 22px;
  background-color: rgba(237, 0, 130, 0.2);
}

.exp-brand-values {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 8px;
  font-weight: 700;
  color: var(--blue-royal);
  letter-spacing: 2px;
}

.exp-val-dot {
  opacity: 0.4;
  font-weight: 400;
}





@media (min-width: 1600px) {
  .hero-container {
    grid-template-columns: 40% 60%;
  }
  .heading-line {
    font-size: 82px;
  }
  .script-tagline {
    font-size: 48px;
  }
  .tilted-full-wrapper {
    height: 700px;
  }
}


@media (max-width: 1366px) {
  .nav-wrapper {
    padding: 18px 30px 0;
  }
  .hero-container {
    padding-left: 30px;
    grid-template-columns: 44% 56%;
  }
  .heading-line {
    font-size: 64px;
  }
  .script-tagline {
    font-size: 38px;
  }
  .tilted-full-wrapper {
    height: 580px;
  }

  .category-grid {
    gap: 16px 14px;
  }

  .experience-image-wrapper {
    width: 310px;
    height: 360px;
  }
  .exp-title {
    font-size: 36px;
  }
}


@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .btn-whatsapp-nav {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    padding: 20px 20px 0;
    gap: 40px;
    text-align: center;
  }

  .hero-content-left {
    max-width: 100%;
    align-items: center;
    padding-right: 0;
  }

  .hero-heading {
    align-items: center;
  }

  .heading-line {
    font-size: 64px;
  }

  .script-tagline {
    font-size: 38px;
    margin-left: 0;
  }

  .hero-paragraph {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .trust-indicators-row {
    justify-content: center;
  }

  .hero-visual-right {
    min-height: 375px;
  }

  .tilted-full-wrapper {
    height: 500px;
  }

  .tilted-layer-back,
  .tilted-layer-border,
  .tilted-media-frame {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    border-radius: 16px;
  }

  .tilted-video-controls {
    left: 20px;
  }

  .editorial-label {
    right: 20px;
  }

  
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 620px;
  }

  
  .experience-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .experience-content-col {
    align-items: center;
    text-align: center;
  }

  .exp-eyebrow {
    justify-content: center;
  }

  .exp-description {
    margin: 0 auto 20px;
  }

  .exp-cta-row {
    justify-content: center;
  }
}


@media (max-width: 768px) {
  .nav-wrapper {
    padding: 14px 16px 0;
  }
  .navbar-glass {
    height: 60px;
    padding: 0 16px;
  }
  .logo-title {
    font-size: 24px;
  }
  .heading-line {
    font-size: 50px;
  }
  .script-tagline {
    font-size: 32px;
  }

  .tilted-full-wrapper {
    height: 420px;
  }

  .trust-indicators-row {
    flex-wrap: wrap;
    gap: 12px;
  }

  .trust-divider {
    display: none;
  }

  .main-title {
    font-size: 34px;
  }

  .exp-title {
    font-size: 32px;
  }

  .exp-features-grid {
    flex-direction: column;
    gap: 16px;
  }

  .exp-grid-divider {
    display: none;
  }
}


@media (max-width: 430px) {
  .hero-header {
    min-height: auto;
    padding-bottom: 20px;
  }

  .hero-container {
    padding: 16px 12px 0;
    gap: 25px;
  }

  .heading-line {
    font-size: 40px;
  }

  .script-tagline {
    font-size: 26px;
  }

  .tagline-badge {
    font-size: 11px;
  }

  .hero-paragraph {
    font-size: 14px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-cta {
    width: 100%;
  }

  .tilted-full-wrapper {
    height: 360px;
  }

  .editorial-label {
    bottom: 15px;
    right: 15px;
    padding: 6px 10px;
  }

  .tilted-video-controls {
    bottom: 15px;
    left: 15px;
  }

  
  .models-section {
    padding: 45px 12px 35px;
  }

  .main-title {
    font-size: 28px;
  }

  .eyebrow-text {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 10px;
  }

  .card-img-wrapper {
    height: 95px;
  }

  .card-info-row {
    padding: 8px 10px;
    gap: 8px;
    height: 48px;
  }

  .category-icon-circle {
    width: 34px;
    height: 34px;
  }

  .category-icon-circle svg {
    width: 18px;
    height: 18px;
  }

  .category-name {
    font-size: 12px;
  }

  .category-subtitle {
    font-size: 8px;
  }

  .card-arrow-btn {
    width: 24px;
    height: 24px;
  }

  .card-arrow-btn svg {
    width: 13px;
    height: 13px;
  }

  
  .experience-section {
    padding: 40px 12px;
  }

  .experience-image-wrapper {
    width: 280px;
    height: 330px;
  }

  .floating-premium-card {
    right: -10px;
    bottom: 10px;
    width: 130px;
    padding: 10px;
  }

  .floating-card-title {
    font-size: 12px;
  }

  .exp-title {
    font-size: 28px;
  }

  .exp-cta-row {
    flex-direction: column;
    width: 100%;
  }

  .btn-explore-now {
    width: 100%;
  }

  .exp-cta-sep {
    display: none;
  }
}


.featured-models-section {
  position: relative;
  width: 100%;
  min-height: 840px;
  padding: 85px 20px 80px;
  
  background: url('../images/second-section-bg.png') center/cover no-repeat fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.featured-models-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}


.featured-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.featured-title-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


.featured-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.feat-eyebrow-line {
  width: 50px;
  height: 1px;
  background-color: var(--blue-royal);
}

.feat-eyebrow-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-royal);
  letter-spacing: 4.5px;
  text-transform: uppercase;
}


.featured-main-title {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 700;
  color: var(--text-black);
  line-height: 1.08;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.featured-main-title .highlight-pink {
  color: var(--blue-primary);
}


.featured-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 400;
}


.btn-view-all-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 195px;
  height: 50px;
  border-radius: 16px;
  background-color: var(--bg-white);
  border: 1.5px solid var(--blue-primary);
  color: var(--blue-primary);
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(237, 0, 130, 0.08);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.btn-view-all-header:hover {
  background-color: var(--blue-primary);
  color: var(--bg-white);
  border-color: var(--blue-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(237, 0, 130, 0.25);
}


.featured-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
  width: 100%;
}


.profile-card {
  width: 100%;
  background: var(--bg-white);
  border-radius: 18px;
  border: 1px solid rgba(237, 0, 130, 0.12);
  box-shadow: 0 10px 30px rgba(237, 0, 130, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(237, 0, 130, 0.18);
}


.card-image-box {
  position: relative;
  width: calc(100% - 18px);
  height: 290px;
  margin: 9px auto 0;
  border-radius: 14px;
  overflow: hidden;
  background-color: var(--bg-soft);
}

.profile-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.4s ease;
}

.profile-card:hover .profile-card-img {
  transform: scale(1.04);
}


.badge-available {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-black);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.status-dot-green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #10B981;
}


.btn-favorite-heart {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(237, 0, 130, 0.2);
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-favorite-heart:hover {
  background: var(--blue-primary);
  color: var(--bg-white);
  border-color: var(--blue-primary);
  transform: scale(1.1);
}


.card-content-box {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background-color: var(--bg-white);
}

.profile-card-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-black);
  line-height: 1.15;
}

.profile-card-meta {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
}


.profile-rating-location {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-black);
}

.rating-count {
  color: var(--text-muted);
  font-weight: 400;
}

.location-box {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}


.profile-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.btn-card-call {
  flex: 1;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 12px;
  background: var(--bg-white);
  border: 1.5px solid var(--blue-primary);
  color: var(--blue-primary);
  font-size: 12.5px;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn-card-call:hover {
  background: var(--bg-light-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(237, 0, 130, 0.12);
}

.btn-card-whatsapp {
  flex: 1;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 12px;
  background: var(--blue-primary);
  border: 1.5px solid var(--blue-primary);
  color: var(--bg-white);
  font-size: 12.5px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(237, 0, 130, 0.22);
  transition: all var(--transition-fast);
}

.btn-card-whatsapp:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(237, 0, 130, 0.32);
}




@media (max-width: 1200px) {
  .featured-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 16px;
  }
  .card-image-box {
    height: 270px;
  }
  .featured-main-title {
    font-size: 40px;
  }
}


@media (max-width: 900px) {
  .featured-header-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .featured-title-group {
    align-items: center;
  }
  .featured-eyebrow {
    justify-content: center;
  }
  .featured-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }
}


@media (max-width: 768px) {
  .featured-main-title {
    font-size: 34px;
  }
}


@media (max-width: 540px) {
  .featured-models-section {
    padding: 50px 14px 40px;
  }
  .featured-header-row {
    gap: 15px;
  }
  .featured-main-title {
    font-size: 28px;
  }
  .featured-subtitle {
    font-size: 14px;
  }
  .btn-view-all-header {
    width: 100%;
    height: 44px;
  }
  .featured-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 10px;
  }
  .card-image-box {
    height: 210px;
    width: calc(100% - 12px);
    margin-top: 6px;
  }
  .card-content-box {
    padding: 12px;
  }
  .profile-card-name {
    font-size: 16px;
  }
  .profile-card-meta {
    font-size: 11.5px;
  }
  .profile-card-actions {
    gap: 6px;
  }
  .btn-card-call,
  .btn-card-whatsapp {
    height: 36px;
    font-size: 11px;
    padding: 0 4px;
  }
}

@media (max-width: 360px) {
  .featured-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .card-image-box {
    height: 280px;
  }
}


.banner-section {
  width: 100%;  
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  
}

.banner-image-wrapper {
  position: relative;
  width: 100%; 
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(237, 0, 130, 0.15);
  border: 1px solid rgba(237, 0, 130, 0.2);
  height: 525px;
  background-color: #FFF0F6;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.banner-image-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(237, 0, 130, 0.22);
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 24px;
}


.banner-overlay-actions {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.banner-overlay-hitbox {
  position: absolute;
  pointer-events: auto;
  border-radius: 30px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}


.btn-banner-call {
  left: 5.2%;
  bottom: 21%;
  width: 8.5%;
  height: 10%;
  min-width: 160px;
  min-height: 48px;
}


.btn-banner-whatsapp {
  left: 14.5%;
  bottom: 21%;
  width: 9%;
  height: 10%;
  min-width: 180px;
  min-height: 48px;
}

.banner-overlay-hitbox:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(237, 0, 130, 0.3);
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.banner-mobile-actions {
  display: none;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.btn-banner-mobile-call,
.btn-banner-mobile-whatsapp {
  flex: 1;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn-banner-mobile-call {
  background: var(--blue-primary);
  border: 1.5px solid var(--blue-primary);
  color: var(--bg-white);
  box-shadow: 0 6px 20px rgba(237, 0, 130, 0.25);
}

.btn-banner-mobile-whatsapp {
  background: var(--bg-white);
  border: 1.5px solid var(--blue-primary);
  color: var(--blue-primary);
  box-shadow: 0 4px 15px rgba(237, 0, 130, 0.1);
}

.btn-banner-mobile-call:hover,
.btn-banner-mobile-whatsapp:hover {
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .banner-section {
    padding: 40px 16px 50px;
  }
  .banner-overlay-actions {
    display: none;
  }
  .banner-mobile-actions {
    display: flex;
  }
}


.site-footer {
  position: relative;
  width: 100%;
  background-color: #FFFFFF;
  overflow: hidden;
  padding-top: 75px;
  padding-bottom: 20px;
}

.footer-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}


.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.95fr 1fr 1fr 1.25fr;
  gap: 36px;
}


.footer-col-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer-logo-img {
  height: 52px;
  max-width: 240px;
}

.drawer-logo-img {
  height: 40px;
  max-width: 180px;
}

.footer-brand-desc {
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.55;
  color: #64748B;
  max-width: 230px;
  margin-bottom: 22px;
}


.footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-circle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--bg-light-blue);
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(237, 0, 130, 0.06);
}

.social-circle-btn:hover {
  background-color: var(--blue-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(237, 0, 130, 0.25);
}


.footer-heading {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 20px;
}


.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.4;
  color: #52627A;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-link:hover {
  color: var(--blue-primary);
  transform: translateX(3px);
}


.newsletter-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  color: #64748B;
  max-width: 250px;
  margin-bottom: 18px;
}

.newsletter-form {
  width: 100%;
}

.newsletter-input-wrapper {
  position: relative;
  width: 100%;
  max-width: 255px;
  height: 54px;
}

.newsletter-input {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  border: 1.5px solid #D8E8FA;
  background: #FFFFFF;
  padding: 0 60px 0 22px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: #0F172A;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.newsletter-input::placeholder {
  color: #7A879A;
}

.newsletter-input:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(237, 0, 130, 0.12);
}

.newsletter-submit-btn {
  position: absolute;
  right: 3px;
  top: 3px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--blue-primary);
  border: none;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(237, 0, 130, 0.28);
  transition: all var(--transition-fast);
}

.newsletter-submit-btn:hover {
  background-color: var(--blue-hover);
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(237, 0, 130, 0.38);
}


.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #DCEAF8;
  margin-top: 55px;
  margin-bottom: 30px;
}


.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 110px; 
}

.footer-copyright {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #151516;
}

.footer-trust-indicators {
  display: flex;
  align-items: center;
  gap: 18px;
}

.trust-indicator-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-icon {
  flex-shrink: 0;
}

.trust-text {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: #334155;
}

.trust-divider {
  width: 1px;
  height: 18px;
  background-color: #DCEAF8;
}


.footer-bottom-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
  display: block;
}


@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.9fr 1fr 1fr 1.2fr;
    gap: 24px;
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 30px;
  }
  .footer-col-brand {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-top: 55px;
  }
  .footer-container {
    padding: 0 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer-col-brand {
    grid-column: span 1;
    align-items: center;
  }
  .banner-image-wrapper{
    height: auto;
    margin-bottom: 2%;
  }
  .footer-brand-desc {
    max-width: 100%;
  }
  .footer-social-links {
    justify-content: center;
  }
  .newsletter-desc {
    max-width: 100%;
  }
  .newsletter-input-wrapper {
    max-width: 100%;
  }
  .footer-bottom-row {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding-bottom: 80px;
  }
  .footer-trust-indicators {
    flex-direction: column;
    gap: 12px;
  }
  .trust-divider {
    display: none;
  }
}


.floating-actions-container {
  pointer-events: none;
}

.floating-btn {
  position: fixed;
  bottom: 24px;
  z-index: 999;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 20px 0 6px;
  border-radius: 30px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}


.floating-btn-call {
  left: 24px;
  background: var(--bg-white);
  border: 1.5px solid var(--blue-primary);
  color: var(--blue-primary);
}

.floating-btn-call:hover {
  background: var(--blue-primary);
  color: #FFFFFF;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 35px rgba(237, 0, 130, 0.35);
}


.floating-btn-whatsapp {
  right: 24px;
  background: #25D366;
  border: 1.5px solid #25D366;
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.floating-btn-whatsapp:hover {
  background: #20BA5A;
  border-color: #20BA5A;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.45);
}

.floating-btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-btn-call .floating-btn-icon {
  background: var(--bg-light-blue);
  color: var(--blue-primary);
}

.floating-btn-call:hover .floating-btn-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.floating-btn-whatsapp .floating-btn-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}


.floating-btn-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  z-index: -1;
  animation: floatPulse 2s infinite;
}

.floating-btn-call .floating-btn-pulse {
  box-shadow: 0 0 0 0 rgba(237, 0, 130, 0.4);
}

.floating-btn-whatsapp .floating-btn-pulse {
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
}

@keyframes floatPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(237, 0, 130, 0.4);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(237, 0, 130, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(237, 0, 130, 0);
  }
}


@media (max-width: 480px) {
  .floating-btn {
    bottom: 16px;
    height: 46px;
    padding: 0 14px 0 4px;
    font-size: 13px;
  }
  .floating-btn-call {
    left: 14px;
  }
  .floating-btn-whatsapp {
    right: 14px;
  }
  .floating-btn-icon {
    width: 36px;
    height: 36px;
  }
}


.age-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.age-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.age-modal-box {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 45px 36px 110px; 
  text-align: center;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(237, 0, 130, 0.2);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.age-modal-overlay.active .age-modal-box {
  transform: translateY(0) scale(1);
}


.age-badge-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 2.5px solid var(--blue-primary);
  color: var(--blue-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(237, 0, 130, 0.18);
}

.age-modal-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-black);
  margin-bottom: 12px;
  line-height: 1.2;
}

.age-modal-text {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.age-modal-text strong {
  color: var(--text-black);
}


.age-modal-actions {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.btn-age-accept {
  width: 100%;
  height: 52px;
  border-radius: 16px;
  background-color: var(--blue-primary);
  border: none;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(237, 0, 130, 0.3);
  transition: all var(--transition-fast);
}

.btn-age-accept:hover {
  background-color: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(237, 0, 130, 0.4);
}

.btn-age-decline {
  width: 100%;
  height: 46px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid #CBD5E1;
  color: #64748B;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-age-decline:hover {
  background: #F1F5F9;
  border-color: #94A3B8;
  color: #334155;
}


.age-modal-wave-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.simple-content-section {
  width: 100%;
  padding: 20px 20px;
  background: var(--bg-white);
}

.simple-content-container {
  max-width: 1240px;
  margin: 0 auto;
  background: var(--bg-soft);
  border-radius: 20px;
  padding: 40px 45px;
  border: 1px solid rgba(237, 0, 130, 0.12);
  box-shadow: 0 10px 30px rgba(237, 0, 130, 0.05);
}

.simple-content-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-black);
  line-height: 1.3;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.simple-content-subtitle {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-black);
  margin-top: 26px;
  margin-bottom: 12px;
}

.simple-content-paragraph {
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.75;
  color: #161617;
  margin-bottom: 16px;
}

.simple-content-paragraph:last-child {
  margin-bottom: 0;
}

.simple-content-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
}

.simple-content-list li {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
  position: relative;
  padding-left: 26px;
}

.simple-content-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-primary);
  font-weight: 800;
  font-size: 16px;
}

@media (max-width: 768px) {
  .simple-content-container {
    padding: 28px 20px;
    border-radius: 16px;
  }
  .simple-content-title {
    font-size: 22px;
  }
  .simple-content-subtitle {
    font-size: 18px;
  }
  .simple-content-paragraph {
    font-size: 14.5px;
  }
  .simple-content-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .btn-card-call span,
  .btn-card-whatsapp span {
    display: none !important;
  }
  .btn-card-call,
  .btn-card-whatsapp {
    height: 38px !important;
    padding: 0 !important;
    gap: 0 !important;
    justify-content: center !important;
    border-radius: 10px !important;
  }
  .btn-card-call svg,
  .btn-card-whatsapp svg {
    width: 17px !important;
    height: 17px !important;
  }
}
