html,
body {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  font-family: "Inter", sans-serif;
}

/* LOADER STYLES */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-container.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 90%;
  max-width: 400px;
}

.circular-progress {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circular-progress svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress-circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 4;
}

.progress-circle {
  fill: none;
  stroke: url(#progressGradient);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 282.7;
  stroke-dashoffset: 282.7;
  transition: stroke-dashoffset 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.6));
}

.progress-text {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  font-size: 24px;
  font-weight: 700;
}

#progressPercent {
  color: #ff6b6b;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: #ff6b6b;
  border-right-color: #ff6b6b;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loader-text {
  color: white;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  animation: pulse-text 1.5s ease-in-out infinite;
}

@keyframes pulse-text {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* Mobile Menu Drawer */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.1) 110px,
    rgba(0, 0, 0, 0.95) 110px,
    rgba(0, 0, 0, 0.95) 100%
  );
  opacity: 0;
  visibility: hidden;
  z-index: 9998;
  transition: all 0.3s ease;
}

.mobile-menu-overlay::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  background: rgba(0, 0, 0, 0.1);
  z-index: 9997;
  pointer-events: none;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-overlay.active::before {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 110px;
  right: 0;
  width: 100%;
  height: calc(100vh - 110px);
  background: #1a1a2e;
  z-index: 9999;
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(100%);
}

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

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.mobile-menu-logo {
  width: clamp(50px, 6vw, 80px);
  height: clamp(50px, 6vw, 80px);
  aspect-ratio: 1;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #f5336a;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 60px;
  align-items: center;
  text-align: center;
}

.mobile-menu-link {
  color: white;
  text-decoration: none;
  font-size: 40px;
  font-weight: 600;
  transition: color 0.3s ease;
  line-height: 1.5;
}

.mobile-menu-link:hover {
  color: #f5336a;
}

.mobile-menu-link:active {
  opacity: 0.7;
  transform: scale(0.98);
}

.mobile-menu-contact {
  margin-bottom: 60px;
  text-align: center;
}

.mobile-menu-contact h3,
.mobile-menu-social h3 {
  color: white;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-menu-contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 24px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.5;
}

.mobile-menu-contact i,
.mobile-menu-social-icons i {
  color: #f5336a;
}

.mobile-menu-social {
  margin-top: auto;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-menu-social-icons {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.mobile-menu-social-icons a {
  color: white;
  font-size: 56px;
  transition: color 0.3s ease;
}

.mobile-menu-social-icons a:hover {
  color: #f5336a;
}

.mobile-menu-reserve-btn {
  background: #f5336a;
  color: white;
  font-size: 28px;
  font-weight: 600;
  padding: 16px 32px;
  margin-bottom: 60px;
  border-radius: 8px;
  border: none;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.mobile-menu-reserve-btn:hover {
  background: #8b0e2f;
}

.mobile-menu-reserve-btn:active {
  transform: scale(0.98);
  background: #6d0a24;
}

.copyright-mobile-menu {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-align: center;
}

/* Navigation Bar */
.navbar {
  position: absolute;
  top: 5%;
  left: 50%;
  background-color: rebeccapurple;
  transform: translateX(-50%);
  width: 80%;
  height: 110px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  z-index: 100;
}

.navbar-logo {
  flex: 0 0 auto;
  margin-right: 25px;
}

.logo-img {
  width: 75px;
  height: 75px;
  aspect-ratio: 1;
}

.navbar-prompt {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 70%;
  margin: 0 10px;
  justify-content: center;
}

.navbar-prompt-mobile-320 {
  display: none;
}

.navbar-phone-320 {
  display: none !important;
}

.input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: stretch;
}

.ai-prompt-input {
  flex: 1;
  padding: 8px 50px 8px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 12px;
  font-family: "Inter", sans-serif;
  outline: none;
  transition: all 0.3s ease;
  color: #666;
  min-height: 35px;
  height: 35px;
}

.ai-prompt-input:focus {
  border-color: #f5336a;
  box-shadow: 0 0 0 3px rgba(245, 51, 106, 0.08);
}

.ai-prompt-input::placeholder {
  color: #999;
  font-size: 13px;
}

.input-submit-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f5336a 0%, #d41f49 100%);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.input-submit-btn:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 12px rgba(245, 51, 106, 0.4);
}

.input-submit-btn:active {
  transform: translateY(-50%) scale(0.98);
  box-shadow: 0 2px 6px rgba(245, 51, 106, 0.2);
}

.input-submit-btn i {
  font-size: 16px;
}

.prompt-icons {
  display: flex;
  gap: 6px;
  align-items: center;
}

.prompt-icons-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.prompt-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  transition: color 0.3s ease;
}

.navbar-prompt .check-icon {
  width: 26px;
  height: 26px;
  font-size: 16px;
  color: #999;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prompt-icon:hover {
  color: #f5336a;
}

.check-icon::before {
  content: "✓";
  display: inline-block;
}

.phone-icon i {
  font-size: 14px;
}

.disponibilitate {
  font-size: 11px;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}

.disponibilitate i {
  margin-right: 6px;
}

.disponibilitate.hidden {
  display: none;
}

.disponibilitate:has(.fa-check) {
  color: #4caf50;
}

.disponibilitate:has(.fa-ban) {
  color: #f5336a;
}

.availability-container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-reserve-now {
  padding: 5px 12px;
  background: #f5336a;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 32px;
}

.btn-reserve-now:hover {
  background: #8b0e2f;
}

.btn-reserve-now:active {
  transform: scale(0.98);
  background: #6d0a24;
}

.availability-response {
  display: flex;
  align-items: center;
  gap: 12px;
}

.prompt-send-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5336a 0%, #d41f49 100%);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.prompt-send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(245, 51, 106, 0.4);
}

.prompt-send-btn i {
  font-size: 13px;
}

.navbar-right {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
}

.navbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: rgba(2, 2, 11, 0.8);
}

.phone-number {
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
}

.phone-number i {
  color: #f5336a;
  font-size: 18px;
}

/* Burger Menu */
.burger-menu {
  position: relative;
  flex: 0 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.burger-menu:active {
  transform: scale(0.95);
  opacity: 0.8;
}

.burger-line {
  width: 40px;
  height: 4px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Mobile - 320px only */
@media (min-width: 320px) and (max-width: 767px) {
  .navbar {
    background-color: white !important;
    top: 0 !important;
    position: absolute !important;
    transform: translateX(0) !important;
    left: 0 !important;
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    height: 75px !important;
  }

  .burger-menu {
    display: flex !important;
    width: 75px !important;
    height: 75px !important;
  }

  .burger-line {
    width: 30px !important;
  }

  .navbar-prompt {
    display: none !important;
  }

  .navbar-phone-320 {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 11px !important;
    margin: 0 auto !important;
  }

  .navbar-prompt-mobile-320 {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    padding: 0 16px 12px 16px !important;
    width: 100% !important;
    background-color: white !important;
    position: relative !important;
    top: 0 !important;
    margin-top: 75px !important;
  }

  .mobile-navbar-prompt {
    display: none !important;
  }

  .hero-video-container {
    display: none !important;
  }

  .hero-mobile-video-480 {
    display: block !important;
    height: 100vh !important;
    position: relative !important;
    z-index: 1 !important;
  }

  .hero-mobile-video-480::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
    z-index: 5 !important;
  }

  .card-magenta {
    display: none !important;
  }

  .hero-content {
    top: 5vh !important;
    padding-top: 0 !important;
    z-index: 11 !important;
  }

  .google-reviews-badge {
    margin: 12px auto 8px !important;
    padding: 6px 12px !important;
    gap: 8px !important;
  }

  .google-logo {
    width: 16px !important;
    height: 16px !important;
  }

  .google-reviews-text {
    gap: 6px !important;
  }

  .google-label {
    font-size: 10px !important;
  }

  .google-rating {
    gap: 4px !important;
  }

  .hero-title {
    font-size: 20px !important;
  }

  .hero-description {
    font-size: 12px !important;
    margin: 0 16px !important;
    line-height: 1.3 !important;
  }

  .mobile-menu-nav {
    gap: 24px !important;
    margin-bottom: 30px !important;
    padding-bottom: 30px !important;
  }

  .mobile-menu-link {
    font-size: 18px !important;
  }

  .btn-secondary {
    width: 275px !important;
  }
  .btn-primary {
    width: 275px !important;
  }
}

/* Responsive Tablet - 768px */
@media (min-width: 768px) {
  .navbar-phone-320 {
    display: none !important;
  }

  .navbar-prompt-mobile-320 {
    display: none !important;
  }

  .hero-video-container {
    display: block !important;
  }

  .hero-mobile-video-480 {
    display: none !important;
  }

  .card-magenta {
    display: flex !important;
  }

  .navbar {
    top: 0 !important;
    margin-top: 0 !important;
    background-color: white;
  }

  .hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 10;
    gap: 0.3rem !important;
    padding-top: 8% !important;
    top: 7vh !important;
  }

  .google-reviews-badge {
    margin: 12px auto 8px !important;
    padding: 6px 12px !important;
    gap: 8px !important;
  }

  .google-logo {
    width: 16px !important;
    height: 16px !important;
  }

  .google-reviews-text {
    gap: 6px !important;
  }

  .google-label {
    font-size: 10px !important;
  }

  .google-rating {
    gap: 4px !important;
  }

  .rating-score {
    font-size: 11px !important;
  }

  .rating-stars {
    font-size: 10px !important;
    letter-spacing: 1px !important;
  }

  .hero-title {
    font-size: 24px !important;
    line-height: 24px !important;
  }

  .hero-description {
    font-size: 14px !important;
    line-height: 14px !important;
    max-width: 500px !important;
  }

  .hero-buttons {
    gap: 0.3rem !important;
    margin-top: 0.3rem !important;
  }

  .btn-primary,
  .btn-secondary {
    height: 32px !important;
    padding: 0 16px !important;
    font-size: 11px !important;
  }

  .btn-primary span,
  .btn-secondary span {
    font-size: 11px !important;
  }

  .card-magenta-title {
    font-size: 10px !important;
    line-height: 14px !important;
    gap: 2px !important;
  }

  .card-magenta-heart-icon {
    width: 12px !important;
    height: 12px !important;
  }

  .card-magenta-text {
    font-size: 7px !important;
    line-height: 10px !important;
  }

  .card-magenta-left-bottom i {
    font-size: 14px !important;
  }

  .navbar-phone {
    font-size: 9px !important;
  }

  .phone-number {
    font-size: 9px !important;
  }
}

/* Responsive Tablet - 834px */
@media (min-width: 834px) {
  .hero-video-container {
    display: block !important;
  }

  .hero-mobile-video-480 {
    display: none !important;
  }

  .card-magenta {
    display: flex !important;
  }

  .navbar {
    top: 0 !important;
    margin-top: 0 !important;
    background-color: white;
  }

  .hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 10;
    gap: 0.3rem !important;
    padding-top: 8% !important;
    top: 5vh !important;
  }

  .google-reviews-badge {
    margin: 12px auto 8px !important;
    padding: 6px 12px !important;
    gap: 8px !important;
  }

  .google-logo {
    width: 16px !important;
    height: 16px !important;
  }

  .google-reviews-text {
    gap: 6px !important;
  }

  .google-label {
    font-size: 10px !important;
  }

  .google-rating {
    gap: 4px !important;
  }

  .rating-score {
    font-size: 11px !important;
  }

  .rating-stars {
    font-size: 10px !important;
    letter-spacing: 1px !important;
  }

  .hero-title {
    font-size: 24px !important;
    line-height: 24px !important;
  }

  .hero-description {
    font-size: 16px !important;
    line-height: 14px !important;
    max-width: 650px !important;
  }

  .hero-buttons {
    gap: 0.3rem !important;
    margin-top: 0.3rem !important;
  }

  .btn-primary,
  .btn-secondary {
    height: 32px !important;
    padding: 0 16px !important;
    font-size: 11px !important;
  }

  .btn-primary span,
  .btn-secondary span {
    font-size: 11px !important;
  }

  .card-magenta-title {
    font-size: 10px !important;
    line-height: 14px !important;
    gap: 2px !important;
  }

  .card-magenta-heart-icon {
    width: 12px !important;
    height: 12px !important;
  }

  .card-magenta-text {
    font-size: 7px !important;
    line-height: 10px !important;
  }

  .card-magenta-left-bottom i {
    font-size: 14px !important;
  }
}

/* Responsive Navbar */
@media (min-width: 1024px) {
  .hero-video-container {
    display: block !important;
  }

  .hero-mobile-video-480 {
    display: none !important;
  }

  .card-magenta {
    display: flex !important;
  }

  .navbar {
    top: 0;
    height: 70px;
    padding: 0 30px;
    margin-top: 2px;
  }

  .burger-menu {
    width: 70px;
    height: 70px;
  }

  .navbar-prompt {
    max-width: 640px;
    gap: 0;
  }

  .hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 10;
    gap: 0.6rem;
    padding-top: 5% !important;
    top: 5vh !important;
  }

  .ai-prompt-input {
    font-size: 12px;
  }

  .hero-title {
    font-size: 32px !important;
    line-height: 30px !important;
    max-width: 350px !important;
  }

  .hero-description {
    font-size: 16px !important;
    line-height: 18px !important;
    max-width: 600px !important;
  }

  .hero-buttons {
    gap: 0.6rem;
    margin-top: 0.6rem;
  }

  .btn-primary,
  .btn-secondary {
    height: 40px !important;
    padding: 0 20px !important;
    font-size: 13px !important;
  }

  .btn-primary span,
  .btn-secondary span {
    font-size: 13px !important;
  }

  .google-reviews-badge {
    margin: 12px auto 8px !important;
    padding: 6px 12px !important;
    gap: 8px !important;
  }

  .google-logo {
    width: 16px !important;
    height: 16px !important;
  }

  .google-reviews-text {
    gap: 6px !important;
  }

  .google-label {
    font-size: 10px !important;
  }

  .google-rating {
    gap: 4px !important;
  }

  .rating-score {
    font-size: 11px !important;
  }

  .rating-stars {
    font-size: 10px !important;
    letter-spacing: 1px !important;
  }

  .navbar-phone {
    font-size: 11px !important;
  }

  .phone-number {
    font-size: 11px !important;
  }

  .card-magenta-title {
    font-size: 12px !important;
    line-height: 16px !important;
    gap: 3px !important;
  }

  .card-magenta-heart-icon {
    width: 14px !important;
    height: 14px !important;
  }

  .card-magenta-text {
    font-size: 9px !important;
    line-height: 12px !important;
  }

  .card-magenta-left-bottom i {
    font-size: 18px !important;
  }
}

/* Hero Mask */
.hero-mask {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1439 588'%3E%3Cpath d='M0.0170213 567.983L0.483008 19.983L0 0H100.402C111.486 0 120.456 9.01417 120.401 20.098L120.099 81.902C120.044 92.9858 129.014 102 140.098 102H1300C1311.05 102 1320 93.0457 1320 82V20C1320 8.95431 1328.95 0 1340 0H1420L1440 0V437C1440 448.046 1431.05 457 1420 457H1240.34C1229.29 457 1220.34 465.954 1220.34 477V501C1220.34 512.046 1211.38 521 1200.34 521H1118.31C1107.26 521 1098.31 529.954 1098.31 541V568C1098.31 579.046 1089.35 588 1078.31 588H20.017C8.96468 588 0.00762303 579.035 0.0170213 567.983Z' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1439 588'%3E%3Cpath d='M0.0170213 567.983L0.483008 19.983L0 0H100.402C111.486 0 120.456 9.01417 120.401 20.098L120.099 81.902C120.044 92.9858 129.014 102 140.098 102H1300C1311.05 102 1320 93.0457 1320 82V20C1320 8.95431 1328.95 0 1340 0H1420L1440 0V437C1440 448.046 1431.05 457 1420 457H1240.34C1229.29 457 1220.34 465.954 1220.34 477V501C1220.34 512.046 1211.38 521 1200.34 521H1118.31C1107.26 521 1098.31 529.954 1098.31 541V568C1098.31 579.046 1089.35 588 1078.31 588H20.017C8.96468 588 0.00762303 579.035 0.0170213 567.983Z' fill='white'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  border: none;
  outline: none;
}

/* Hero Wrapper */
.hero-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 588;
}

/* Video Container */
.hero-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: none;
  outline: none;
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-mobile-video-480 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
}

.hero-mobile-video-480 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-mobile-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* Hero Content */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 10;
  gap: 1rem;
  padding-top: max(120px, 20vh);
}

.hero-title {
  color: white;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 48px;
  line-height: 55px;
  text-align: center;
  letter-spacing: -0.03em;
  max-width: 394px;
}

.hero-description {
  color: white;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 45px;
  text-align: center;
  max-width: 877px;
}
.highlight-circle {
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 40'%3E%3Cellipse cx='75' cy='20' rx='70' ry='15' fill='rgba(245, 51, 106, 0.2)' stroke='%23f5336a' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  min-width: 100px;
  height: 36px;
}

.glass-highlight {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 8px;
  display: inline-block;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Buttons */
.btn-primary {
  position: relative;
  height: 44px;
  background: #f5336a;
  border-radius: 8px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 32px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background: #8b0e2f;
}

.btn-primary:active {
  transform: scale(0.98);
  background: #6d0a24;
}

.btn-primary span {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}

.btn-primary .btn-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.btn-secondary {
  position: relative;
  height: 44px;
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 32px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #e6e6e6;
}

.btn-secondary:active {
  transform: scale(0.98);
  background: rgba(255, 255, 255, 0.2);
}

/* Card Magenta */
.card-magenta {
  position: absolute;
  left: 77.08%;
  top: 79.59%;
  width: 22.92%; /* 330/1440 */
  aspect-ratio: 330 / 120;
  background: #f5336a;
  z-index: 20;
  display: flex;
  overflow: hidden;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 330 120'%3E%3Cpath d='M144.667 2.45969e-06L310 2.17374e-05C321.046 2.30253e-05 330 8.95432 330 20V100C330 111.046 321.046 120 310 120H20C8.95431 120 0 111.046 0 100V80.7531C0 69.7074 8.95428 60.7531 20 60.7531L104.667 60.753C115.712 60.753 124.667 51.7987 124.667 40.753V20C124.667 8.9543 133.621 1.17177e-06 144.667 2.45969e-06Z' fill='%23F5336A'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 330 120'%3E%3Cpath d='M144.667 2.45969e-06L310 2.17374e-05C321.046 2.30253e-05 330 8.95432 330 20V100C330 111.046 321.046 120 310 120H20C8.95431 120 0 111.046 0 100V80.7531C0 69.7074 8.95428 60.7531 20 60.7531L104.667 60.753C115.712 60.753 124.667 51.7987 124.667 40.753V20C124.667 8.9543 133.621 1.17177e-06 144.667 2.45969e-06Z' fill='%23F5336A'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.card-magenta-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-width: 35%;
  height: 100%;
}

.card-magenta-left-top {
  flex: 1;
  width: 100%;
}

.card-magenta-left-bottom {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8%;
  width: 100%;
  flex: 1;
}

.card-magenta-left-bottom i {
  color: white;
  font-size: 32px;
}

.social-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.social-btn:hover {
  transform: scale(1.15);
  opacity: 0.8;
}

.social-btn:active {
  transform: scale(0.95);
  opacity: 0.6;
}

.card-magenta-icon {
  background: white;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-magenta-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8% 12% 8% 8%;
  gap: 4%;
}

.card-magenta-title {
  color: white;
  font-weight: 700;
  font-size: clamp(14px, 1.8vw, 24px);
  line-height: clamp(20px, 2.2vw, 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 0.5vw, 8px);
}

.card-magenta-heart-icon {
  width: clamp(18px, 1.5vw, 28px);
  height: clamp(18px, 1.5vw, 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-magenta-heart-icon svg {
  width: 100%;
  height: 100%;
}

.card-magenta-text {
  color: white;
  font-weight: 400;
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  line-height: clamp(16px, 1.8vw, 19px);
  opacity: 0.95;
}
/* Google Reviews Badge */
.google-reviews-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: fit-content;
  margin: 48px auto 24px;
}

.google-logo {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.google-reviews-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-label {
  color: #999999;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rating-score {
  color: #ff4444;
  font-size: 16px;
  font-weight: 700;
}

.rating-stars {
  color: #ffd166;
  font-size: 14px;
  letter-spacing: 2px;
}

/* Responsive Design */

/* Large screens - 1920px and above */
/* Desktop 1440px+ - Smooth fluid scaling */
@media (min-width: 1440px) {
  .hero-video-container {
    display: block !important;
  }

  .hero-mobile-video-480 {
    display: none !important;
  }

  .card-magenta {
    display: flex !important;
  }

  .navbar {
    top: 0;
    width: 75%;
    height: 100px;
  }

  .hero-content {
    padding-top: 7%;
    top: 7vh;
  }

  .hero-title {
    font-size: 3vw !important;
    line-height: 42px !important;
    max-width: 35vw !important;
  }

  .hero-description {
    font-size: 1.5vw !important;
    line-height: 35px !important;
    max-width: 55vw !important;
  }

  .navbar-prompt {
    max-width: 1200px;
    gap: 8px;
  }

  .btn-primary,
  .btn-secondary {
    height: 44px !important;
    padding: 0 32px !important;
    font-size: 16px !important;
  }

  .btn-primary span,
  .btn-secondary span {
    font-size: 16px !important;
  }

  .google-reviews-badge {
    margin: 48px auto 24px !important;
    padding: 12px 24px !important;
    gap: 12px !important;
  }

  .google-logo {
    width: 24px !important;
    height: 24px !important;
  }

  .google-reviews-text {
    gap: 8px !important;
  }

  .google-label {
    font-size: 14px !important;
  }

  .google-rating {
    gap: 6px !important;
  }

  .rating-score {
    font-size: 16px !important;
  }

  .rating-stars {
    font-size: 14px !important;
    letter-spacing: 2px !important;
  }

  .navbar-phone {
    font-size: 17px !important;
  }

  .phone-number {
    font-size: 17px !important;
  }

  .card-magenta {
    position: absolute;
    left: 77.08%;
    top: 79.59%;
    width: 22.92%;
    aspect-ratio: 330 / 120;
    background: #f5336a;
    z-index: 20;
    display: flex;
    overflow: hidden;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 330 120'%3E%3Cpath d='M144.667 2.45969e-06L310 2.17374e-05C321.046 2.30253e-05 330 8.95432 330 20V100C330 111.046 321.046 120 310 120H20C8.95431 120 0 111.046 0 100V80.7531C0 69.7074 8.95428 60.7531 20 60.7531L104.667 60.753C115.712 60.753 124.667 51.7987 124.667 40.753V20C124.667 8.9543 133.621 1.17177e-06 144.667 2.45969e-06Z' fill='%23F5336A'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 330 120'%3E%3Cpath d='M144.667 2.45969e-06L310 2.17374e-05C321.046 2.30253e-05 330 8.95432 330 20V100C330 111.046 321.046 120 310 120H20C8.95431 120 0 111.046 0 100V80.7531C0 69.7074 8.95428 60.7531 20 60.7531L104.667 60.753C115.712 60.753 124.667 51.7987 124.667 40.753V20C124.667 8.9543 133.621 1.17177e-06 144.667 2.45969e-06Z' fill='%23F5336A'/%3E%3C/svg%3E");
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
  }

  .card-magenta-title {
    color: white;
    font-weight: 700;
    font-size: clamp(14px, 1.8vw, 24px) !important;
    line-height: clamp(20px, 2.2vw, 28px) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(4px, 0.5vw, 8px) !important;
  }

  .card-magenta-heart-icon {
    width: clamp(18px, 1.5vw, 28px) !important;
    height: clamp(18px, 1.5vw, 28px) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .card-magenta-text {
    color: white;
    font-weight: 400;
    font-size: clamp(0.75rem, 1.2vw, 1rem) !important;
    line-height: clamp(16px, 1.8vw, 19px) !important;
    opacity: 0.95;
  }

  .card-magenta-left-bottom i {
    font-size: 32px !important;
  }
}

/* Desktop 1920px+ - Hero content mai jos */
@media (min-width: 1920px) {
  .hero-video-container {
    display: block !important;
  }

  .hero-mobile-video-480 {
    display: none !important;
  }

  .card-magenta {
    display: flex !important;
  }

  .navbar {
    top: 15px;
    height: 130px;
  }

  .logo-img {
    width: 140px !important;
    height: 140px !important;
    aspect-ratio: 1;
  }

  .ai-prompt-input {
    padding: 12px 60px 12px 16px;
    font-size: 14px;
    min-height: 45px;
    height: 45px;
  }

  .input-submit-btn {
    width: 40px;
    height: 40px;
  }

  .btn-reserve-now {
    padding: 8px 16px;
    font-size: 12px;
    height: 40px;
  }

  .disponibilitate {
    font-size: 12px;
  }

  .navbar-phone {
    font-size: 17px !important;
  }

  .phone-number {
    font-size: 17px !important;
  }

  .burger-menu {
    width: 120px;
    height: 120px;
  }

  .navbar-prompt {
    gap: 8px;
  }

  .google-reviews-badge {
    margin: 48px auto 24px !important;
    padding: 12px 24px !important;
    gap: 12px !important;
  }

  .google-logo {
    width: 24px !important;
    height: 24px !important;
  }

  .google-reviews-text {
    gap: 8px !important;
  }

  .google-label {
    font-size: 14px !important;
  }

  .google-rating {
    gap: 6px !important;
  }

  .rating-score {
    font-size: 16px !important;
  }

  .rating-stars {
    font-size: 14px !important;
    letter-spacing: 2px !important;
  }

  .btn-primary,
  .btn-secondary {
    height: 44px !important;
    padding: 0 32px !important;
    font-size: 16px !important;
  }

  .hero-title {
    font-size: 48px !important;
    line-height: 55px !important;
    max-width: 394px !important;
  }

  .hero-description {
    margin-top: 2rem;
    line-height: 55px !important;
    font-size: 24px !important;
    max-width: 877px !important;
  }

  .google-reviews-badge {
    margin: 48px auto 24px;
    padding: 12px 24px;
    gap: 12px;
  }

  .google-logo {
    width: 24px;
    height: 24px;
  }

  .google-reviews-text {
    gap: 8px;
  }

  .google-label {
    font-size: 14px;
  }

  .google-rating {
    gap: 6px;
  }

  .rating-score {
    font-size: 16px;
  }

  .rating-stars {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .card-magenta {
    position: absolute;
    left: 77.08%;
    top: 79.59%;
    width: 22.92%;
    aspect-ratio: 330 / 120;
    background: #f5336a;
    z-index: 20;
    display: flex;
    overflow: hidden;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 330 120'%3E%3Cpath d='M144.667 2.45969e-06L310 2.17374e-05C321.046 2.30253e-05 330 8.95432 330 20V100C330 111.046 321.046 120 310 120H20C8.95431 120 0 111.046 0 100V80.7531C0 69.7074 8.95428 60.7531 20 60.7531L104.667 60.753C115.712 60.753 124.667 51.7987 124.667 40.753V20C124.667 8.9543 133.621 1.17177e-06 144.667 2.45969e-06Z' fill='%23F5336A'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 330 120'%3E%3Cpath d='M144.667 2.45969e-06L310 2.17374e-05C321.046 2.30253e-05 330 8.95432 330 20V100C330 111.046 321.046 120 310 120H20C8.95431 120 0 111.046 0 100V80.7531C0 69.7074 8.95428 60.7531 20 60.7531L104.667 60.753C115.712 60.753 124.667 51.7987 124.667 40.753V20C124.667 8.9543 133.621 1.17177e-06 144.667 2.45969e-06Z' fill='%23F5336A'/%3E%3C/svg%3E");
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
  }

  .card-magenta-title {
    color: white;
    font-weight: 700;
    font-size: clamp(14px, 1.8vw, 24px) !important;
    line-height: clamp(20px, 2.2vw, 28px) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(4px, 0.5vw, 8px) !important;
  }

  .card-magenta-heart-icon {
    width: clamp(18px, 1.5vw, 28px) !important;
    height: clamp(18px, 1.5vw, 28px) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .card-magenta-text {
    color: white;
    font-weight: 400;
    font-size: clamp(0.75rem, 1.2vw, 1rem) !important;
    line-height: clamp(16px, 1.8vw, 19px) !important;
    opacity: 0.95;
  }

  .card-magenta-left-bottom i {
    font-size: 32px !important;
  }
}

/* SERVICII SECTION */
.servicii-section {
  width: 100%;
  padding: 80px 20px;
  background: #ffffff;
}

.servicii-container {
  max-width: 1400px;
  margin: 0 auto;
}

.servicii-header {
  text-align: center;
  margin-bottom: 60px;
}

.servicii-label {
  font-size: 14px;
  font-weight: 600;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

.servicii-title {
  font-size: 48px;
  font-weight: 900;
  color: #F5336A;
  margin-bottom: 24px;
  line-height: 1.2;
}

.servicii-description {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
}

.servicii-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.servicii-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.servicii-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.servicii-card-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #f5f5f5;
}

.servicii-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.servicii-card:hover .servicii-card-image img {
  transform: scale(1.05);
}

.servicii-card-content {
  padding: 28px 24px;
}

.servicii-card-title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.servicii-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 0;
}

.servicii-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.servicii-tag-blue {
  background-color: #e3f2fd;
  color: #1976d2;
}

.servicii-tag-green {
  background-color: #e8f5e9;
  color: #388e3c;
}

.servicii-tag-purple {
  background-color: #f3e5f5;
  color: #7b1fa2;
}

.servicii-card-text {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  font-weight: 400;
}

.servicii-explore-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.btn-explore {
  width: 180px;
  height: 52px;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: #02020B;
  background: transparent;
  border: 1px solid rgba(2, 2, 11, 0.1);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.btn-explore-text {
  position: relative;
  z-index: 2;
  flex: 1;
}

.btn-explore-panda {
  position: absolute;
  right: -45px;
  top: 50%;
  transform: translateY(-50%);
  width: 90px;
  height: 90px;
  object-fit: contain;
  pointer-events: none;
}

.btn-explore:hover {
  border-color: rgba(2, 2, 11, 0.3);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .servicii-section {
    padding: 60px 20px;
  }

  .servicii-title {
    font-size: 36px;
  }

  .servicii-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
  .servicii-section {
    padding: 40px 16px;
  }

  .servicii-header {
    margin-bottom: 40px;
  }

  .servicii-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .servicii-description {
    font-size: 14px;
  }

  .servicii-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .servicii-card-image {
    height: 220px;
  }

  .servicii-card-content {
    padding: 20px 16px;
  }

  .servicii-card-title-wrapper {
    margin-bottom: 10px;
  }

  .servicii-card-title {
    font-size: 16px;
    margin: 0;
  }

  .servicii-tag {
    font-size: 11px;
    padding: 3px 10px;
  }

  .servicii-card-text {
    font-size: 13px;
  }

  .servicii-explore-wrapper {
    margin-top: 30px;
  }

  .btn-explore {
    width: 180px;
    height: 48px;
    font-size: 13px;
  }

  .btn-explore-panda {
    width: 75px;
    height: 75px;
    right: -35px;
  }
}

.spanBold {
  font-weight: 700;
}

/* PROCES SECTION */
.proces-section {
  width: 100%;
  padding: 80px 20px;
  background: #f5336a;
  position: relative;
  overflow: hidden;
}

.proces-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.proces-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
  text-align: center;
}

.proces-title {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
  text-align: center;
}

.proces-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 400;
}

.proces-background-shape {
  position: absolute;
  width: 900px;
  height: 900px;
  background: rgba(255, 255, 255, 0.01);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 0;
  animation: floatShape 150s linear infinite;
  pointer-events: none;
}

@keyframes floatShape {
  0% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  25% {
    transform: translate(-20%, -20%) rotate(135deg);
  }
  50% {
    transform: translate(-50%, 0%) rotate(225deg);
  }
  75% {
    transform: translate(-80%, -50%) rotate(315deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(405deg);
  }
}

.proces-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.proces-step {
  text-align: center;
  padding: 30px 20px;
}

.proces-step-icon {
  font-size: 60px;
  color: #ffffff;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.proces-step-icon i {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.proces-step-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.proces-step-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-weight: 400;
}

.proces-button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.btn-check-date {
  width: 180px;
  height: 52px;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.btn-check-date-text {
  position: relative;
  z-index: 2;
  flex: 1;
}

.btn-check-date-panda {
  position: absolute;
  right: -45px;
  top: 50%;
  transform: translateY(-50%);
  width: 90px;
  height: 90px;
  object-fit: contain;
  pointer-events: none;
}

.btn-check-date:hover,
.btn-check-date:active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}


/* Responsive - Tablet */
@media (max-width: 1024px) {
  .proces-section {
    padding: 60px 20px;
  }

  .proces-title {
    font-size: 36px;
  }

  .proces-description {
    font-size: 16px;
  }

  .proces-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
  }

  .proces-step-icon {
    font-size: 50px;
    height: 70px;
  }

  .proces-step-title {
    font-size: 18px;
  }

  .proces-button-wrapper {
    margin-top: 40px;
  }

  .btn-check-date {
    width: 160px;
    height: 48px;
    font-size: 13px;
  }

  .btn-check-date-panda {
    width: 75px;
    height: 75px;
    right: -35px;
  }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
  .proces-section {
    padding: 40px 16px;
  }

  .proces-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .proces-description {
    font-size: 14px;
  }

  .proces-steps {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }

  .proces-step {
    padding: 20px 16px;
  }

  .proces-step-icon {
    font-size: 45px;
    height: 60px;
  }

  .proces-step-title {
    font-size: 16px;
  }

  .proces-step-text {
    font-size: 13px;
  }

  .proces-button-wrapper {
    margin-top: 30px;
  }

  .btn-check-date {
    width: 150px;
    height: 44px;
    font-size: 12px;
  }

  .btn-check-date-panda {
    width: 75px;
    height: 75px;
    right: -35px;
  }
}

/* AI SECTION */
.ai-section {
  padding: 100px 40px;
  background: #fff;
  position: relative;
  overflow: visible;
}

.ai-container {
  max-width: 1400px;
  margin: 0 auto;
}

.ai-label {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-align: center;
}

.ai-title {
  font-size: 48px;
  font-weight: 900;
  color: #F5336A;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: center;
}

.ai-description {
  font-size: 18px;
  color: #333;
  margin-bottom: 60px;
  max-width: 600px;
  line-height: 1.6;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.ai-content {
  position: relative;
  width: 1222px;
  height: 532px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 4px 56px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.ai-card {
  flex: 1;
  padding: 60px;
}

.ai-card-label {
  font-size: 12px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-align: left;
}

.ai-card-title {
  font-size: 28px;
  font-weight: 700;
  color: #02020b;
  margin-bottom: 20px;
  line-height: 1.3;
  text-align: left;
}

.ai-card-text {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: left;
  text-align: justify;
}

.btn-ai-contact {
  padding: 14px 32px;
  background: #F5336A;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.btn-ai-contact:hover {
  background: #e60975;
  transform: translateY(-2px);
}

.ai-image {
  flex: 1;
  margin-left: auto;
  height: 100%;
  overflow: hidden;
}

.ai-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* AI SECTION RESPONSIVE */
@media (max-width: 1024px) {
  .ai-section {
    padding: 80px 30px;
  }

  .ai-title {
    font-size: 36px;
  }

  .ai-description {
    font-size: 16px;
  }

  .ai-content {
    width: 100%;
    height: auto;
    gap: 40px;
    padding: 0;
  }

  .ai-card {
    padding: 40px;
  }

  .ai-card-title {
    font-size: 24px;
  }

  .ai-card-text {
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .ai-section {
    padding: 60px 20px;
  }

  .ai-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .ai-description {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .ai-content {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 30px;
    padding: 0;
  }

  .ai-card {
    padding: 30px;
  }

  .ai-image {
    height: auto;
  }

  .ai-image img {
    height: auto;
  }

  .ai-card-title {
    font-size: 20px;
  }

  .ai-card-text {
    font-size: 14px;
  }

  .btn-ai-contact {
    padding: 12px 28px;
    font-size: 14px;
  }
}

/* PRICING SECTION */
.pricing-section {
  padding: 100px 40px;
  background: #fff;
  position: relative;
}

.pricing-container {
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-label {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-align: center;
}

.pricing-title {
  font-size: 48px;
  font-weight: 900;
  color: #F5336A;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: center;
}

.pricing-description {
  font-size: 16px;
  color: #333;
  margin-bottom: 60px;
  max-width: 800px;
  line-height: 1.6;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.pricing-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card-banner {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #00d9d9;
  color: white;
  padding: 8px 40px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.pricing-card-featured {
  border: 2px solid #00d9d9;
  box-shadow: 0 10px 40px rgba(0, 217, 217, 0.15);
  transform: scale(1.05);
  padding-top: 50px;
}

.pricing-card-featured:hover {
  box-shadow: 0 15px 50px rgba(0, 217, 217, 0.25);
  transform: scale(1.05) translateY(-5px);
}

.pricing-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #02020b;
  margin-bottom: 20px;
}

.pricing-card-price {
  font-size: 44px;
  font-weight: 900;
  color: #8b5cf6;
  margin-bottom: 30px;
}

.pricing-card-features {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  text-align: left;
  flex: 1;
}

.pricing-card-features li {
  font-size: 14px;
  color: #333;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
}

.pricing-card-features li:last-child {
  border-bottom: none;
}

.pricing-card-features i {
  color: #00d9d9;
  margin-right: 12px;
  font-size: 12px;
}

.pricing-card-button {
  width: 100%;
  padding: 14px 32px;
  background: #F5336A;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.pricing-card-button:hover {
  background: #e60975;
  transform: translateY(-2px);
}

/* PRICING SECTION RESPONSIVE */
@media (min-width: 834px) {
  .pricing-card-featured {
    position: sticky;
    top: 100px;
  }
}

@media (max-width: 1024px) {
  .pricing-section {
    padding: 80px 30px;
  }

  .pricing-title {
    font-size: 36px;
  }

  .pricing-description {
    font-size: 15px;
  }

  .pricing-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .pricing-card-featured {
    padding-top: 50px;
  }

  .pricing-card-price {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card-featured {
    grid-column: 1;
    max-width: 100%;
    width: 100%;
    transform: scale(1);
    margin: 0;
  }

  .pricing-card-featured:hover {
    transform: scale(1) translateY(-5px);
  }
}

@media (max-width: 640px) {
  .pricing-section {
    padding: 60px 20px;
  }

  .pricing-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .pricing-description {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card-featured {
    grid-column: 1;
    max-width: 100%;
    transform: scale(1);
    padding-top: 50px;
  }

  .pricing-card-featured:hover {
    transform: scale(1) translateY(-5px);
  }

  .pricing-card {
    padding: 30px 20px;
  }

  .pricing-card-title {
    font-size: 18px;
  }

  .pricing-card-price {
    font-size: 32px;
  }

  .pricing-card-features li {
    font-size: 13px;
  }

  .pricing-card-button {
    padding: 12px 28px;
    font-size: 14px;
  }
}

/* VIDEOS SLIDER SECTION */
.videos-section {
  padding: 100px 40px;
  background: #fff;
  position: relative;
}

.videos-container {
  max-width: 1400px;
  margin: 0 auto;
}

.videos-header {
  text-align: center;
  margin-bottom: 50px;
}

.videos-title {
  font-size: 48px;
  font-weight: 900;
  color: #02020b;
  line-height: 1.2;
}

.videos-slider-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
}

.videos-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  color: #F5336A;
  border: none;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.videos-arrow:hover {
  background: rgba(255, 20, 147, 0.1);
  transform: scale(1.1);
}

.videos-arrow-prev {
  order: -1;
}

.videos-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  scroll-snap-type: x mandatory;
  scroll-padding: 0;
}

.videos-slider::-webkit-scrollbar {
  height: 6px;
}

.videos-slider::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.videos-slider::-webkit-scrollbar-thumb {
  background: #F5336A;
  border-radius: 10px;
}

.videos-slider::-webkit-scrollbar-thumb:hover {
  background: #e60975;
}

.video-item {
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 200px;
  background-color: #0a0a0a;
  position: relative;
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: #F5336A;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.video-play-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

/* VIDEOS SLIDER RESPONSIVE */
@media (max-width: 1024px) {
  .videos-section {
    padding: 80px 30px;
  }

  .videos-title {
    font-size: 36px;
  }

  .video-item {
    width: 160px;
  }

  .videos-arrow {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .videos-section {
    padding: 60px 20px;
  }

  .videos-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .video-item {
    width: 100%;
  }

  .videos-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .videos-section {
    padding: 60px 20px;
  }

  .videos-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .videos-slider-wrapper {
    position: relative;
    gap: 0;
  }

  .videos-slider {
    gap: 0;
    display: flex;
    overflow-x: auto;
  }

  .video-item {
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
  }

  .videos-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    font-size: 16px;
    z-index: 10;
  }

  .videos-arrow-prev {
    left: 10px;
  }

  .videos-arrow-next {
    right: 10px;
  }
}
/* VIDEO MODAL */
.video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

.video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-content video {
  width: 100%;
  height: auto;
  max-height: 85vh;
  display: block;
  border-radius: 8px;
}

.video-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 40px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  line-height: 1;
}

.video-modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
  font-size: 45px;
}

@media (max-width: 768px) {
  .video-modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .video-modal-content video {
    max-height: 90vh;
  }

  .video-modal-close {
    width: 45px;
    height: 45px;
    font-size: 32px;
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .video-modal-content {
    width: 98%;
    max-height: 98vh;
  }

  .video-modal-content video {
    max-height: 93vh;
  }

  .video-modal-close {
    width: 42px;
    height: 42px;
    font-size: 28px;
    top: 8px;
    right: 8px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* FAQ SECTION */
.faq-section {
  padding: 100px 20px;
  background-color: #f5f5f5;
}

.faq-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.faq-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq-title {
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #02020b;
  line-height: 1.2;
  text-align: center;
}

.faq-description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
  text-align: justify;
}

.faq-contact-btn {
  align-self: flex-start;
  padding: 12px 30px;
  background-color: #F5336A;
  color: white;
  border: none;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-contact-btn:hover {
  background-color: #e60d7f;
  transform: translateY(-2px);
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 20px;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #02020b;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #F5336A;
}

.faq-question i {
  min-width: 24px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5336A;
  transition: transform 0.3s ease;
  font-size: 16px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  animation: collapseAnswer 0.4s ease-out forwards;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
}

.faq-item.active .faq-answer {
  animation: expandAnswer 0.4s ease-out forwards;
}

@keyframes expandAnswer {
  from {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
  }
  to {
    max-height: 400px;
    opacity: 1;
    margin-top: 15px;
  }
}

@keyframes collapseAnswer {
  from {
    max-height: 400px;
    opacity: 1;
    margin-top: 15px;
  }
  to {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
  }
}

.faq-answer p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

/* FAQ RESPONSIVE */
@media (max-width: 1024px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .faq-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 80px 20px;
  }

  .faq-container {
    gap: 40px;
  }

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

  .faq-description {
    font-size: 14px;
  }

  .faq-question {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 60px 16px;
  }

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

  .faq-description {
    font-size: 13px;
  }

  .faq-contact-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
  }

  .faq-question {
    font-size: 14px;
  }

  .faq-answer p {
    font-size: 13px;
  }
}

/* CONTACT CTA SECTION */
.contact-cta-section {
  padding: 80px 20px;
  background-color: #f5f5f5;
}

.contact-cta-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.contact-cta-title {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #02020b;
  line-height: 1.2;
  margin: 0;
}

.contact-cta-description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background-color: #F5336A;
  color: white;
  border: none;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-cta-btn:hover {
  background-color: #e60d7f;
  transform: translateY(-2px);
}

.contact-cta-btn i {
  font-size: 18px;
}

/* CONTACT CTA RESPONSIVE */
@media (max-width: 768px) {
  .contact-cta-section {
    padding: 60px 20px;
  }

  .contact-cta-title {
    font-size: 32px;
  }

  .contact-cta-description {
    font-size: 14px;
  }

  .contact-cta-btn {
    font-size: 15px;
    padding: 12px 24px;
  }
}

@media (max-width: 480px) {
  .contact-cta-section {
    padding: 50px 16px;
  }

  .contact-cta-title {
    font-size: 28px;
  }

  .contact-cta-description {
    font-size: 13px;
  }

  .contact-cta-btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 12px 20px;
  }
}

/* REVIEWS SECTION */
.reviews-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.reviews-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Reviews Badge */
.reviews-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 30px 40px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.badge-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.badge-google-logo {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-google-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.badge-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge-label {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #02020b;
  margin: 0;
}

.badge-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rating-score {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #F5336A;
}

.rating-stars {
  font-size: 14px;
  color: #ffc107;
  letter-spacing: 1px;
}

.rating-count {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #999999;
}

.badge-btn {
  padding: 12px 32px;
  background-color: #4285F4;
  color: white;
  border: none;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.badge-btn:hover {
  background-color: #3367D6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

/* Reviews Slider */
.reviews-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  flex: 1;
  padding: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 calc(25% - 18px);
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 300px;
  transition: all 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: #F5336A;
}

.review-stars {
  font-size: 13px;
  color: #ffc107;
  letter-spacing: 2px;
  font-weight: 500;
}

.review-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
  flex: 1;
}

.review-more {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #F5336A;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  width: fit-content;
}

.review-more:hover {
  color: #ff0080;
  text-decoration: underline;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-name {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #02020b;
  margin: 0;
}

.review-date {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #999999;
  margin: 0;
}

.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #F5336A;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  flex-shrink: 0;
}

.reviews-arrow:hover {
  background-color: transparent;
  color: #ff0080;
  transform: translateY(-50%) scale(1.2);
}

.reviews-arrow-prev {
  left: 0;
}

.reviews-arrow-next {
  right: 0;
}

/* Availability Section */
.availability-check {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.availability-title {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #02020b;
  margin: 0 0 12px 0;
}

.availability-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  margin: 0 0 30px 0;
}

.availability-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 20px;
}

.availability-input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #02020b;
  background-color: #fafafa;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ff1493' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 48px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.availability-input:hover {
  border-color: #F5336A;
  background-color: #fff;
}

.availability-input:focus {
  outline: none;
  border-color: #F5336A;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.15);
}

.availability-input::placeholder {
  color: #999999;
}

/* Styling for date input calendar icon */
.availability-input::-webkit-calendar-picker-indicator {
  display: none;
}

.availability-btn {
  padding: 14px 32px;
  background-color: #F5336A;
  color: white;
  border: none;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.availability-btn:hover {
  background-color: #ff0080;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}

.availability-disclaimer {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #999999;
  margin: 0;
}

/* Responsive Reviews */
@media (max-width: 1400px) {
  .review-card {
    flex: 0 0 calc(33.333% - 16px);
  }

  .reviews-badge {
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .review-card {
    flex: 0 0 calc(50% - 12px);
  }

  .reviews-badge {
    flex-wrap: wrap;
    gap: 20px;
  }

  .badge-left {
    flex: 1;
    min-width: 300px;
  }

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

@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 20px;
  }

  .reviews-wrapper {
    gap: 50px;
  }

  .reviews-badge {
    flex-direction: column;
    padding: 25px;
    text-align: center;
  }

  .badge-left {
    justify-content: center;
    flex: 1;
  }

  .badge-btn {
    width: 100%;
  }

  .review-card {
    flex: 0 0 calc(100% - 0px);
  }

  .reviews-arrow {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .availability-check {
    padding: 40px 25px;
  }

  .availability-title {
    font-size: 26px;
  }

  .availability-form {
    flex-direction: column;
  }

  .availability-input,
  .availability-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .reviews-section {
    padding: 50px 16px;
  }

  .reviews-wrapper {
    gap: 40px;
  }

  .reviews-badge {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .badge-left {
    justify-content: center;
    flex: 1;
    gap: 12px;
    min-width: 0;
  }

  .badge-label {
    font-size: 14px;
  }

  .rating-score {
    font-size: 14px;
  }

  .rating-stars {
    font-size: 12px;
    letter-spacing: 0;
  }

  .badge-btn {
    padding: 10px 20px;
    font-size: 12px;
    width: auto;
  }

  .review-card {
    padding: 20px;
    min-height: 280px;
  }

  .review-text {
    font-size: 13px;
  }

  .reviews-arrow {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .availability-check {
    padding: 30px 16px;
  }

  .availability-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .availability-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .availability-input,
  .availability-btn {
    font-size: 13px;
    padding: 12px 16px;
  }
}

/* PANDA CHALLENGE GAME SECTION */
.game-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.game-container {
  max-width: 800px;
  margin: 0 auto;
}

.game-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
}

.game-title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.panda-emoji {
  width: 100px !important;
  height: 100px !important;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}


.game-title {
  font-size: 32px;
  font-weight: 700;
  color: #02020b;
  margin: 0;
}

.game-timer-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.timer-icon {
  font-size: 28px;
}

.game-timer {
  font-size: 32px;
  font-weight: 700;
  color: #ff6b35;
  min-width: 50px;
}

.timer-unit {
  font-size: 18px;
  color: #666;
  font-weight: 600;
}

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

.game-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.game-screen {
  display: none;
}

.game-screen.active {
  display: block;
}

/* Game Board - Memory Cards */
.game-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  perspective: 1000px;
}

.memory-card {
  aspect-ratio: 1;
  background-color: #1a1a1a;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.memory-card.flipped {
  transform: rotateY(180deg);
  background-color: white;
  border: 2px solid #F5336A;
}

.memory-card.matched {
  background-color: #e8f5e9;
  border: 2px solid #4CAF50;
  cursor: default;
}

.memory-card:hover:not(.matched) {
  box-shadow: 0 8px 20px rgba(255, 20, 147, 0.3);
  transform: translateY(-2px);
}

/* Start Button */
.game-start-btn {
  padding: 16px 48px;
  background-color: #F5336A;
  color: white;
  border: none;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}

.game-start-btn:hover {
  background-color: #ff0080;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

.game-start-btn:active {
  transform: translateY(0);
}

.game-start-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Game States Messages */
.fail-message {
  font-size: 24px;
  font-weight: 700;
  color: #d35400;
  margin: 0 0 30px;
}

.win-message {
  font-size: 28px;
  font-weight: 700;
  color: #4CAF50;
  margin: 0 0 20px;
}

.reward-subtitle {
  font-size: 16px;
  color: #666;
  margin: 0 0 15px;
}

/* Coupon Box */
.coupon-box {
  background: linear-gradient(135deg, #f0fff4 0%, #e8f5e9 100%);
  border: 2px dashed #4CAF50;
  padding: 20px;
  border-radius: 12px;
  font-size: 28px;
  font-weight: 700;
  color: #4CAF50;
  margin: 20px 0 30px;
  letter-spacing: 2px;
}

.email-subtitle {
  font-size: 14px;
  color: #666;
  margin: 20px 0 15px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.email-input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 350px;
  margin: 15px auto;
}

.game-email-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #02020b;
  box-sizing: border-box;
}

.game-email-input:focus {
  outline: none;
  border-color: #F5336A;
  box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.1);
}

.game-send-email-btn {
  padding: 12px 16px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.game-send-email-btn:hover {
  background-color: #45a049;
  transform: translateY(-1px);
}

.form-msg {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
  min-height: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .game-header {
    flex-direction: column;
    margin-bottom: 35px;
  }

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

  .game-board {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .game-section {
    padding: 60px 20px;
  }

  .game-title {
    font-size: 24px;
  }

  .game-description {
    font-size: 14px;
  }

  .game-board {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 100%;
  }

  .panda-emoji {
    width: 36px;
    height: 36px;
  }

  .coupon-box {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .game-section {
    padding: 50px 16px;
  }

  .game-header {
    flex-direction: column;
    margin-bottom: 30px;
    gap: 20px;
  }

  .game-title {
    font-size: 24px;
  }

  .game-timer-wrapper {
    padding: 12px 18px;
  }

  .game-timer {
    font-size: 28px;
  }

  .timer-icon {
    font-size: 22px;
  }

  .timer-unit {
    font-size: 16px;
  }

  .game-board {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    max-width: 100%;
  }

  .memory-card {
    font-size: 26px;
    border-radius: 8px;
  }

  .game-start-btn {
    padding: 14px 36px;
    font-size: 15px;
  }

  .fail-message,
  .win-message {
    font-size: 22px;
  }

  .reward-subtitle,
  .email-subtitle {
    font-size: 14px;
  }

  .coupon-box {
    font-size: 22px;
    padding: 16px;
  }

  .game-email-input,
  .game-send-email-btn {
    font-size: 14px;
    padding: 11px 13px;
  }
}

/* FOOTER SECTION */
.footer {
  background: #F5336A;
  color: white;
  padding: 60px 20px 30px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  gap: 15px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.footer-logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.footer-description {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.95;
  text-align: justify;
}

.footer-column-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  transition: opacity 0.3s ease;
  opacity: 0.9;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.badge-anpc,
.badge-sol {
  border: 2px solid white;
  border-radius: 4px;
  padding: 8px 10px;
  font-size: 10px;
  text-align: center;
  font-weight: 600;
  opacity: 0.9;
}

.footer-connect {
  gap: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  color: white;
  font-size: 28px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.social-link:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

.footer-phone {
  font-size: 13px;
  margin: 0;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 25px;
  text-align: center;
}

.footer-copyright {
  font-size: 12px;
  margin: 0;
  opacity: 0.9;
}

/* Footer Responsive Design */
@media (min-width: 320px) and (max-width: 767px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer {
    padding: 40px 20px 20px;
  }

  .footer-logo {
    margin-bottom: 15px;
  }

  .footer-logo svg {
    width: 50px;
    height: 50px;
  }

  .footer-logo-text {
    font-size: 14px;
  }

  .footer-description {
    font-size: 12px;
  }

  .footer-column-title {
    font-size: 13px;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-links a {
    font-size: 12px;
  }

  .social-link {
    font-size: 24px;
  }

  .footer-phone {
    font-size: 12px;
  }

  .footer-copyright {
    font-size: 11px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}

/* GO TO TOP BUTTON */
.go-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #f5f5f5;
  color: #02020b;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.go-to-top.show {
  display: flex;
}

.go-to-top:hover {
  background: #e8e8e8;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.go-to-top:active {
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .go-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

