/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: var(--spacing-md) 0;
  z-index: 100;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  padding: var(--spacing-sm) 0;
  background: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.brand-logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.logo-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: var(--spacing-lg);
}

.nav-link {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

/* Buttons */
.btn-primary {
  position: relative;
  background: var(--text-primary);
  color: var(--bg-dark);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.95rem;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-primary.large {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.btn-primary .btn-text {
  position: relative;
  z-index: 2;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--bg-glass);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.whatsapp-btn {
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background: rgba(37, 211, 102, 0.1);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.2);
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  position: relative;
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.glass-card:hover .card-glow {
  opacity: 1;
}

/* Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-gold);
  animation: pulse 2s infinite;
}

/* Hero Section specifics */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px; /* Offset for navbar */
}

.hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.bg-image {
  width: 100%;
  height: 110%; /* Parallax overflow */
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--bg-dark) 20%, rgba(10,10,12,0.6) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin: var(--spacing-sm) 0;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: var(--spacing-lg);
}

.hero-cta {
  display: flex;
  gap: var(--spacing-sm);
}

/* Floating Elements */
.hero-visuals {
  position: relative;
  width: 50%;
  height: 600px;
}

.floating-molecule {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 350px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.floating-serum {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 250px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
}

.stat-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
}

.stat-1 { top: 20%; left: -10%; }
.stat-2 { bottom: 30%; right: 0; }
.stat-3 { bottom: 10%; left: 20%; }

.stat-icon {
  font-size: 1.5rem;
  color: var(--accent-gold);
}

/* Testimonials */
.testimonial-swiper {
  padding: 20px 0 60px;
}

.testimonial-card {
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  height: 100%;
}

.rating i {
  color: var(--accent-gold);
  font-size: 0.9rem;
}

.quote {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-primary);
  flex-grow: 1;
}

.patient-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: var(--spacing-sm);
}

.patient-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.patient-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.patient-info span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: var(--spacing-md);
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

/* Form Styles */
.luxury-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.input-group {
  position: relative;
  margin-top: 16px;
}

.input-group input, .input-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-glass);
  padding: 12px 0;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.input-group label {
  position: absolute;
  top: 12px;
  left: 0;
  color: var(--text-secondary);
  pointer-events: none;
  transition: all 0.3s ease;
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label {
  top: -12px;
  font-size: 0.75rem;
  color: var(--accent-gold);
}

.input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.4s ease;
}

.input-group input:focus ~ .input-line,
.input-group select:focus ~ .input-line {
  width: 100%;
}

.select-group select {
  appearance: none;
  cursor: pointer;
}

.select-icon {
  position: absolute;
  right: 0;
  top: 14px;
  color: var(--text-secondary);
  pointer-events: none;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  max-width: 800px;
  margin: 0 auto;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 8px 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--text-secondary);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 16px;
}

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

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--text-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
}

body:hover .custom-cursor, body:hover .custom-cursor-follower {
  opacity: 1;
}

a:hover ~ .custom-cursor-follower, button:hover ~ .custom-cursor-follower {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 101;
}

.mobile-menu-toggle .bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  position: absolute;
  transition: all 0.3s ease;
}

  .mobile-menu-toggle .bar:nth-child(1) { top: 0; }
.mobile-menu-toggle .bar:nth-child(2) { bottom: 0; }

/* New Footer Styles */
.new-footer {
  background-color: var(--bg-dark);
  color: var(--text-secondary);
  position: relative;
  font-family: var(--font-body);
  border-top: 1px solid var(--border-glass);
}

.footer-top-bar {
  height: 2px;
  background: var(--gradient-gold);
  width: 100%;
}

.footer-brand-new {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.logo-icon-n {
  width: 40px;
  height: 40px;
  background: var(--bg-glass);
  border: 1px solid var(--accent-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent-gold);
  font-weight: bold;
}

.logo-text-new {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.brand-desc-new {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
}

.social-links-new {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-links-new a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-links-new a:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

.footer-links-new h4, .footer-contact-new h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.footer-links-new a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links-new a:hover {
  color: var(--text-primary);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.contact-list i {
  color: var(--accent-gold);
  margin-top: 4px;
}

.footer-bottom-new {
  border-top: 1px solid var(--border-glass);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-visuals {
    width: 100%;
    margin-top: var(--spacing-lg);
  }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
  width: 100%;
  padding: 0 24px;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateY(0);
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.mobile-link:hover, .mobile-link.active {
  color: var(--accent-gold);
}

.mobile-menu-toggle {
  z-index: 1000;
  position: relative;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

/* Disable Custom Cursor on Touch Devices */
@media (hover: none) and (pointer: coarse) {
  .custom-cursor, .custom-cursor-follower {
    display: none !important;
  }
}
