:root {
  --cosmic-black: #0a0a0a;
  --rose-quartz: #f7cac9;
  --bio-gold: #d4af37;
  --cyber-pink: #ff2a6d;
  --frosted-white: rgba(255, 255, 255, 0.12);
  --glass-blur: blur(12px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", system-ui, sans-serif;
}

body {
  background-color: var(--cosmic-black);
  color: white;
  overflow-x: hidden;
}

/* Glassmorphism Panel */
.glass-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.3s ease;
}

/* Header/Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--cyber-pink), var(--bio-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--rose-quartz);
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyber-pink);
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

.cta-button {
  background: linear-gradient(45deg, var(--cyber-pink), var(--bio-gold));
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 42, 109, 0.3);
}

.cta-button::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: 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 10%;
  position: relative;
  overflow: hidden;
}

.hero-content {
  width: 50%;
  z-index: 10;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, white, var(--rose-quartz));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.secondary-button {
  background: transparent;
  color: white;
  border: 1px solid var(--rose-quartz);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.secondary-button:hover {
  background: rgba(247, 202, 201, 0.1);
  border-color: var(--cyber-pink);
}

.dna-animation {
  position: absolute;
  right: 10%;
  width: 30%;
  height: 80%;
  background: url("/hero.png") center/contain
    no-repeat;
  opacity: 0.7;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Virtual Consultation Section */
.consultation {
  padding: 5rem 10%;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--cyber-pink), var(--bio-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}

.consultation-container {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.consultation-feature {
  flex: 1;
  padding: 2rem;
  text-align: left;
  transition: transform 0.3s;
}

.consultation-feature:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--cyber-pink);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Treatments Section */
.treatments {
  padding: 5rem 10%;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.treatment-card {
  position: relative;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.treatment-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.treatment-card:hover .treatment-image {
  transform: scale(1.1);
}

.treatment-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
  padding: 2rem;
  transform: translateY(100px);
  transition: transform 0.3s;
}

.treatment-card:hover .treatment-overlay {
  transform: translateY(0);
}

.treatment-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.treatment-price {
  color: var(--bio-gold);
  font-weight: 600;
}

/* Pricing Section */
.pricing {
  padding: 5rem 10%;
  text-align: center;
}

.pricing-tiers {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  justify-content: center;
}

.pricing-tier {
  flex: 1;
  max-width: 350px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s;
}

.pricing-tier:hover {
  border-color: var(--cyber-pink);
  transform: translateY(-10px);
}

.tier-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.tier-price {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--bio-gold);
}

.tier-price span {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.tier-features {
  list-style: none;
  margin-bottom: 2rem;
}

.tier-features li {
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.7);
}

.tier-features li::before {
  content: "✓";
  color: var(--cyber-pink);
  margin-right: 0.5rem;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 10%;
  text-align: center;
}

.testimonial-slider {
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 2rem;
}

.testimonial-content {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.1rem;
}

.author-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dot.active {
  background: var(--cyber-pink);
}

/* Booking Section */
.booking {
  padding: 5rem 10%;
  text-align: center;
}

.booking-form {
  max-width: 600px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  text-align: left;
}

.form-group.full-width {
  grid-column: span 2;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.8rem;
  background: rgba(30, 30, 35, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s;
}
/* Focus states */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--cyber-pink);
  box-shadow: 0 0 0 2px rgba(255, 42, 109, 0.3);
  background: rgba(40, 40, 45, 0.9);
}
/* Special styling for select dropdowns */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

/* Style options dropdown */
select option {
  background: rgba(30, 30, 35, 0.95);
  color: white;
  padding: 0.5rem;
}

/* For Chrome autofill */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: white;
  -webkit-box-shadow: 0 0 0px 1000px rgba(30, 30, 35, 0.8) inset;
  transition: background-color 5000s ease-in-out 0s;
}

textarea {
  height: 120px;
  resize: vertical;
}

.submit-button {
  grid-column: span 2;
  padding: 1rem;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.5);
  padding: 3rem 10%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--cyber-pink), var(--bio-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--cyber-pink);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--cyber-pink);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom {
  grid-column: span 4;
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    width: 60%;
  }

  .dna-animation {
    width: 40%;
  }

  .consultation-container {
    flex-direction: column;
  }

  .pricing-tiers {
    flex-direction: column;
    align-items: center;
  }

  .pricing-tier {
    max-width: 100%;
    width: 100%;
  }

  footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 0 5%;
  }

  .hero-content {
    width: 100%;
    text-align: center;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .dna-animation {
    display: none;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .submit-button {
    grid-column: span 1;
  }

  nav ul {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    grid-column: span 1;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  z-index: 10;
}

/* Chatbot Styles */
.chatbot-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--cyber-pink), var(--bio-gold));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 42, 109, 0.3);
  z-index: 1000;
  transition: transform 0.3s;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
}

.chatbot-container.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.chatbot-header {
  background: linear-gradient(45deg, var(--cyber-pink), var(--bio-gold));
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.message {
  margin-bottom: 1rem;
  max-width: 80%;
  padding: 0.8rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.bot-message {
  background: rgba(255, 255, 255, 0.1);
  border-top-left-radius: 0;
  align-self: flex-start;
}

.user-message {
  background: rgba(255, 42, 109, 0.2);
  border-top-right-radius: 0;
  margin-left: auto;
}

.chatbot-container {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 350px;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 1000;
  background: rgba(15, 15, 20, 0.95); /* More opaque dark background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.chatbot-messages {
  height: calc(100% - 120px);
  background: rgba(
    20,
    20,
    25,
    0.9
  ); /* Slightly different shade for contrast */
  padding: 1rem;
  overflow-y: auto;
}

.chatbot-input {
  height: 60px;
  background: rgba(25, 25, 30, 0.95); /* Darker input area */
  display: flex;
  align-items: center;
  padding: 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  padding: 0.8rem;
}

.send-button {
  background: transparent;
  border: none;
  color: var(--cyber-pink);
  font-size: 1.2rem;
  cursor: pointer;
}

highlight-section {
  position: relative;
}

.highlight-section::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid var(--cyber-pink);
  border-radius: 16px;
  animation: pulse 2s ease-out;
  pointer-events: none;
}

@keyframes pulse {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.02);
  }
}
