 
    body {
      background: #fcfaf8;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    }
    /* fullscreen search overlay */
    .search-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(20, 15, 12, 0.94);
      backdrop-filter: blur(10px);
      z-index: 9999;
      display: none;
      align-items: center;
      justify-content: center;
      transition: opacity 0.3s;
    }
    .search-overlay.show {
      display: flex;
    }
    .search-overlay .close-btn {
      position: absolute;
      top: 2rem;
      right: 2.5rem;
      font-size: 2.8rem;
      color: #f0e7e0;
      cursor: pointer;
      background: none;
      border: 0;
      transition: 0.2s;
    }
    .search-overlay .close-btn:hover {
      transform: rotate(90deg);
      color: #fff;
    }
    .search-overlay input {
      width: 70%;
      max-width: 700px;
      padding: 1.2rem 2rem;
      font-size: 1.8rem;
      border: none;
      border-radius: 80px;
      background: rgba(255, 245, 235, 0.15);
      backdrop-filter: blur(4px);
      color: #fff;
      outline: 2px solid rgba(255, 215, 190, 0.2);
      transition: 0.2s;
      padding-left: 2.5rem;
    }
    .search-overlay input::placeholder {
      color: #d6c9bf;
      font-weight: 300;
      letter-spacing: 0.5px;
    }
    .search-overlay input:focus {
      outline: 2px solid #dbb8a4;
      background: rgba(255, 245, 235, 0.2);
    }
    .search-overlay .search-icon-big {
      position: relative;
      left: -3.8rem;
      color: #cfb9aa;
      font-size: 1.8rem;
    }
    /* header */
    .navbar-custom {
      background: #ffffffdd;
      backdrop-filter: blur(6px);
      box-shadow: 0 4px 16px rgba(0,0,0,0.02);
      padding: 0.6rem 0;
    }
    .navbar-brand {
      font-weight: 600;
      letter-spacing: -0.5px;
      color: #2b1f19;
    }
    .navbar-brand i {
      color: #b917e7;
      margin-right: 6px;
    }
    .nav-link {
      color: #3d322b;
      font-weight: 450;
      margin: 0 0.2rem;
      border-radius: 30px;
      padding: 0.5rem 1rem;
    }
    .nav-link:hover {
      background: #f3ede8;
      color: #1f1612;
    }
    .nav-link i {
      font-size: 1.2rem;
    }
    .search-icon-nav {
      cursor: pointer;
      font-size: 1.4rem;
      color: #3d322b;
      transition: 0.2s;
      padding: 0 0.5rem;
    }
    .search-icon-nav:hover {
      color: #a4816d;
    }
    /* slider / carousel */
    .carousel-item img {
      height: 380px;
      object-fit: cover;
      filter: brightness(0.92);
    }
    .carousel-caption {
      background: rgba(20, 15, 12, 0.3);
      backdrop-filter: blur(3px);
      border-radius: 20px;
      padding: 1.5rem 2.5rem;
      max-width: 500px;
      left: 5%;
      right: auto;
      top: 20%;
      bottom: auto;
      text-align: left;
    }
    .carousel-caption h5 {
      font-size: 2rem;
      font-weight: 300;
      letter-spacing: -0.5px;
    }
    .carousel-caption p {
      font-weight: 300;
      opacity: 0.9;
    }
    /* cards */
    .card {
      border: none;
      border-radius: 1.25rem;
      transition: 0.2s ease;
      background: #ffffff;
    }
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 1.2rem 2.4rem rgba(0,0,0,0.04);
    }
    .card-img-top {
      border-top-left-radius: 1.25rem;
      border-top-right-radius: 1.25rem;
      object-fit: cover;
      height: 240px;
      background: #ece5df;
    }
    .badge-eye {
      background: #ffd3fa;
      color: #3d352e;
      font-weight: 400;
      padding: 0.3rem 1rem;
      border-radius: 30px;
    }
    .stat-item {
      background: #ffd3fa;
      padding: 0.2rem 0.9rem;
      border-radius: 40px;
      font-size: 0.8rem;
      color: #2c2520;
    }
    .stat-item i {
      margin-right: 4px;
      color: #a18476;
    }
    .model-badge {
      background: #ffd3fa;
      border-radius: 30px;
      padding: 0.2rem 1rem;
      font-size: 0.75rem;
      color: #2b1f1a;
    }
    .section-title {
      font-weight: 300;
      letter-spacing: -0.3px;
      color: #2c241f;
      border-bottom: 2px solid #ded6cf;
      padding-bottom: 0.6rem;
      display: inline-block;
    }
    /* welcome section */
    .welcome-section {
      background: #9e25b6;
      border-radius: 2rem;
      padding: 2.8rem 2rem;
      box-shadow: 0 6px 20px rgba(0,0,0,0.01);
    }
    .welcome-img {
      border-radius: 1.8rem;
      object-fit: cover;
      width: 100%;
      height: 280px;
      background: #ddd2c9;
    }
    /* contact form */
    .contact-box {
      background: #ffffff;
      border-radius: 2rem;
      padding: 2.2rem 2rem;
      box-shadow: 0 4px 18px rgba(0,0,0,0.02);
    }
    .contact-box .form-control {
      border-radius: 40px;
      padding: 0.7rem 1.5rem;
      border: 1px solid #e3d9d2;
      background: #fcf9f7;
    }
    .contact-box .form-control:focus {
      border-color: #b79886;
      box-shadow: 0 0 0 3px rgba(183, 152, 134, 0.2);
    }
    .btn-submit {
      background: #2b1f19;
      color: white;
      border-radius: 60px;
      padding: 0.6rem 2.5rem;
      border: none;
      font-weight: 500;
      transition: 0.2s;
    }
    .btn-submit:hover {
      background: #4d3a31;
      color: #fff;
    }
    /* footer */
    .footer-custom {
      background: #4a17a6;
      color: #d6c9bf;
      border-radius: 2rem 2rem 0 0;
      padding: 2.5rem 0 1.5rem;
      margin-top: 3rem;
    }
    .footer-custom a {
      color: #d6c9bf;
      text-decoration: none;
    }
    .footer-custom a:hover {
      color: #f0e7e0;
      text-decoration: underline;
    }
    .footer-custom .social i {
      font-size: 1.4rem;
      margin-right: 1rem;
      color: #b09383;
      transition: 0.2s;
    }
    .footer-custom .social i:hover {
      color: #e6d3c7;
    }
    /* Blog cards */
    .blog-card .card-img-top {
      height: 180px;
    }
    .blog-card .card-title {
      font-weight: 500;
      font-size: 1.1rem;
    }
    .blog-card .card-text {
      font-size: 0.9rem;
      color: #5f534b;
    }
    /* Wall of Fame - Gallery */
    .wall-item {
      border-radius: 1.2rem;
      overflow: hidden;
      position: relative;
      transition: 0.3s ease;
      aspect-ratio: 1 / 1;
      background: #e9e4df;
    }
    .wall-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.4s ease;
    }
    .wall-item:hover img {
      transform: scale(1.04);
    }
    .wall-item .overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 0.6rem 1rem;
      background: linear-gradient(transparent, rgba(0,0,0,0.5));
      color: #fff;
      font-size: 0.8rem;
      opacity: 0;
      transition: 0.3s;
    }
    .wall-item:hover .overlay {
      opacity: 1;
    }
    .wall-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    @media (max-width: 768px) {
      .wall-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 480px) {
      .wall-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 576px) {
      .carousel-item img { height: 260px; }
      .carousel-caption { top: 10%; left: 5%; padding: 1rem; }
      .search-overlay input { width: 85%; font-size: 1.4rem; }
      .welcome-section { padding: 1.5rem; }
    }
    /* AOS override */
    [data-aos] { pointer-events: none; }
    [data-aos].aos-animate { pointer-events: auto; }
 /* model detail */
    .detail-card {
      background: #ffffff;
      border-radius: 2rem;
      padding: 2rem 2rem 2.5rem;
      box-shadow: 0 8px 28px rgba(0,0,0,0.02);
    }
    .detail-card .model-name {
      font-weight: 300;
      font-size: 2.2rem;
      letter-spacing: -0.5px;
      color: #1f1814;
    }
    .detail-card .model-name small {
      font-weight: 300;
      font-size: 1rem;
      color: #8f7a6e;
      letter-spacing: 0.3px;
    }
    .stat-detail {
      background: #f6f1ed;
      border-radius: 60px;
      padding: 0.4rem 1.4rem;
      font-size: 0.9rem;
      color: #2c2520;
      display: inline-block;
    }
    .stat-detail i {
      margin-right: 6px;
      color: #a18476;
    }
    .badge-detail {
      background: #f0ebe6;
      color: #3d352e;
      font-weight: 400;
      padding: 0.3rem 1.2rem;
      border-radius: 40px;
      font-size: 0.85rem;
    }
    .bio-text {
      color: #4d423c;
      line-height: 1.7;
      font-weight: 350;
    }
    /* owl slider customization */
    .owl-carousel .owl-item img {
      border-radius: 1.5rem;
      object-fit: cover;
      height: 420px;
      width: 100%;
      background: #e9e4df;
    }
    .owl-theme .owl-nav [class*='owl-'] {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(4px);
      color: #2b1f19;
      border-radius: 50%;
      width: 44px;
      height: 44px;
      display: flex !important;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.04);
      transition: 0.2s;
    }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #fff;
      color: #000;
    }
    .owl-theme .owl-nav {
      margin-top: 0;
      position: absolute;
      top: 50%;
      width: 100%;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      pointer-events: none;
    }
    .owl-theme .owl-nav button {
      pointer-events: auto;
    }
    .owl-theme .owl-dots .owl-dot span {
      background: #d6c9bf;
    }
    .owl-theme .owl-dots .owl-dot.active span {
      background: #b48d7a;
    }
    .gallery-thumb {
      cursor: pointer;
      border-radius: 1rem;
      transition: 0.2s;
      opacity: 0.6;
      border: 2px solid transparent;
    }
    .gallery-thumb:hover, .gallery-thumb.active {
      opacity: 1;
      border-color: #b48d7a;
    }

    /* ===== HEART SHOWER ANIMATION ===== */
.heart-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  overflow: hidden;
}

.heart {
  position: absolute;
  font-size: 20px;
  color: #ff6b9d;
  animation: fall linear infinite;
  opacity: 0.7;
  text-shadow: 0 0 10px rgba(255, 107, 157, 0.3);
}

/* Different positions, sizes, and colors for variety */
.heart:nth-child(1) { left: 5%; animation-duration: 8s; animation-delay: 0s; font-size: 18px; }
.heart:nth-child(2) { left: 12%; animation-duration: 11s; animation-delay: 1s; font-size: 24px; }
.heart:nth-child(3) { left: 20%; animation-duration: 9s; animation-delay: 2s; font-size: 16px; }
.heart:nth-child(4) { left: 28%; animation-duration: 12s; animation-delay: 0.5s; font-size: 28px; }
.heart:nth-child(5) { left: 35%; animation-duration: 10s; animation-delay: 3s; font-size: 20px; }
.heart:nth-child(6) { left: 42%; animation-duration: 8.5s; animation-delay: 1.5s; font-size: 22px; }
.heart:nth-child(7) { left: 50%; animation-duration: 13s; animation-delay: 0s; font-size: 18px; }
.heart:nth-child(8) { left: 58%; animation-duration: 9.5s; animation-delay: 2.5s; font-size: 26px; }
.heart:nth-child(9) { left: 65%; animation-duration: 11.5s; animation-delay: 1s; font-size: 20px; }
.heart:nth-child(10) { left: 72%; animation-duration: 8s; animation-delay: 3.5s; font-size: 16px; }
.heart:nth-child(11) { left: 80%; animation-duration: 10.5s; animation-delay: 0.5s; font-size: 24px; }
.heart:nth-child(12) { left: 88%; animation-duration: 12.5s; animation-delay: 2s; font-size: 20px; }
.heart:nth-child(13) { left: 95%; animation-duration: 9s; animation-delay: 1.5s; font-size: 18px; }
.heart:nth-child(14) { left: 15%; animation-duration: 14s; animation-delay: 4s; font-size: 30px; }
.heart:nth-child(15) { left: 45%; animation-duration: 7.5s; animation-delay: 3s; font-size: 22px; }
.heart:nth-child(16) { left: 75%; animation-duration: 13.5s; animation-delay: 4.5s; font-size: 28px; }
.heart:nth-child(17) { left: 32%; animation-duration: 10s; animation-delay: 5s; font-size: 16px; }
.heart:nth-child(18) { left: 62%; animation-duration: 11s; animation-delay: 3.5s; font-size: 24px; }
.heart:nth-child(19) { left: 8%; animation-duration: 9.5s; animation-delay: 4s; font-size: 20px; }
.heart:nth-child(20) { left: 52%; animation-duration: 12s; animation-delay: 5.5s; font-size: 26px; }

/* Heart color variations */
.heart:nth-child(odd) { color: #ff6b9d; }
.heart:nth-child(3n) { color: #ff4081; }
.heart:nth-child(5n+2) { color: #ff80ab; }
.heart:nth-child(7n+4) { color: #ff4081; }
.heart:nth-child(11n+6) { color: #f06292; }

/* Fall animation */
@keyframes fall {
  0% {
    transform: translateY(-100px) rotate(0deg) scale(1);
    opacity: 0.8;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateY(110vh) rotate(720deg) scale(0.6);
    opacity: 0.2;
  }
}

/* Floating hearts that go up (additional effect) */
.heart-float {
  position: fixed;
  pointer-events: none;
  z-index: 9997;
  font-size: 14px;
  color: rgba(255, 107, 157, 0.6);
  animation: floatUp 15s linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(0.3) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% {
    transform: translateY(-100vh) scale(1.2) rotate(360deg);
    opacity: 0;
  }
}

/* ===== STICKY WHATSAPP & CALLING ICONS ===== */
.sticky-contact {
  position: fixed;
  right: 20px;
  bottom: 120px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: slideInRight 0.6s ease-out;
}

.sticky-contact .contact-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  border: none;
  cursor: pointer;
}

.sticky-contact .contact-btn:hover {
  transform: scale(1.1) translateX(-4px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}

.sticky-contact .contact-btn .tooltip-text {
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.sticky-contact .contact-btn .tooltip-text::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid rgba(0, 0, 0, 0.8);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.sticky-contact .contact-btn:hover .tooltip-text {
  opacity: 1;
  right: 78px;
}

/* WhatsApp Button */
.sticky-contact .whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.sticky-contact .whatsapp-btn:hover {
  background: linear-gradient(135deg, #20bd5a, #0f7a6b);
}

/* Call Button */
.sticky-contact .call-btn {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.sticky-contact .call-btn:hover {
  background: linear-gradient(135deg, #ff5252, #d35400);
}

/* Pulse animation for attention */
.sticky-contact .contact-btn.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.sticky-contact .call-btn.pulse {
  animation-name: pulseCall;
}

@keyframes pulseCall {
  0% {
    box-shadow: 0 0 0 0 rgba(238, 90, 36, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(238, 90, 36, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(238, 90, 36, 0);
  }
}

/* Slide in animation */
@keyframes slideInRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .sticky-contact {
    right: 12px;
    bottom: 100px;
    gap: 10px;
  }
  
  .sticky-contact .contact-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  
  .sticky-contact .contact-btn .tooltip-text {
    display: none;
  }
}

@media (max-width: 480px) {
  .sticky-contact {
    right: 8px;
    bottom: 80px;
    gap: 8px;
  }
  
  .sticky-contact .contact-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

/* Badge notification (optional) */
.sticky-contact .contact-btn .badge-notification {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ff4757;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  animation: bounceBadge 1.5s infinite;
}

@keyframes bounceBadge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

 /* ===== BREADCRUMB ===== */
    .breadcrumb-custom {
      background: transparent;
      padding: 1.5rem 0 0.5rem;
    }
    .breadcrumb-custom .breadcrumb-item a {
      color: #8f7a6e;
      text-decoration: none;
      transition: 0.2s;
    }
    .breadcrumb-custom .breadcrumb-item a:hover {
      color: #b917e7;
    }
    .breadcrumb-custom .breadcrumb-item.active {
      color: #2b1f19;
      font-weight: 500;
    }

    /* ===== ABOUT HERO ===== */
    .about-hero {
      background: linear-gradient(135deg, #f8f0eb 0%, #f0e7e0 100%);
      border-radius: 2rem;
      padding: 4rem 3rem;
      position: relative;
      overflow: hidden;
    }
    .about-hero::before {
      content: '♥';
      position: absolute;
      right: -50px;
      top: -50px;
      font-size: 200px;
      color: rgba(185, 23, 231, 0.05);
      transform: rotate(15deg);
    }
    .about-hero h1 {
      font-weight: 300;
      font-size: 3rem;
      color: #2b1f19;
      letter-spacing: -1px;
    }
    .about-hero h1 span {
      color: #b917e7;
    }
    .about-hero p {
      color: #5f534b;
      font-size: 1.1rem;
      max-width: 600px;
      line-height: 1.8;
    }
    .about-hero .badge-about {
      background: rgba(185, 23, 231, 0.1);
      color: #b917e7;
      padding: 0.5rem 1.5rem;
      border-radius: 60px;
      font-weight: 400;
      font-size: 0.9rem;
    }

    /* ===== STATS / COUNTER SECTION ===== */
    .stats-section {
      padding: 3rem 0;
    }
    .stat-box {
      background: #ffffff;
      border-radius: 1.5rem;
      padding: 2rem 1.5rem;
      text-align: center;
      box-shadow: 0 4px 20px rgba(0,0,0,0.02);
      transition: 0.3s ease;
      border: 1px solid #f0ece8;
    }
    .stat-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.05);
      border-color: #e8d9d0;
    }
    .stat-box .stat-number {
      font-size: 3.2rem;
      font-weight: 300;
      color: #2b1f19;
      line-height: 1;
      font-family: system-ui, -apple-system, sans-serif;
    }
    .stat-box .stat-number .counter {
      display: inline-block;
    }
    .stat-box .stat-label {
      color: #8f7a6e;
      font-size: 0.95rem;
      margin-top: 0.5rem;
      letter-spacing: 0.5px;
    }
    .stat-box .stat-icon {
      font-size: 2rem;
      color: #b917e7;
      margin-bottom: 0.5rem;
      display: block;
      opacity: 0.6;
    }

    /* ===== ABOUT CONTENT ===== */
    .about-content {
      padding: 3rem 0;
    }
    .about-content h2 {
      font-weight: 300;
      color: #2b1f19;
      margin-bottom: 1.5rem;
    }
    .about-content h2 span {
      color: #b917e7;
    }
    .about-content p {
      color: #5f534b;
      line-height: 1.9;
      font-weight: 350;
    }
    .about-content .feature-list {
      list-style: none;
      padding: 0;
    }
    .about-content .feature-list li {
      padding: 0.7rem 0;
      color: #4d423c;
      display: flex;
      align-items: center;
      gap: 12px;
      border-bottom: 1px solid #f0ece8;
    }
    .about-content .feature-list li:last-child {
      border-bottom: none;
    }
    .about-content .feature-list li i {
      color: #b917e7;
      font-size: 1.2rem;
      width: 24px;
    }

    /* ===== TEAM / VALUES ===== */
    .value-card {
      background: #ffffff;
      border-radius: 1.5rem;
      padding: 2rem 1.5rem;
      text-align: center;
      border: 1px solid #f0ece8;
      transition: 0.3s ease;
      height: 100%;
    }
    .value-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    }
    .value-card .value-icon {
      font-size: 2.5rem;
      color: #b917e7;
      margin-bottom: 1rem;
      display: block;
    }
    .value-card h5 {
      font-weight: 500;
      color: #2b1f19;
    }
    .value-card p {
      color: #8f7a6e;
      font-size: 0.9rem;
      line-height: 1.6;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .about-hero {
        padding: 2.5rem 1.5rem;
      }
      .about-hero h1 {
        font-size: 2rem;
      }
      .stat-box .stat-number {
        font-size: 2.4rem;
      }
      .about-hero::before {
        font-size: 100px;
        right: -20px;
        top: -20px;
      }
    }
    @media (max-width: 480px) {
      .about-hero h1 {
        font-size: 1.6rem;
      }
      .stat-box .stat-number {
        font-size: 2rem;
      }
      .stat-box {
        padding: 1.5rem 1rem;
      }
    }

    /* ===== STICKY WHATSAPP & CALLING ICONS ===== */
    .sticky-contact {
      position: fixed;
      right: 20px;
      bottom: 120px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      gap: 12px;
      animation: slideInRight 0.6s ease-out;
    }
    .sticky-contact .contact-btn {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: #fff;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
      position: relative;
      border: none;
      cursor: pointer;
    }
    .sticky-contact .contact-btn:hover {
      transform: scale(1.1) translateX(-4px);
      box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
    }
    .sticky-contact .contact-btn .tooltip-text {
      position: absolute;
      right: 70px;
      background: rgba(0, 0, 0, 0.8);
      color: #fff;
      padding: 6px 14px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 400;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s ease;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    }
    .sticky-contact .contact-btn .tooltip-text::after {
      content: '';
      position: absolute;
      right: -6px;
      top: 50%;
      transform: translateY(-50%);
      border-left: 6px solid rgba(0, 0, 0, 0.8);
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent;
    }
    .sticky-contact .contact-btn:hover .tooltip-text {
      opacity: 1;
      right: 78px;
    }
    .sticky-contact .whatsapp-btn {
      background: linear-gradient(135deg, #25D366, #128C7E);
    }
    .sticky-contact .whatsapp-btn:hover {
      background: linear-gradient(135deg, #20bd5a, #0f7a6b);
    }
    .sticky-contact .call-btn {
      background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    }
    .sticky-contact .call-btn:hover {
      background: linear-gradient(135deg, #ff5252, #d35400);
    }
    .sticky-contact .contact-btn.pulse {
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
      70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
      100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }
    .sticky-contact .call-btn.pulse {
      animation-name: pulseCall;
    }
    @keyframes pulseCall {
      0% { box-shadow: 0 0 0 0 rgba(238, 90, 36, 0.4); }
      70% { box-shadow: 0 0 0 15px rgba(238, 90, 36, 0); }
      100% { box-shadow: 0 0 0 0 rgba(238, 90, 36, 0); }
    }
    @keyframes slideInRight {
      0% { transform: translateX(100px); opacity: 0; }
      100% { transform: translateX(0); opacity: 1; }
    }
    @media (max-width: 768px) {
      .sticky-contact { right: 12px; bottom: 100px; gap: 10px; }
      .sticky-contact .contact-btn { width: 50px; height: 50px; font-size: 22px; }
      .sticky-contact .contact-btn .tooltip-text { display: none; }
    }
    @media (max-width: 480px) {
      .sticky-contact { right: 8px; bottom: 80px; gap: 8px; }
      .sticky-contact .contact-btn { width: 44px; height: 44px; font-size: 18px; }
    }


  

    /* Contact Hero */
    .contact-hero {
      background: linear-gradient(135deg, #f8f0eb 0%, #f0e7e0 100%);
      border-radius: 2rem;
      padding: 3rem;
      position: relative;
      overflow: hidden;
    }
    .contact-hero::before {
      content: '✉';
      position: absolute;
      right: -30px;
      top: -30px;
      font-size: 150px;
      color: rgba(185, 23, 231, 0.05);
      transform: rotate(10deg);
    }
    .contact-hero h1 {
      font-weight: 300;
      font-size: 2.8rem;
      color: #2b1f19;
    }
    .contact-hero h1 span {
      color: #b917e7;
    }
    .contact-hero p {
      color: #5f534b;
      font-size: 1.05rem;
      max-width: 500px;
    }

    /* Contact Info Cards */
    .info-card {
      background: #ffffff;
      border-radius: 1.5rem;
      padding: 1.8rem;
      text-align: center;
      border: 1px solid #f0ece8;
      transition: 0.3s ease;
      height: 100%;
    }
    .info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.04);
      border-color: #e8d9d0;
    }
    .info-card .info-icon {
      font-size: 2.2rem;
      color: #b917e7;
      margin-bottom: 0.8rem;
      display: block;
    }
    .info-card h6 {
      font-weight: 600;
      color: #2b1f19;
    }
    .info-card p {
      color: #8f7a6e;
      font-size: 0.9rem;
      margin-bottom: 0;
    }

    /* Contact Form */
    .contact-form-box {
      background: #ffffff;
      border-radius: 2rem;
      padding: 2.5rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.02);
      border: 1px solid #f0ece8;
    }
    .contact-form-box .form-control {
      border-radius: 40px;
      padding: 0.8rem 1.5rem;
      border: 1px solid #e3d9d2;
      background: #fcf9f7;
      transition: 0.2s;
    }
    .contact-form-box .form-control:focus {
      border-color: #b917e7;
      box-shadow: 0 0 0 3px rgba(185, 23, 231, 0.1);
    }
    .contact-form-box .form-control.is-invalid {
      border-color: #dc3545;
    }
    .contact-form-box .form-control.is-valid {
      border-color: #28a745;
    }
    .contact-form-box textarea.form-control {
      border-radius: 30px;
      resize: vertical;
      min-height: 120px;
    }

    /* Captcha */
    .captcha-box {
      background: #f6f1ed;
      border-radius: 60px;
      padding: 0.5rem 1.5rem;
      display: inline-flex;
      align-items: center;
      gap: 15px;
      font-size: 1.6rem;
      font-weight: 600;
      letter-spacing: 8px;
      color: #2b1f19;
      font-family: 'Courier New', monospace;
      user-select: none;
    }
    .captcha-box .refresh-captcha {
      cursor: pointer;
      font-size: 1.2rem;
      color: #8f7a6e;
      transition: 0.2s;
      letter-spacing: 0;
    }
    .captcha-box .refresh-captcha:hover {
      color: #b917e7;
      transform: rotate(180deg);
    }

    .btn-submit {
      background: #2b1f19;
      color: white;
      border-radius: 60px;
      padding: 0.7rem 3rem;
      border: none;
      font-weight: 500;
      transition: 0.2s;
      position: relative;
    }
    .btn-submit:hover {
      background: #4d3a31;
      color: #fff;
    }
    .btn-submit:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }
    .btn-submit .spinner {
      display: none;
      width: 20px;
      height: 20px;
      border: 2px solid #fff;
      border-top-color: transparent;
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
      margin-right: 8px;
    }
    .btn-submit.loading .spinner {
      display: inline-block;
    }
    .btn-submit.loading .btn-text {
      display: none;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* Toast notification */
    .toast-container-custom {
      position: fixed;
      top: 20px;
      right: 20px;
      z-index: 99999;
      max-width: 400px;
    }
    .toast-custom {
      background: #2b1f19;
      color: #fff;
      padding: 1rem 1.5rem;
      border-radius: 16px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.15);
      display: flex;
      align-items: center;
      gap: 12px;
      transform: translateX(120%);
      transition: transform 0.5s ease;
      margin-bottom: 10px;
    }
    .toast-custom.show {
      transform: translateX(0);
    }
    .toast-custom.success {
      background: #1a7a3a;
    }
    .toast-custom.error {
      background: #c0392b;
    }
    .toast-custom .toast-icon {
      font-size: 1.5rem;
    }

    /* Map */
    .map-container {
      border-radius: 1.5rem;
      overflow: hidden;
      height: 300px;
      border: 1px solid #f0ece8;
    }
    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

     