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

:root {
  --bg-color: #050a07;
  /* Super dark green/black */
  --surface-color: rgba(20, 36, 27, 0.7);
  --surface-border: rgba(198, 168, 124, 0.3);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --primary-gold: #c6a87c;
  --primary-gold-hover: #e3cca1;
  --accent-green: #1b4332;
  --text-main: #f0f4f1;
  --text-muted: #a7b6ad;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Glassmorphism utility */
.glass {
  background: var(--surface-color);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  padding: 16px 5%;
  background: rgba(5, 10, 7, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--surface-border);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-gold);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 45px;
  width: auto;
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 50%;
  transition: var(--transition);
  filter: drop-shadow(0 0 5px rgba(198, 168, 124, 0.2));
}

.logo:hover img {
  transform: scale(1.1);
}

.logo span {
  color: var(--text-main);
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links .btn-primary {
  display: none;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  color: var(--text-main);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-gold);
  transition: var(--transition);
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-gold);
}

.btn-primary {
  background: var(--primary-gold);
  color: var(--bg-color);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--primary-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(198, 168, 124, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary-gold);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--primary-gold);
  cursor: pointer;
  display: inline-block;
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(198, 168, 124, 0.1);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 60px;
  position: relative;
}

.hero-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.4) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(5, 10, 7, 0.9) 0%, rgba(5, 10, 7, 0.4) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 875px;
  animation: fadeUp 1s ease forwards;
}

.hero-subtitle {
  color: var(--primary-gold);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
  background: linear-gradient(to right, #fff, var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

/* Sections */
section {
  padding: 100px 5%;
}

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

.section-header .subtitle {
  color: var(--primary-gold);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-header h2 {
  font-size: 3rem;
  color: var(--text-main);
}

/* Features/About Snippet */
.about-snippet {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.about-card {
  padding: 40px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--surface-border);
}

.about-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-gold);
}

.about-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.about-img-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-img-container:hover img {
  transform: scale(1.05);
}

.about-text h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-gold);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.features-list {
  margin-top: 30px;
  margin-bottom: 40px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.1rem;
}

.features-list li i {
  color: var(--primary-gold);
  font-size: 1.2rem;
}

/* Treatments Grid */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.treatment-card {
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--surface-border);
}

.treatment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, rgba(198, 168, 124, 0.05) 0%, transparent 100%);
  transition: var(--transition);
  z-index: 0;
}

.treatment-card:hover::before {
  height: 100%;
}

.treatment-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.treatment-icon {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.treatment-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.treatment-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.treatment-link {
  color: var(--primary-gold);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.treatment-link i {
  transition: transform 0.3s;
}

.treatment-card:hover .treatment-link i {
  transform: translateX(5px);
}

/* Testimonials */
.testimonials {
  background: linear-gradient(to bottom, var(--bg-color), rgba(27, 67, 50, 0.2), var(--bg-color));
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary-gold);
  opacity: 0.5;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.05rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--surface-border);
  padding-top: 20px;
}

.testimonial-author div h4 {
  color: var(--primary-gold);
  font-size: 1.1rem;
}

.testimonial-author div caption {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Footer */
footer {
  background: #020504;
  padding: 80px 5% 30px;
  border-top: 1px solid var(--surface-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  display: block;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--surface-border);
  color: var(--text-main);
}

.social-links a:hover {
  background: var(--primary-gold);
  color: #000;
  border-color: var(--primary-gold);
}

.footer-links h4 {
  font-size: 1.2rem;
  color: var(--primary-gold);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-gold);
}

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

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  color: var(--text-muted);
}

.footer-contact i {
  color: var(--primary-gold);
  font-size: 1.2rem;
  margin-top: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--surface-border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Subpage Hero */
.page-hero {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-bottom: 60px;
  padding: 0 5%;
}

.page-hero h1 {
  font-size: 4rem;
  margin-bottom: 10px;
  z-index: 1;
  background: linear-gradient(to right, #fff, var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Form Styles */
.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--surface-border);
  border-radius: 8px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
  background: rgba(255, 255, 255, 0.08);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.form-glass {
  padding: 50px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.contact-card {
  text-align: center;
  padding: 40px 20px;
}

.contact-card i {
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 20px;
}

.contact-card a:hover,
.footer-contact a:hover {
  color: var(--primary-gold);
  text-decoration: underline;
}

.contact-card h3 {
  margin-bottom: 15px;
}

.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .page-hero h1 {
    font-size: 3.5rem;
  }

  .about-snippet {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-glass {
    padding: 40px;
  }

  .consult-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .header-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .header-btn {
    display: none;
  }

  .nav-links .btn-primary {
    display: inline-block;
    margin-top: 20px;
    text-align: center;
    width: 100%;
  }
  section {
    padding: 80px 5%;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-color);
    flex-direction: column;
    padding: 100px 40px;
    transition: 0.5s;
    border-left: 1px solid var(--surface-border);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .mobile-menu-btn {
    display: block;
    z-index: 1001;
  }

  .header-btn {
    display: none;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .page-hero h1 {
    font-size: 2.8rem;
  }

  .page-hero {
    min-height: 300px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .form-glass {
    padding: 30px 20px;
  }

  .logo {
    font-size: 1.5rem;
  }

  .logo img {
    height: 38px;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 5%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  .logo img {
    height: 32px;
    margin-right: 6px;
  }
}

@media (max-width: 400px) {
  .logo {
    font-size: 1.1rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }
}