/* ==========================================
   Pulse Website - UI Components (Enhanced)
   ========================================== */

/* Montserrat Font Classes - Using Google Fonts for Better Performance */
.montserrat-light {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.montserrat-regular {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.montserrat-medium {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.montserrat-semibold {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.montserrat-bold {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.montserrat-extrabold {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

/* Niconne Font Class for "Pulse" Logo Text - Using Google Fonts */
.niconne-regular {
  font-family: "Niconne", cursive;
  font-weight: 400;
  font-style: normal;
}

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

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  transition: all var(--transition-normal);
  padding: 0;
  overflow: hidden;
}

/* Header Background - Same as Hero Section (No Overlay) */
.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.header-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.header-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(47, 1, 29, 0.8),
    rgba(47, 1, 29, 0.8)
  );
}

/* Desktop Navigation */
.navbar-desktop {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  padding: 0 40px;
  z-index: 2;
  gap: 60px;
}

.navbar-mobile {
  display: none;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 2;
}

.nav-brand a {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.brand-logo {
  width: 65px;
  height: 65px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.nav-brand:hover .brand-logo {
  transform: scale(1.05);
}

.brand-info {
  display: flex;
  align-items: flex-start;
}

.brand-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.brand-text {
  font-family: 'Niconne', cursive;
  font-size: 40px;
  color: white;
  line-height: 0.9;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.brand-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  font-weight: 300;
  margin: 0;
  margin-top: 2px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
  letter-spacing: 0.3px;
  line-height: 1;
}

.nav-menu-container {
  background: var(--primary-color);
  border-radius: 12px;
  padding: 0 35px;
  height: 55px;
  display: flex;
  align-items: center;
  box-shadow: 0 6px 20px rgba(164, 0, 103, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--spacing-lg);
}

.nav-menu a {
  color: rgba(220, 220, 220, 1);
  font-weight: 600;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 8px;
  transition: all var(--transition-fast);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  white-space: nowrap;
  position: relative;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-menu a:hover::before,
.nav-menu a[aria-current="page"]::before {
  width: 80%;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: white;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

/* Mobile Navigation */
.navbar-mobile {
  position: relative;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  height: 85px;
  z-index: 2;
  gap: 40px;
}

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

.nav-brand-mobile a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.brand-logo-mobile {
  width: 55px;
  height: 55px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

.brand-info-mobile {
  display: flex;
  align-items: flex-start;
}

.brand-content-mobile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.brand-text-mobile {
  font-family: 'Niconne', cursive;
  font-size: 32px;
  font-weight: 400;
  color: white;
  line-height: 0.9;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.brand-tagline-mobile {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  font-weight: 300;
  line-height: 1.1;
  margin: 0;
  margin-top: 2px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
  letter-spacing: 0.3px;
}

/* Improved Hamburger Menu */
.mobile-menu-toggle {
  background: var(--primary-color);
  border: none;
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(164, 0, 103, 0.4);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(164, 0, 103, 0.5);
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 24px;
  height: 18px;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger Animation */
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* CSS-Only Icons for Professional Look */
.icon-home::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
}

.icon-info::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
}

.icon-phone::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
}

.icon-shield::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12,1L3,5V11C3,16.55 6.84,21.74 12,23C17.16,21.74 21,16.55 21,11V5L12,1M12,7C13.4,7 14.8,8.6 14.8,10V11H16.2V16H7.8V11H9.2V10C9.2,8.6 10.6,7 12,7M12,8.2C11.2,8.2 10.4,8.7 10.4,10V11H13.6V10C13.6,8.7 12.8,8.2 12,8.2Z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12,1L3,5V11C3,16.55 6.84,21.74 12,23C17.16,21.74 21,16.55 21,11V5L12,1M12,7C13.4,7 14.8,8.6 14.8,10V11H16.2V16H7.8V11H9.2V10C9.2,8.6 10.6,7 12,7M12,8.2C11.2,8.2 10.4,8.7 10.4,10V11H13.6V10C13.6,8.7 12.8,8.2 12,8.2Z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
}

.icon-document::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2M18,20H6V4H13V9H18V20Z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2M18,20H6V4H13V9H18V20Z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
}

.icon-help::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11,18H13V16H11V18M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,20C7.59,20 4,16.41 4,12C4,7.59 7.59,4 12,4C16.41,4 20,7.59 20,12C20,16.41 16.41,20 12,20M12,6A4,4 0 0,0 8,10H10A2,2 0 0,1 12,8A2,2 0 0,1 14,10C14,12 11,11.75 11,15H13C13,12.75 16,12.5 16,10A4,4 0 0,0 12,6Z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11,18H13V16H11V18M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,20C7.59,20 4,16.41 4,12C4,7.59 7.59,4 12,4C16.41,4 20,7.59 20,12C20,16.41 16.41,20 12,20M12,6A4,4 0 0,0 8,10H10A2,2 0 0,1 12,8A2,2 0 0,1 14,10C14,12 11,11.75 11,15H13C13,12.75 16,12.5 16,10A4,4 0 0,0 12,6Z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
}

.icon-gallery::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5,17L9.5,11L13,15.5L15.5,12.5L19,17M20,6V18A2,2 0 0,1 18,20H6A2,2 0 0,1 4,18V6A2,2 0 0,1 6,4H18A2,2 0 0,1 20,6Z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5,17L9.5,11L13,15.5L15.5,12.5L19,17M20,6V18A2,2 0 0,1 18,20H6A2,2 0 0,1 4,18V6A2,2 0 0,1 6,4H18A2,2 0 0,1 20,6Z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
}

/* Mobile Drawer - Enhanced Professional Design */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

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

.drawer-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.drawer-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  box-shadow: 8px 0 30px rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(164, 0, 103, 0.1);
}

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

.drawer-header {
  padding: 22px 25px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  border-bottom: 1px solid rgba(164, 0, 103, 0.08);
  background: linear-gradient(135deg, rgba(164, 0, 103, 0.04), rgba(255, 66, 148, 0.03));
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.drawer-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(164, 0, 103, 0.2), transparent);
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.drawer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 0;
  box-shadow: none;
}

.drawer-brand-info {
  display: flex;
  flex-direction: column;
}

.drawer-brand-text {
  font-family: 'Niconne', cursive;
  font-size: 28px;
  color: var(--primary-color);
  line-height: 1;
  margin: 0;
  font-weight: 400;
}

.drawer-brand-tagline {
  font-size: 11px;
  color: rgba(164, 0, 103, 0.8);
  font-style: italic;
  line-height: 1;
  margin-top: 2px;
  opacity: 0.9;
  font-weight: 300;
  letter-spacing: 0.2px;
}

.drawer-close {
  background: rgba(164, 0, 103, 0.1);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  cursor: pointer;
  color: var(--primary-color);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
}

.drawer-close:hover {
  background: rgba(164, 0, 103, 0.2);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(164, 0, 103, 0.2);
}

.close-icon {
  font-size: 18px;
  font-weight: bold;
}

.drawer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(164, 0, 103, 0.15), transparent);
  margin: 0;
}

.drawer-nav {
  padding: 15px 0 30px;
}

/* Add floating menu effect */
.drawer-nav ul {
  margin: 5px 0;
  padding: 0 5px;
}

.drawer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 25px;
  color: #2d3748;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.drawer-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-color), #ff6b9d);
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer-link:hover::before {
  transform: scaleY(1);
}

.drawer-link:hover {
  background: linear-gradient(135deg, rgba(164, 0, 103, 0.06), rgba(255, 66, 148, 0.04));
  color: var(--primary-color);
  padding-left: 30px;
  transform: translateX(6px);
  box-shadow: 0 2px 8px rgba(164, 0, 103, 0.08);
  border-radius: 0 8px 8px 0;
}

.drawer-link:active {
  transform: translateX(6px) scale(0.98);
  transition: all 0.1s ease;
}

.drawer-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(164, 0, 103, 0.8);
  transition: all 0.3s ease;
}

.drawer-link:hover .drawer-icon {
  color: var(--primary-color);
  transform: scale(1.1);
}

/* Enhanced Focus State for Accessibility */
.drawer-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: -2px;
  background: linear-gradient(135deg, rgba(164, 0, 103, 0.05), rgba(255, 66, 148, 0.03));
}

/* Smooth scroll behavior for drawer */
.drawer-content {
  scroll-behavior: smooth;
}

/* Add subtle entrance animation for drawer items */
.drawer-nav li {
  opacity: 0;
  animation: slideInFromLeft 0.3s ease forwards;
}

.drawer-nav li:nth-child(1) { animation-delay: 0.1s; }
.drawer-nav li:nth-child(2) { animation-delay: 0.15s; }
.drawer-nav li:nth-child(3) { animation-delay: 0.2s; }
.drawer-nav li:nth-child(4) { animation-delay: 0.25s; }
.drawer-nav li:nth-child(5) { animation-delay: 0.3s; }
.drawer-nav li:nth-child(6) { animation-delay: 0.35s; }
.drawer-nav li:nth-child(7) { animation-delay: 0.4s; }

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Enhanced Footer Styles */
.footer {
  position: relative;
  background: black;
  color: white;
  margin-top: 0;
}

.footer-curve-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.footer-curve {
  width: 100%;
  height: 100%;
}

.footer-content {
  position: relative;
  padding-top: 150px;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Desktop Footer Layout */
.footer-desktop {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 60px;
}

.footer-mobile {
  display: none;
}

.footer-brand-section {
  flex: 1;
  max-width: 350px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-brand img {
  width: 55px;
  height: 55px;
  filter: brightness(1.1);
}

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

.footer-brand-name {
  font-family: 'Niconne', cursive;
  font-size: 45px;
  color: white;
  line-height: 1;
  margin-bottom: 5px;
}

.footer-brand-tagline {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.2;
  font-style: italic;
}

.footer-links-section {
  flex: 1;
  display: flex;
  justify-content: center;
  max-width: 400px;
}

.footer-links-columns {
  display: flex;
  gap: 80px;
  width: 100%;
  justify-content: center;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  position: relative;
  padding: 2px 0;
}

.footer-link:hover {
  color: white;
  transform: translateX(5px);
}

.footer-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.footer-link:hover::before {
  width: 100%;
}

.footer-store-section {
  flex: 1;
  max-width: 350px;
  text-align: right;
}

.footer-store-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
  margin-bottom: 20px;
}

.footer-store-btn {
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.footer-store-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.footer-store-btn:hover::before {
  left: 100%;
}

.footer-store-btn:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.footer-store-btn img {
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.footer-store-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px 20px 0 0;
  margin: 0 -40px -40px -40px;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.footer-divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  margin: 0 30px;
}

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

.footer-social a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.footer-social a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--primary-color);
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}

.footer-social a:hover::before {
  width: 100%;
  height: 100%;
}

.footer-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(164, 0, 103, 0.3);
  border-color: var(--primary-color);
}

.footer-social a img {
  width: 20px;
  height: 20px;
  filter: brightness(0.9);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.footer-social a:hover img {
  filter: brightness(1.2);
  transform: scale(1.1);
}

/* ==========================================
   Hero Section (HomeIntroSection) - Enhanced
   ========================================== */

.hero-intro-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  box-sizing: border-box;
  padding-top: 85px; /* Desktop navbar height */
}

/* Background */
.hero-intro-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(47, 1, 29, 0.8),
    rgba(47, 1, 29, 0.8)
  );
}

/* Content Container */
.hero-intro-content {
  position: relative;
  width: 100%;
  height: calc(100% - 85px); /* Subtract navbar height for proper centering */
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ==========================================
   DESKTOP LAYOUT - Enhanced
   ========================================== */
.hero-intro-desktop {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.hero-intro-phones {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 45%;
}

.hero-phones-image {
  max-width: 100%;
  height: 90vh;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.hero-intro-text {
  flex: 1;
  padding: 0 40px;
  color: white;
}

.hero-main-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3vw;
  font-weight: 600;
  color: white;
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Enhanced Promo Badge for Desktop */
.hero-promo-text {
  margin-bottom: 25px;
  position: relative;
}

.promo-badge {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 25px;
  padding: 8px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.promo-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(164, 0, 103, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.promo-highlight {
  color: var(--primary-color);
  font-family: 'Montserrat', sans-serif;
  font-size: 3vw;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.promo-underline {
  text-decoration: underline;
  font-style: italic;
  text-decoration-color: var(--primary-color);
  text-decoration-thickness: 3px;
}

.promo-sparkles {
  position: absolute;
  top: -10px;
  right: -10px;
  display: flex;
  gap: 5px;
}

.sparkle {
  font-size: 16px;
  animation: sparkleFloat 2s infinite alternate;
}

.sparkle:nth-child(2) {
  animation-delay: 0.3s;
}

.sparkle:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes sparkleFloat {
  0% { transform: translateY(0px); opacity: 0.7; }
  100% { transform: translateY(-8px); opacity: 1; }
}

.hero-tagline {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 12px 25px;
  font-family: 'Montserrat', sans-serif;
  font-size: 2vw;
  color: white;
  display: inline-block;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Enhanced QR Section for Desktop */
.hero-qr-section-enhanced {
  display: flex;
  justify-content: flex-start;
}

.qr-container-hero {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.qr-header-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
}

.qr-icon-hero {
  font-size: 20px;
}

.qr-header-hero h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin: 0;
}

.qr-code-hero {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.qr-code-hero img {
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.qr-overlay-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  pointer-events: none;
}

.qr-scanner-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  animation: scanHero 2s infinite;
}

@keyframes scanHero {
  0% { top: 0; opacity: 1; }
  50% { opacity: 0.7; }
  100% { top: 100%; opacity: 1; }
}

.qr-text-hero {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.4;
}

/* ==========================================
   TABLET LAYOUT - Enhanced
   ========================================== */
.hero-intro-tablet {
  display: none;
  width: 100%;
  height: 100%;
  flex-direction: column;
  padding: 0 3%;
}

.hero-intro-text-tablet {
  padding: 3% 0;
  text-align: center;
}

.hero-main-title-tablet {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Enhanced Promo Badge for Tablet */
.hero-promo-text-tablet {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.promo-badge-tablet {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 20px;
  padding: 6px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.promo-badge-tablet::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(164, 0, 103, 0.1), transparent);
  animation: shimmer 3s infinite;
}

.promo-highlight-tablet {
  color: var(--primary-color);
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.promo-underline-tablet {
  text-decoration: underline;
  font-style: italic;
  text-decoration-color: var(--primary-color);
  text-decoration-thickness: 2px;
}

.promo-sparkles-tablet {
  position: absolute;
  top: -8px;
  right: -8px;
  display: flex;
  gap: 4px;
}

.sparkle-tablet {
  font-size: 14px;
  animation: sparkleFloat 2s infinite alternate;
}

.sparkle-tablet:nth-child(2) {
  animation-delay: 0.3s;
}

.hero-tagline-tablet {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: white;
  display: inline-block;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Feature Items for Tablet */
.hero-features-tablet {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.feature-item-tablet {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 14px;
  font-weight: 600;
}

.feature-icon-tablet {
  font-size: 16px;
}

.hero-intro-bottom-tablet {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.hero-intro-phones-tablet {
  flex: 2;
  display: flex;
  justify-content: center;
}

.hero-intro-phones-tablet img {
  max-width: 100%;
  height: 80vh;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.25));
}

/* Enhanced QR Section for Tablet */
.hero-qr-section-tablet-enhanced {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-container-tablet {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.qr-header-tablet {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}

.qr-icon-tablet {
  font-size: 18px;
}

.qr-header-tablet h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin: 0;
}

.qr-code-tablet {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.qr-code-tablet img {
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.qr-overlay-tablet {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  pointer-events: none;
}

.qr-scanner-tablet {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  animation: scanTablet 2s infinite;
}

@keyframes scanTablet {
  0% { top: 0; opacity: 1; }
  50% { opacity: 0.7; }
  100% { top: 100%; opacity: 1; }
}

.qr-text-tablet {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 15px 0;
  line-height: 1.4;
}

.tablet-store-section {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}

.store-text-tablet {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 10px 0;
}

.tablet-store-buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.tablet-store-btn {
  transition: transform 0.2s ease;
}

.tablet-store-btn:hover {
  transform: scale(1.05);
}

.tablet-store-btn img {
  width: 80px;
  height: auto;
  border-radius: 6px;
}

/* ==========================================
   MOBILE LAYOUT - Enhanced
   ========================================== */
.hero-intro-mobile {
  display: none;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
  overflow-y: auto;
}

.hero-intro-header-mobile {
  text-align: center;
  margin-bottom: 30px;
}

.hero-main-title-mobile {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Enhanced Promo Badge for Mobile */
.hero-promo-text-mobile {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.promo-badge-mobile {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 18px;
  padding: 5px 18px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.promo-badge-mobile::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(164, 0, 103, 0.1), transparent);
  animation: shimmer 3s infinite;
}

.promo-highlight-mobile {
  color: var(--primary-color);
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.promo-underline-mobile {
  text-decoration: underline;
  font-style: italic;
  text-decoration-color: var(--primary-color);
  text-decoration-thickness: 2px;
}

.promo-sparkles-mobile {
  position: absolute;
  top: -6px;
  right: -6px;
  display: flex;
  gap: 3px;
}

.sparkle-mobile {
  font-size: 12px;
  animation: sparkleFloat 2s infinite alternate;
}

.sparkle-mobile:nth-child(2) {
  animation-delay: 0.3s;
}

.hero-tagline-mobile {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 8px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: white;
  display: inline-block;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Feature Highlights for Mobile */
.hero-features-mobile {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-highlight-mobile {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease;
}

.feature-highlight-mobile:hover {
  transform: translateY(-2px);
}

.feature-highlight-icon-mobile {
  font-size: 28px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
}

.feature-highlight-content-mobile h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin: 0 0 5px 0;
}

.feature-highlight-content-mobile p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.4;
}

/* Download Section for Mobile */
.hero-download-section-mobile {
  text-align: center;
}

.download-cta-mobile {
  margin-bottom: 25px;
}

.btn-download-mobile {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border: none;
  border-radius: 25px;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(164, 0, 103, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-download-mobile::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-download-mobile:hover::before {
  left: 100%;
}

.btn-download-mobile:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(164, 0, 103, 0.5);
}

.btn-icon-mobile {
  font-size: 18px;
}

.btn-arrow-mobile {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn-download-mobile:hover .btn-arrow-mobile {
  transform: translateX(3px);
}

/* Enhanced Store Buttons for Mobile */
.hero-store-buttons-enhanced {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 25px;
}

.mobile-store-btn-enhanced {
  flex: 1;
  max-width: 140px;
  display: block;
  transition: transform 0.2s ease;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-store-btn-enhanced:hover {
  transform: scale(1.05);
}

.mobile-store-btn-enhanced img {
  width: 100%;
  height: auto;
  display: block;
}

/* Download Stats for Mobile */
.download-stats-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item-mobile {
  text-align: center;
  color: white;
}

.stat-number-mobile {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.stat-label-mobile {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}

.stat-divider-mobile {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
}

/* ==========================================
   Why Choose Us Section - Compact Grid Design
   ========================================== */

/* Base Section Styles */
.why-choose-us-section {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  padding: 60px 0;
  overflow: hidden;
}

.why-choose-us-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, rgba(164, 0, 103, 0.02) 0%, transparent 25%),
    linear-gradient(-45deg, rgba(164, 0, 103, 0.01) 0%, transparent 25%);
  pointer-events: none;
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Header Section */
.why-choose-header {
  text-align: center;
  margin-bottom: 50px;
}

.why-choose-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-color), #87014f);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(164, 0, 103, 0.25);
}

.why-choose-badge::before {
  content: '⭐';
  font-size: 14px;
}

.why-choose-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #2c3e50;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.why-choose-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), #ff6b9d);
  border-radius: 2px;
}

.why-choose-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 500;
}

/* ==========================================
   Grid Layout (All Devices)
   ========================================== */
.why-choose-grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

/* Desktop Grid */
@media (min-width: 1025px) {
  .why-choose-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}

/* Tablet Grid */
@media (min-width: 769px) and (max-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* Small Tablet Grid */
@media (min-width: 601px) and (max-width: 768px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* Mobile Grid */
@media (max-width: 600px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Feature Card Styles */
.feature-card {
  background: white;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(164, 0, 103, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #ff6b9d);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(164, 0, 103, 0.15);
  border-color: rgba(164, 0, 103, 0.2);
}

/* Feature Icon */
.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), #ff6b9d);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 15px rgba(164, 0, 103, 0.2);
}

.feature-icon::before {
  font-size: 22px;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Icon Content */
.feature-card:nth-child(1) .feature-icon::before { content: '💰'; }
.feature-card:nth-child(2) .feature-icon::before { content: '✅'; }
.feature-card:nth-child(3) .feature-icon::before { content: '⚡'; }
.feature-card:nth-child(4) .feature-icon::before { content: '💬'; }
.feature-card:nth-child(5) .feature-icon::before { content: '🎯'; }
.feature-card:nth-child(6) .feature-icon::before { content: '🤖'; }
.feature-card:nth-child(7) .feature-icon::before { content: '🛡️'; }

/* Feature Content */
.feature-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.feature-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Animation Delays */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.15s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.25s; }
.feature-card:nth-child(5) { animation-delay: 0.3s; }
.feature-card:nth-child(6) { animation-delay: 0.35s; }
.feature-card:nth-child(7) { animation-delay: 0.4s; }

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   Responsive Adjustments
   ========================================== */

/* Desktop */
@media (min-width: 1025px) {
  .why-choose-title {
    font-size: 42px;
  }
  
  .why-choose-subtitle {
    font-size: 18px;
  }
  
  .feature-card {
    padding: 30px 25px;
  }
  
  .feature-content h3 {
    font-size: 17px;
  }
  
  .feature-content p {
    font-size: 14px;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .why-choose-title {
    font-size: 38px;
  }
  
  .why-choose-subtitle {
    font-size: 17px;
  }
  
  .feature-card {
    padding: 25px 20px;
  }
}

/* Small Tablet */
@media (min-width: 601px) and (max-width: 768px) {
  .why-choose-title {
    font-size: 34px;
  }
  
  .why-choose-subtitle {
    font-size: 16px;
  }
  
  .feature-card {
    padding: 22px 18px;
  }
  
  .feature-content h3 {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .why-choose-us-section {
    padding: 50px 0;
  }
  
  .why-choose-header {
    margin-bottom: 40px;
  }
  
  .why-choose-title {
    font-size: 28px;
    letter-spacing: 0.5px;
  }
  
  .why-choose-subtitle {
    font-size: 15px;
  }
  
  .why-choose-badge {
    padding: 6px 16px;
    font-size: 11px;
  }
  
  .feature-card {
    padding: 20px 18px;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 15px;
  }
  
  .feature-icon::before {
    font-size: 20px;
  }
  
  .feature-content h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  .feature-content p {
    font-size: 13px;
  }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
  .why-choose-container {
    padding: 0 15px;
  }
  
  .why-choose-title {
    font-size: 24px;
  }
  
  .why-choose-subtitle {
    font-size: 14px;
  }
  
  .feature-card {
    padding: 18px 15px;
  }
  
  .feature-content h3 {
    font-size: 14px;
  }
  
  .feature-content p {
    font-size: 12px;
  }
}

/* ==========================================
   Download Section Enhanced Styles
   ========================================== */

.download-section-enhanced {
  position: relative;
  background: linear-gradient(135deg, #2f011d, #87014f);
  padding: 100px 0;
  color: white;
  overflow: hidden;
}

.download-enhanced-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.download-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="60" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/></svg>');
  animation: float 6s ease-in-out infinite;
}

.download-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(164, 0, 103, 0.1), rgba(135, 1, 79, 0.1));
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.download-enhanced-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.download-enhanced-content {
  text-align: center;
}

.download-enhanced-header {
  margin-bottom: 60px;
}

.download-enhanced-icon {
  margin-bottom: 20px;
}

.pulse-icon {
  font-size: 48px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.download-enhanced-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.title-gradient {
  background: linear-gradient(45deg, #ff6b9d, #ffc107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.download-enhanced-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.download-enhanced-main {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.download-enhanced-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.feature-highlight-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.feature-highlight-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: white;
}

.feature-highlight-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.download-enhanced-center {
  text-align: center;
}

.download-cta-main {
  margin-bottom: 30px;
}

.btn-download-enhanced {
  background: linear-gradient(45deg, var(--primary-color), #ff6b9d);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(164, 0, 103, 0.3);
}

.btn-download-enhanced:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(164, 0, 103, 0.4);
}

.btn-icon-enhanced {
  font-size: 20px;
}

.btn-arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn-download-enhanced:hover .btn-arrow {
  transform: translateX(5px);
}

.download-stores-enhanced {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

.store-btn-enhanced {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 20px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.store-btn-enhanced:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.store-icon-wrapper img {
  width: 24px;
  height: 24px;
}

.store-text-enhanced {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-label {
  font-size: 10px;
  opacity: 0.8;
}

.store-name {
  font-size: 14px;
  font-weight: 600;
}

.download-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #ff6b9d;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.download-enhanced-qr {
  display: flex;
  justify-content: center;
}

.qr-container-enhanced {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.qr-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.qr-icon {
  font-size: 20px;
}

.qr-header h3 {
  font-size: 16px;
  margin: 0;
  color: white;
}

.qr-code-enhanced {
  position: relative;
  margin-bottom: 15px;
}

.qr-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  pointer-events: none;
}

.qr-scanner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  animation: scan 2s linear infinite;
}

@keyframes scan {
  0% { transform: translateY(0); }
  100% { transform: translateY(120px); }
}

.qr-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.download-enhanced-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.trust-icon {
  font-size: 16px;
}

/* ==========================================
   Screenshots Gallery Section - Classic Design
   ========================================== */

.gallery-section {
  background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(164, 0, 103, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(164, 0, 103, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.gallery-decorative-line {
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), #ff6b9d, var(--primary-color));
  margin: 0 auto 50px;
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(164, 0, 103, 0.3);
}

.gallery-title-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.gallery-title-left {
  text-align: left;
}

.gallery-subtitle {
  font-size: 24px;
  color: var(--primary-color);
  font-weight: 900;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 2px 8px rgba(164, 0, 103, 0.2);
  background: linear-gradient(135deg, var(--primary-color), #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-main-title {
  font-size: 52px;
  font-weight: 800;
  color: #2c3e50;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.gallery-main-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  border-radius: 2px;
}

.gallery-badge {
  background: var(--primary-color);
  color: white;
  padding: 18px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(164, 0, 103, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.gallery-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(164, 0, 103, 0.4);
}

.platform-icon {
  font-size: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.platform-text {
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Desktop Gallery */
.gallery-desktop {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  justify-items: center;
  padding: 0 20px;
}

/* Classic Screenshot Frame Design */
.screenshot-phone-frame {
  position: relative;
  transition: transform 0.3s ease;
}

.screenshot-phone-frame:hover {
  transform: translateY(-4px);
}

.classic-phone-container {
  position: relative;
  width: 200px;
  height: 400px;
  margin: 0 auto;
}

.classic-frame {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 25px;
  padding: 20px;
  position: relative;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(164, 0, 103, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(164, 0, 103, 0.15);
}

.classic-frame::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #ff6b9d);
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(164, 0, 103, 0.3);
}

.classic-frame::after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  background: rgba(164, 0, 103, 0.1);
  opacity: 0.6;
}

.classic-screen {
  width: 100%;
  height: calc(100% - 60px);
  margin-top: 30px;
  border-radius: 15px;
  overflow: hidden;
  background: #000;
  position: relative;
  box-shadow: 
    inset 0 0 0 2px rgba(164, 0, 103, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.15);
}

.classic-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
}

.classic-screen img.lazy-loading {
  opacity: 0.7;
  filter: blur(2px);
}

.classic-screen img.lazy-loaded {
  opacity: 1;
  filter: blur(0);
}

.classic-screen img.lazy-error {
  opacity: 0.5;
  background: #f5f5f5;
}

/* Modern Carousel Design */
.gallery-carousel {
  display: none;
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  padding: 30px 0;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 40px;
  will-change: transform;
  transform: translate3d(0, 0, 0); /* Hardware acceleration */
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.carousel-slide .classic-phone-container {
  width: 260px;
  height: 480px;
}

/* Enhanced mobile frame sizing */
.carousel-slide .classic-frame {
  padding: 25px;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(164, 0, 103, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (min-width: 1025px) {
  .gallery-desktop {
    display: grid;
  }
  
  .gallery-carousel {
    display: none;
  }
  
  .gallery-title-section {
    gap: 80px;
  }
  
  .gallery-main-title {
    font-size: 56px;
  }
  
  .gallery-subtitle {
    font-size: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .gallery-desktop {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    row-gap: 40px;
    padding: 0 30px;
  }
  
  .gallery-carousel {
    display: none;
  }
  
  .classic-phone-container {
    width: 180px;
    height: 360px;
  }
  
  .classic-frame {
    padding: 18px;
  }
  
  .gallery-main-title {
    font-size: 44px;
  }
  
  .gallery-subtitle {
    font-size: 20px;
  }
  
  .gallery-title-section {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
  
  .gallery-title-left {
    text-align: center;
  }
  
  .gallery-badge {
    align-self: center;
    padding: 15px 25px;
  }
  
  .platform-text {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .gallery-desktop {
    display: none;
  }
  
  .gallery-carousel {
    display: block;
    max-width: calc(100vw - 30px);
    margin: 0 auto;
  }
  
  .gallery-section {
    padding: 60px 0;
  }
  
  .gallery-container {
    padding: 0 15px;
  }
  
  .gallery-header {
    margin-bottom: 50px;
  }
  
  .gallery-title-section {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .gallery-title-left {
    text-align: center;
  }
  
  .gallery-main-title {
    font-size: 36px;
  }
  
  .gallery-main-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
  }
  
  .gallery-subtitle {
    font-size: 18px;
    letter-spacing: 2px;
  }
  
  .gallery-badge {
    align-self: center;
    padding: 12px 20px;
    font-size: 13px;
  }
  
  .platform-text {
    font-size: 13px;
  }
  
  .gallery-decorative-line {
    width: 100px;
    height: 4px;
    margin-bottom: 40px;
  }
  
  .carousel-slide .classic-phone-container {
    width: 240px;
    height: 440px;
  }
  
  .carousel-slide .classic-frame {
    padding: 22px;
  }
}

@media (max-width: 480px) {
  .gallery-section {
    padding: 45px 0;
  }
  
  .gallery-container {
    padding: 0 10px;
  }
  
  .gallery-main-title {
    font-size: 28px;
  }
  
  .gallery-subtitle {
    font-size: 16px;
    letter-spacing: 1px;
  }
  
  .gallery-badge {
    padding: 10px 18px;
    font-size: 12px;
    justify-content: center;
  }
  
  .platform-text {
    font-size: 12px;
  }
  
  .gallery-decorative-line {
    width: 70px;
    height: 3px;
    margin-bottom: 25px;
  }
  
  .gallery-carousel {
    max-width: calc(100vw - 20px);
    padding: 0 10px;
  }
  
  .carousel-slide .classic-phone-container {
    width: calc(100vw - 60px);
    max-width: 280px;
    height: 420px;
  }
  
  .carousel-slide .classic-frame {
    padding: 18px;
  }
  
  .carousel-slide {
    padding: 0 10px;
    min-width: 100%;
    display: flex;
    justify-content: center;
  }
}

/* ==========================================
   More Than Just Dating Section
   ========================================== */

.more-than-dating-section {
  background-color: rgb(59, 0, 36);
  padding: 80px 24px 120px;
  color: white;
}

.more-than-dating-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.more-than-dating-header {
  margin-bottom: 60px;
}

.more-than-dating-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.title-highlight {
  color: #ff4294;
  text-shadow: 0 2px 10px rgba(255, 66, 148, 0.3);
}

.more-than-dating-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-items: center;
}

.feature-card-item {
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.feature-card-item:hover .feature-card-image img {
  transform: scale(1.1);
}

.feature-card-content {
  background-color: #84004f;
  padding: 20px 16px;
  text-align: left;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-card-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

/* ==========================================
   Responsive Breakpoints
   ========================================== */

/* Desktop */
@media (min-width: 1025px) {
  .hero-intro-desktop {
    display: flex;
  }
  
  .hero-intro-tablet,
  .hero-intro-mobile {
    display: none;
  }
  
  .why-choose-desktop {
    display: grid;
  }
  
  .why-choose-tablet,
  .why-choose-mobile {
    display: none;
  }
  
  .features-grid-desktop {
    display: grid;
  }
  
  .features-grid-tablet,
  .features-grid-mobile {
    display: none;
  }
  
  .gallery-desktop {
    display: grid;
  }
  
  .gallery-carousel {
    display: none;
  }
  
  .hero-main-title {
    font-size: 3.5vw;
  }
  
  .promo-highlight {
    font-size: 3.5vw;
  }
  
  .hero-tagline {
    font-size: 2.2vw;
  }
  
  .decorative-line-left,
  .decorative-line-right {
    display: block;
  }
  
  .gallery-title-section {
    gap: 50px;
  }
  
  .gallery-badge {
    padding: 15px 25px;
  }
}

/* Tablet */
@media (min-width: 601px) and (max-width: 1024px) {
  .hero-intro-tablet {
    display: flex;
  }
  
  .hero-intro-desktop,
  .hero-intro-mobile {
    display: none;
  }
  
  .features-grid-tablet {
    display: grid;
  }
  
  .features-grid-desktop,
  .features-grid-mobile {
    display: none;
  }
  
  .gallery-carousel {
    display: block;
  }
  
  .gallery-desktop {
    display: none;
  }
  
  .hero-main-title-tablet {
    font-size: 42px;
  }
  
  .promo-highlight-tablet {
    font-size: 32px;
  }
  
  .hero-tagline-tablet {
    font-size: 20px;
  }
  
  .download-subtitle {
    font-size: 18px;
  }
  
  .download-main-title {
    font-size: 36px;
  }
  
  .decorative-line-left,
  .decorative-line-right {
    display: none;
  }
  
  .gallery-title-section {
    flex-direction: column;
    gap: 20px;
  }
  
  .gallery-badge {
    align-self: center;
  }
  
  .download-enhanced-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .download-enhanced-features {
    order: 2;
  }
  
  .download-enhanced-qr {
    order: 3;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero-intro-mobile {
    display: flex;
  }
  
  .hero-intro-desktop,
  .hero-intro-tablet {
    display: none;
  }
  
  .features-grid-mobile {
    display: grid;
  }
  
  .features-grid-desktop,
  .features-grid-tablet {
    display: none;
  }
  
  .gallery-carousel {
    display: block;
  }
  
  .gallery-desktop {
    display: none;
  }
  
  .navbar {
    display: none;
  }
  
  .hero-intro-content {
    padding-top: 85px;
  }
  
  .hero-section {
    min-height: 100vh;
  }
  
  .hero-main-title-mobile {
    font-size: 28px;
  }
  
  .promo-highlight-mobile {
    font-size: 24px;
  }
  
  .hero-tagline-mobile {
    font-size: 16px;
  }
  
  .download-subtitle {
    font-size: 16px;
  }
  
  .download-main-title {
    font-size: 28px;
  }
  
  .download-features-section {
    padding: 60px 20px;
  }
  
  .download-features-header {
    margin-bottom: 40px;
  }
  
  .decorative-line-left,
  .decorative-line-right {
    display: none;
  }
  
  .gallery-title-section {
    flex-direction: column;
    gap: 15px;
  }
  
  .gallery-subtitle {
    font-size: 18px;
  }
  
  .gallery-main-title {
    font-size: 32px;
  }
  
  .gallery-badge {
    align-self: center;
    padding: 10px 16px;
  }
  
  .platform-text {
    font-size: 12px;
  }
  
  .more-than-dating-title {
    font-size: 28px;
  }
  
  .feature-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .gallery-section,
  .more-than-dating-section {
    padding: 60px 0;
  }
  
  .download-enhanced-main {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .feature-highlight {
    justify-content: center;
    text-align: center;
  }
  
  .download-stores-enhanced {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .download-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .download-enhanced-title {
    font-size: 32px;
  }
  
  .btn-download-enhanced {
    padding: 16px 32px;
    font-size: 16px;
  }
}

/* Extra small mobile devices */
@media (max-width: 400px) {
  .hero-store-buttons-enhanced {
    flex-direction: column;
    gap: 12px;
  }
  
  .mobile-store-btn-enhanced {
    max-width: 160px;
    align-self: center;
  }
  
  .download-main-title {
    font-size: 24px;
  }
  
  .download-subtitle {
    font-size: 14px;
  }
  
  .feature-highlight-mobile {
    padding: 12px;
  }
  
  .hero-main-title-mobile {
    font-size: 24px;
  }
  
  .promo-highlight-mobile {
    font-size: 20px;
  }
  
  .hero-tagline-mobile {
    font-size: 14px;
  }
  
  .download-enhanced-title {
    font-size: 28px;
  }
  
  .gallery-main-title {
    font-size: 28px;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(164, 0, 103, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-to-top:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(164, 0, 103, 0.4);
}

.arrow-up {
  font-size: 20px;
  font-weight: bold;
}

/* Notifications */
.notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
}

.notification {
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: white;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideIn 0.3s ease;
}

.notification-success {
  background: #4CAF50;
}

.notification-error {
  background: #f44336;
}

.notification-info {
  background: var(--primary-color);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Loading Spinner */
.loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-lg);
  border: 2px solid transparent;
  border-radius: var(--border-radius-lg);
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  min-height: 44px; /* Touch target size */
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: white;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
}

.btn-large {
  padding: var(--spacing-md) var(--spacing-2xl);
  font-size: var(--font-size-lg);
  min-height: 56px;
}

.btn-small {
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: var(--font-size-sm);
  min-height: 36px;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-icon {
  font-size: 1.2em;
}

/* Mobile Footer */
.footer-mobile {
  display: none;
  flex-direction: column;
  gap: 30px;
}

.footer-brand-mobile {
  text-align: center;
}

.footer-links-mobile {
  text-align: center;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 20px;
  max-width: 300px;
  margin: 0 auto;
}

.footer-link-mobile {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-link-mobile:hover {
  color: white;
}

.footer-store-mobile {
  text-align: center;
}

.footer-store-buttons-mobile {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
}

.footer-store-btn-mobile {
  display: block;
  border: 2px solid white;
  border-radius: 8px;
  transition: transform 0.3s ease;
  width: 120px;
}

.footer-store-btn-mobile:hover {
  transform: scale(1.05);
}

.footer-store-btn-mobile img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.footer-store-text-mobile {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Newsletter */
.footer-newsletter {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
}

.newsletter-title {
  font-size: 18px;
  color: white;
  margin-bottom: 10px;
  text-align: center;
}

.newsletter-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  text-align: center;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-input {
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}

.newsletter-button {
  padding: 12px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-button:hover {
  background: var(--primary-dark);
}

/* Responsive Breakpoints for Header/Footer */
@media (max-width: 800px) {
  .navbar-desktop {
    display: none;
  }
  
  .navbar-mobile {
    display: flex;
  }
  
  .footer-desktop {
    display: none;
  }
  
  .footer-mobile {
    display: flex;
  }
  
  .footer-content {
    padding-top: 100px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
    text-align: center;
  }
  
  .footer-divider {
    display: none;
  }
}

/* Enhanced Responsive Breakpoints with Smooth Scaling */

/* Large Desktop */
@media (max-width: 1440px) {
  .navbar-desktop {
    padding: 0 35px;
    gap: 50px;
  }
  
  .brand-logo {
    width: 60px;
    height: 60px;
  }
  
  .brand-text {
    font-size: 36px;
  }
  
  .brand-tagline {
    font-size: 11px;
  }
  
  .nav-menu-container {
    padding: 0 30px;
    height: 52px;
  }
  
  .nav-menu a {
    padding: 11px 16px;
    font-size: 13px;
  }

  /* Adjust hero image size for large desktop screens */
  .hero-phones-image {
    height: 85vh;
  }

  .hero-intro-phones-tablet img {
    height: 75vh;
  }
}

/* Desktop/Tablet Transition */
@media (max-width: 1200px) {
  .navbar-desktop {
    padding: 0 30px;
    gap: 40px;
  }
  
  .brand-logo {
    width: 58px;
    height: 58px;
  }
  
  .brand-text {
    font-size: 34px;
  }
  
  .nav-menu-container {
    padding: 0 28px;
    height: 50px;
  }
  
  .nav-menu a {
    padding: 10px 15px;
    font-size: 13px;
  }

  /* Adjust hero image size for desktop/tablet transition */
  .hero-phones-image {
    height: 80vh;
  }

  .hero-intro-phones-tablet img {
    height: 70vh;
  }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
  .navbar-desktop {
    display: none;
  }
  
  .navbar-mobile {
    display: flex;
    padding: 18px 20px;
    height: 80px;
  }
  
  .brand-logo-mobile {
    width: 52px;
    height: 52px;
  }
  
  .brand-text-mobile {
    font-size: 30px;
  }
  
  .brand-tagline-mobile {
    font-size: 11px;
    margin-top: 1px;
  }
  
  .drawer-content {
    width: 300px;
  }
  
  .mobile-menu-toggle {
    padding: 11px;
  }
  
  /* Adjust hero section padding for tablet */
  .hero-intro-section {
    padding-top: 80px;
  }
  
  .hero-intro-content {
    height: calc(100% - 80px);
  }

  /* Adjust hero image size for tablet landscape */
  .hero-intro-phones-tablet img {
    height: 65vh;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .navbar-mobile {
    padding: 16px 18px;
    height: 75px;
  }
  
  .brand-logo-mobile {
    width: 48px;
    height: 48px;
  }
  
  .brand-text-mobile {
    font-size: 28px;
  }
  
  .brand-tagline-mobile {
    font-size: 11px;
    margin-top: 1px;
  }
  
  .drawer-content {
    width: 285px;
  }
  
  .drawer-header {
    padding: 22px 22px 18px;
  }
  
  .drawer-brand img {
    width: 45px;
    height: 45px;
  }
  
  .drawer-brand-text {
    font-size: 26px;
  }
  
  .drawer-link {
    padding: 13px 22px;
    font-size: 15px;
  }
  
  /* Adjust hero section padding for tablet portrait */
  .hero-intro-section {
    padding-top: 75px;
  }
  
  .hero-intro-content {
    height: calc(100% - 75px);
  }
}

/* Mobile Large */
@media (max-width: 640px) {
  .navbar-mobile {
    padding: 15px 16px;
    height: 70px;
  }
  
  .brand-logo-mobile {
    width: 45px;
    height: 45px;
  }
  
  .brand-text-mobile {
    font-size: 26px;
  }
  
  .brand-tagline-mobile {
    font-size: 10px;
  }
  
  .drawer-content {
    width: 280px;
  }
  
  /* Adjust hero section padding for mobile large */
  .hero-intro-section {
    padding-top: 70px;
  }
  
  .hero-intro-content {
    height: calc(100% - 70px);
  }

  /* Adjust hero image size for mobile large - keep reasonable */
  .hero-intro-phones-tablet img {
    height: 55vh;
  }
}

/* Mobile Standard */
@media (max-width: 480px) {
  .navbar-mobile {
    padding: 14px 15px;
    height: 68px;
  }
  
  .brand-logo-mobile {
    width: 42px;
    height: 42px;
  }
  
  .brand-text-mobile {
    font-size: 24px;
  }
  
  .brand-tagline-mobile {
    font-size: 10px;
    margin-top: 1px;
  }
  
  .mobile-menu-toggle {
    padding: 10px;
  }
  
  .hamburger-menu {
    width: 22px;
    height: 16px;
    gap: 3px;
  }
  
  .hamburger-line {
    height: 2.5px;
  }
  
  .drawer-content {
    width: 270px;
  }
  
  .drawer-header {
    padding: 20px 20px 16px;
  }
  
  .drawer-brand img {
    width: 42px;
    height: 42px;
  }
  
  .drawer-brand-text {
    font-size: 24px;
  }
  
  .drawer-brand-tagline {
    font-size: 10px;
  }
  
  .drawer-close {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  
  .drawer-link {
    padding: 13px 20px;
    font-size: 14px;
    gap: 14px;
  }
  
  .drawer-icon {
    width: 22px;
    height: 22px;
  }
  
  /* Adjust hero section padding for mobile */
  .hero-intro-section {
    padding-top: 68px;
  }
  
  .hero-intro-content {
    height: calc(100% - 68px);
  }
}

/* Mobile Small */
@media (max-width: 375px) {
  .navbar-mobile {
    padding: 12px 14px;
    height: 65px;
  }
  
  .brand-logo-mobile {
    width: 40px;
    height: 40px;
  }
  
  .brand-text-mobile {
    font-size: 22px;
  }
  
  .brand-tagline-mobile {
    font-size: 10px;
  }
  
  .mobile-menu-toggle {
    padding: 9px;
  }
  
  .hamburger-menu {
    width: 20px;
    height: 15px;
  }
  
  .drawer-content {
    width: 260px;
  }
  
  .drawer-header {
    padding: 18px 18px 14px;
  }
  
  .drawer-brand img {
    width: 40px;
    height: 40px;
  }
  
  .drawer-brand-text {
    font-size: 22px;
  }
  
  .drawer-link {
    padding: 12px 18px;
    font-size: 14px;
    gap: 13px;
  }
  
  .drawer-icon {
    width: 20px;
    height: 20px;
  }
  
  /* Adjust hero section padding for small mobile */
  .hero-intro-section {
    padding-top: 65px;
  }
  
  .hero-intro-content {
    height: calc(100% - 65px);
  }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
  .brand-logo,
  .brand-logo-mobile,
  .mobile-menu-toggle,
  .hamburger-line,
  .drawer-content,
  .drawer-link,
  .drawer-icon {
    transition: none;
  }
  
  .drawer-nav li {
    animation: none;
    opacity: 1;
  }
  
  @keyframes slideInFromLeft {
    from, to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

/* High DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .brand-logo,
  .brand-logo-mobile {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}
