/* Hero Switcher - New Luxury Hero Styles + Wenamytest Navbar */
/* All classes are prefixed with 'hero-new-' to avoid conflicts with existing styles */

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500&display=swap');

/* ========================================
   WENAMYTEST NAVBAR STYLES
   ======================================== */

/* Wrapper with blue-teal background */
.hero-new-wrapper {
  min-height: 100vh;
  background-color: #3d5a6b;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}

/* Navbar - Liquid Glass Effect */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  font-size: 0.95rem;
  padding: 0.75rem 4rem;
  position: fixed;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%) translateZ(0);
  width: calc(100% - 2rem);
  max-width: 1400px;
  border-radius: 1rem;
  
  /* Liquid Glass Styling */
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid transparent;
  box-shadow: 
    0 0 0 2px rgba(255, 255, 255, 0.6),
    0 16px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  
  /* Smooth transitions */
  transition: all 0.3s ease;
  visibility: visible !important;
}

/* Navbar on scroll - enhanced glass effect */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.8);
  box-shadow: 
    0 0 0 6px rgba(255, 255, 255, 0.3),
    0 20px 40px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%) translateZ(0);
}

/* ========================================
   GLASS BUTTON COMPONENT
   Reusable circular glassmorphism button
   ======================================== */

.glass-btn {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid transparent;
  box-shadow: 
    0 0 0 2px rgba(255, 255, 255, 0.6),
    0 16px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  cursor: pointer;
  outline: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.glass-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  pointer-events: none;
}

.glass-btn:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 
    0 0 0 2px rgba(255, 255, 255, 0.8),
    0 20px 40px rgba(0, 0, 0, 0.15);
}

.glass-btn:active {
  transform: scale(0.98);
}

/* Plus icon variant */
.glass-btn.plus::before,
.glass-btn.plus::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.glass-btn.plus::after {
  transform: rotate(90deg);
}

.glass-btn.plus:hover::before,
.glass-btn.plus:hover::after {
  transform: scale(1.1);
}

.glass-btn.plus:hover::after {
  transform: rotate(90deg) scale(1.1);
}

/* SVG Filter version */
.glass-btn.svg-filter {
  backdrop-filter: url(#frosted);
  -webkit-backdrop-filter: url(#frosted);
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar .nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  opacity: 0.85;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', sans-serif;
  position: relative;
  padding: 0.5rem 0;
}

/* Premium hover effect with glow */
.navbar .nav-link:hover {
  opacity: 1;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Animated underline on hover */
.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

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

.navbar .nav-link.active {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar .logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.navbar .btn {
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar .btn-primary {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 100%
  );
  color: #050505;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

/* Glass shine effect */
.navbar .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.navbar .btn-primary:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.navbar .btn-primary:hover::before {
  left: 100%;
}

/* ========================================
   USER AUTH DISPLAY & DROPDOWN
   ======================================== */

.navbar-user-display {
  display: none;
  align-items: center;
  position: relative;
}

.navbar-user-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem 0.375rem 0.375rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.navbar-light .navbar-user-trigger {
  background: #f3f4f6;
  border-color: #e5e7eb;
}

.navbar-user-trigger:hover {
  background: rgba(255, 255, 255, 0.2);
}

.navbar-light .navbar-user-trigger:hover {
  background: #e5e7eb;
}

.navbar-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.navbar-light .navbar-user-avatar {
  border-color: #e5e7eb;
}

/* Mobile initials styling - Wenamy branding colors */
.navbar-user-initials {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.navbar-light .navbar-user-initials {
  border-color: #e5e7eb;
}

/* Mobile trigger - compact style */
.navbar-user-trigger.mobile-trigger {
  padding: 0;
  background: transparent;
}

/* Mobile user display in navbar icons area */
.mobile-user-display {
  display: none;
  align-items: center;
  justify-content: center;
}

/* Auth elements hidden by default, shown with .show class */
#navbarSignInBtn,
#mobileSignInBtn,
#navbarUserDisplay,
#mobileUserDisplay {
  display: none !important;
}

#navbarSignInBtn.show,
#mobileSignInBtn.show,
#navbarUserDisplay.show,
#mobileUserDisplay.show {
  display: flex !important;
}

/* Hide desktop elements on mobile - override .show class */
@media (max-width: 1024px) {
  #navbarUserDisplay,
  #navbarUserDisplay.show,
  #navbarSignInBtn,
  #navbarSignInBtn.show {
    display: none !important;
  }
}

/* Hide mobile user display on desktop - override .show class */
@media (min-width: 1025px) {
  #mobileUserDisplay,
  #mobileUserDisplay.show,
  #mobileSignInBtn,
  #mobileSignInBtn.show {
    display: none !important;
  }
}



.mobile-user-display .navbar-user-initials {
  width: 28px;
  height: 28px;
  font-size: 0.7rem;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

/* Mobile sign in button in navbar */
.mobile-signin-btn {
  padding: 0.375rem 0.75rem !important;
  font-size: 0.75rem !important;
  margin-right: 0.25rem;
}

@media (max-width: 768px) {
  .mobile-user-display {
    margin-right: 0.5rem;
  }
}

/* Mobile dropdown positioning */
#mobileUserDropdown {
  position: fixed;
  top: 60px;
  right: 10px;
  left: auto;
  min-width: 160px;
  z-index: 1000;
}

.navbar-user-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.navbar-light .navbar-user-name {
  color: #1f2937;
}

.navbar-user-chevron {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.2s ease;
}

.navbar-light .navbar-user-chevron {
  color: #6b7280;
}

.navbar-user-dropdown.show + .navbar-user-trigger .navbar-user-chevron,
.navbar-user-trigger[aria-expanded="true"] .navbar-user-chevron {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.navbar-user-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 180px;
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e7eb;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1001;
}

.navbar-user-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.15s ease;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.dropdown-item:hover {
  background: #f3f4f6;
  color: #111827;
}

.dropdown-item svg {
  width: 18px;
  height: 18px;
  color: #6b7280;
  flex-shrink: 0;
}

.dropdown-item:hover svg {
  color: #374151;
}

.dropdown-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 0.5rem 0;
}

.logout-item {
  color: #dc2626;
}

.logout-item:hover {
  background: #fef2f2;
  color: #b91c1c;
}

.logout-item svg {
  color: #dc2626;
}

.logout-item:hover svg {
  color: #b91c1c;
}

/* Mobile User Display */
.mobile-nav-links .navbar-user-display {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0.5rem;
}

.mobile-nav-links .navbar-user-trigger {
  width: 100%;
  justify-content: flex-start;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-links .navbar-user-dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: none;
  background: transparent;
  padding: 0.5rem 0 0 2.5rem;
  display: none;
}

.mobile-nav-links .navbar-user-dropdown.show {
  display: block;
}

.mobile-nav-links .dropdown-item {
  color: rgba(255, 255, 255, 0.9);
  padding: 0.625rem 0;
}

.mobile-nav-links .dropdown-item:hover {
  background: transparent;
  color: #ffffff;
}

.mobile-nav-links .dropdown-divider {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-links .logout-item {
  color: #fca5a5;
}

.mobile-nav-links .logout-item:hover {
  background: transparent;
  color: #fecaca;
}

/* Basket Icon Styles */
.basket-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.basket-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ef4444;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
}

.basket-count:empty,
.basket-count[data-count="0"],
#basketCount:empty {
  display: none;
}

/* Basket count update animation */
.basket-count-update {
  animation: basketCountPulse 0.3s ease;
}

@keyframes basketCountPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* Mobile Nav Icons Container */
.mobile-nav-icons {
  display: none;
  align-items: center;
  gap: 1rem;
}

.mobile-basket-icon {
  position: relative;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Show mobile icons on smaller screens */
@media (max-width: 1024px) {
  .mobile-nav-icons {
    display: flex;
  }
}

/* Navbar Light Variant - For pages with light backgrounds */
.navbar-light {
  background: hsla(0, 0%, 100%, 0.02);
  border: 2px solid hsla(0, 0%, 100%, 0.12);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  box-shadow: 
    inset 0 0 4px 1px hsla(0, 0%, 100%, 0.2),
    0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar-light.scrolled {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 
    0 0 0 4px rgba(255, 255, 255, 0.4),
    0 20px 40px rgba(0, 0, 0, 0.15);
}

.navbar-light .nav-link {
  color: #050505;
  opacity: 0.8;
}

.navbar-light .nav-link:hover {
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.navbar-light .nav-link::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.3),
    transparent
  );
}

.navbar-light .logo {
  color: #050505;
}

.navbar-light .logo-icon rect {
  stroke: #050505;
}

.navbar-light .mobile-menu-toggle {
  color: #050505;
}

.basket-icon {
  color: inherit;
}

.mobile-basket-icon {
  color: #ffffff;
}

.navbar-light .mobile-basket-icon {
  color: #050505;
}

.navbar-light .btn-primary {
  background: linear-gradient(
    135deg,
    rgba(5, 5, 5, 0.95) 0%,
    rgba(30, 30, 30, 0.9) 100%
  );
  color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.navbar-light .btn-primary::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

.navbar-light .btn-primary:hover {
  background: linear-gradient(
    135deg,
    rgba(5, 5, 5, 1) 0%,
    rgba(40, 40, 40, 0.95) 100%
  );
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Mobile Menu Styles */
.mobile-menu-toggle, .mobile-menu-close {
  display: none;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav-overlay {
  display: none;
}

.mobile-nav-header {
  display: none;
}

.mobile-nav-links {
  display: none;
}

/* ========================================
   HERO SECTION STYLES
   ======================================== */

/* Main Hero Section */
.hero-new-section {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-top: 0;
  background: transparent;
}

/* Hero Container */
.hero-new-container {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem 4rem;
  min-height: calc(100vh - 140px);
}

/* Hero Content */
.hero-new-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 5;
  margin-top: 2rem;
}

/* Headline */
.hero-new-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: capitalize;
  color: #ffffff;
  margin: 0;
  animation: heroNewFadeUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

/* Floating Top Right */
.hero-new-floating-top {
  position: absolute;
  top: 1rem;
  left: 60%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: heroNewFadeIn 1.2s ease-out 0.3s forwards;
  opacity: 0;
  display: none;
}

.hero-new-circles {
  display: flex;
}

.hero-new-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: #ccc;
  margin-left: -15px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero-new-circle-1 { background-image: url('../images/properties/PROJECT 1/1st.webp'); }
.hero-new-circle-2 { background-image: url('../images/properties/PROJECT 1/2nd.webp'); }
.hero-new-circle-3 { background-image: url('../images/properties/PROJECT 1/3rd.webp'); }

.hero-new-circle:first-child {
  margin-left: 0;
}

.hero-new-floating-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
  font-weight: 500;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}

/* Floating Bottom Left */
.hero-new-floating-bottom {
  position: relative;
  margin-top: auto;
  margin-bottom: 2rem;
  z-index: 10;
  animation: heroNewFadeIn 1.2s ease-out 0.5s forwards;
  opacity: 0;
}

.hero-new-spark {
  margin-bottom: 2rem;
  width: 32px;
  height: 32px;
}

.hero-new-spark svg {
  width: 100%;
  height: 100%;
}

/* CTA Group */
.hero-new-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.hero-new-btn {
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-new-btn-dark {
  background-color: #ffffff;
  color: #050505;
  padding: 1rem 1.5rem;
  border-radius: 3rem;
}

.hero-new-btn-dark:hover {
  background-color: #f0f0f0;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.hero-new-btn-outline {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 1rem 1.5rem;
  border-radius: 3rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateZ(0);
  will-change: backdrop-filter;
}

.hero-new-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.hero-new-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.hero-new-btn:hover .hero-new-arrow {
  transform: translateX(4px);
}

/* Background Building */
.hero-new-bg-wrapper {
  position: absolute;
  bottom: -2px;
  right: -5%;
  width: 75%;
  height: 85vh;
  z-index: 1;
  pointer-events: none;
  transform-origin: bottom center;
}

.hero-new-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom left;
}

/* Animations */
@keyframes heroNewFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroNewFadeIn {
  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .navbar {
    padding: 1rem 2rem;
    position: fixed;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 1400px;
    border-radius: 1rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    /* Glassmorphism styles for tablet */
    background: hsla(0, 0%, 100%, 0.02);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 2px solid hsla(0, 0%, 100%, 0.08);
    box-shadow: 
      inset 0 0 4px 1px hsla(0, 0%, 100%, 0.15),
      0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }
  
  .navbar.scrolled {
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
      0 0 0 4px rgba(255, 255, 255, 0.4),
      0 20px 40px rgba(0, 0, 0, 0.15);
  }
  
  .hero-new-container {
    padding: 1.5rem 2rem;
  }
  
  .hero-new-headline {
    font-size: 5rem;
  }
  
  .hero-new-bg-wrapper {
    width: 90%;
  }
  
  .hero-new-floating-top {
    display: none;
  }
}

@media (max-width: 768px) {
  /* Navbar Mobile - Full width with rounded corners */
  .navbar {
    padding: 1rem 1.5rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0.5rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 1rem);
    max-width: none;
    border-radius: 1rem;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 
      0 0 0 2px rgba(255, 255, 255, 0.6),
      0 16px 32px rgba(0, 0, 0, 0.12);
  }
  
  .hero-new-wrapper {
    padding-top: 70px;
  }
  
  .nav-left {
    display: flex;
    align-items: center;
  }
  
  .nav-left .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .navbar .nav-link:not(.btn-primary):not(.mobile-basket-icon) {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu-close {
    display: block;
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    z-index: 2001;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
  }
  
  .mobile-nav-overlay {
    display: none;
  }
  
  .mobile-nav-overlay.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #3d5a6b 0%, #2c4352 100%);
    z-index: 2000;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
  }
  
  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1.5rem;
    padding-top: calc(1.25rem + 70px);
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
  }
  
  .mobile-nav-header .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
  }
  
  .mobile-menu-close {
    position: absolute;
    right: 1.5rem;
    top: calc(1.25rem + 70px);
  }
  
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
    gap: 0.75rem;
    padding: 1rem 2rem 2rem;
    width: 100%;
    overflow-y: auto;
  }
  
  .mobile-nav-overlay .nav-link {
    font-size: 1.5rem;
    display: block;
    color: #ffffff;
    opacity: 1;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.3s ease;
    text-align: center;
  }
  
  .mobile-nav-overlay .nav-link:hover {
    opacity: 0.8;
  }
  
  .mobile-nav-overlay .btn-primary {
    background-color: #ffffff;
    color: #050505;
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-weight: 500;
    font-size: 1rem;
  }
  
  /* Hide WhatsApp button when mobile menu is open */
  .mobile-nav-overlay.active ~ .whatsapp-float,
  .mobile-nav-overlay.active + .whatsapp-float {
    display: none !important;
  }
  
  /* Hero Mobile */
  .hero-new-section {
    padding-top: 0;
    min-height: auto;
  }
  
  .hero-new-container {
    padding: 0.5rem 1.5rem 1rem;
    min-height: auto;
    justify-content: flex-start;
    padding-top: 0;
  }
  
  .hero-new-content {
    margin-top: 0;
    padding-top: 0;
  }
  
  .hero-new-headline {
    font-size: 3.2rem;
    margin-top: 3rem;
    line-height: 1.1;
  }
  
  .hero-new-bg-wrapper {
    width: 100%;
    right: 0;
    opacity: 1;
    height: 86vh;
    top: 0;
    bottom: auto;
  }
  
  .hero-new-floating-bottom {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    padding: 0 1.0rem;
    z-index: 10;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }
  
  .hero-new-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  
  .hero-new-btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 480px) {
  .hero-new-headline {
    font-size: 2.5rem;
  }

  .hero-new-btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }
}

/* Mobile-only hero image adjustments */
@media (max-width: 768px) {
  .hero-new-bg-wrapper {
    bottom: -20px;   /* Move down - adjust this value as needed */
    right: -5%;      /* Move left - adjust this value as needed */
    width: 110%;     /* ← Mobile wrapper width */
    height: 90vh;    /* ← Mobile wrapper height */
  }
  
  .hero-new-bg-image {
    object-position: bottom left;
    transform: scale(1.0) translateY(20px);  /* Zoom image 10% and move down 20px */
  }
  
  /* Mobile hero text adjustments */
  .hero-new-headline {
    font-size: 3.0rem;        /* ← Mobile font size */
    line-height: 1.0;         /* ← Mobile line height */
    margin-top: 3rem;         /* ← Mobile top margin */
    text-align: center;         /* ← Mobile text alignment */
  }
}

/* Desktop-only hero text adjustments */
@media (min-width: 769px) {
  .hero-new-headline {
    font-size: 7rem;          /* ← Desktop font size */
    line-height: 1.05;        /* ← Desktop line height */
    margin-top: 0;            /* ← Desktop top margin */
    text-align: left;         /* ← Desktop text alignment */
  }
}

/* Desktop-only hero image adjustments */
@media (min-width: 769px) {
  .hero-new-bg-wrapper {
    bottom: 90px;   /* Move down - adjust this value as needed */
    right: -20%;      /* Move left - adjust this value as needed */
    width: 80%;      /* ← Desktop wrapper width (increase from 75%) */
    height: 150vh;    /* ← Desktop wrapper height (increase from 85vh) */
  }
  
  .hero-new-bg-image {
    object-position: bottom left;
    transform: scale(1.0) translateY(400px);  /* Zoom image 20% and move down 50px */
  }
}



