/* Lula Medical Aesthetics - Earthy Elegance Theme */

/* Color Variables - Earthy Elegance */
:root {
  /* Primary Earthy Elegance Colors */
  --sage-green: #9CAF88;
  --warm-taupe: #B5A284;
  --ivory: #F5F3F0;
  --soft-charcoal: #5D5D5D;
  
  /* Extended Palette */
  --sage-light: #B8C9A8;
  --sage-dark: #7A946E;
  --taupe-light: #C9BCA1;
  --taupe-dark: #9A8668;
  --charcoal-light: #7A7A7A;
  --charcoal-dark: #3C3C3C;
  
  /* Accent Colors */
  --gold-accent: #D4B996;
  --white: #FFFFFF;
  --light-gray: #F8F6F4;
  --medium-gray: #E5E1DD;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows */
  --shadow-soft: 0 4px 6px rgba(93, 93, 93, 0.1);
  --shadow-medium: 0 8px 25px rgba(93, 93, 93, 0.15);
  --shadow-strong: 0 15px 35px rgba(93, 93, 93, 0.2);
  
  /* Borders */
  --border-radius: 8px;
  --border-radius-large: 16px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--soft-charcoal);
  background-color: var(--ivory);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--charcoal-dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 600;
}

h2 {
  font-size: 2.5rem;
  font-weight: 500;
}

h3 {
  font-size: 1.8rem;
  font-weight: 500;
}

h4 {
  font-size: 1.3rem;
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
  color: var(--charcoal-dark);
}

/* Layout Components */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow-soft);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--soft-charcoal);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--sage-green);
}

.nav-link.nav-cta {
  background: var(--sage-green);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.nav-link.nav-cta:hover {
  background: var(--sage-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--soft-charcoal);
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  font-size: 1rem;
}

.btn-primary {
  background: var(--sage-green);
  color: var(--white);
}

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

.btn-secondary {
  background: var(--warm-taupe);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--taupe-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background: var(--sage-green);
  color: var(--white);
  border: 2px solid var(--sage-green);
}

.btn-outline:hover {
  background: var(--sage-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--warm-taupe) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 60px 60px, 40px 40px;
  opacity: 0.7;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-text {
  color: var(--charcoal-dark);
}

.hero-logo {
  height: 300px;
  width: auto;
  filter: drop-shadow(var(--shadow-medium));
}

.hero-title {
  font-size: 3rem;
  color: var(--charcoal-dark);
  margin-bottom: 1.5rem;
  text-shadow: none;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--soft-charcoal);
  margin-bottom: 2rem;
  text-shadow: none;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--soft-charcoal);
  font-size: 1.1rem;
}

.feature-item i {
  color: var(--gold-accent);
  font-size: 1.3rem;
  width: 24px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Services Overview */
.services-overview {
  padding: 6rem 0;
  background: var(--white);
}

.services-overview h2 {
  text-align: center;
  color: var(--charcoal-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--soft-charcoal);
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--light-gray);
  padding: 3rem 2rem;
  border-radius: var(--border-radius-large);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--medium-gray);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
  background: var(--white);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--sage-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--warm-taupe);
  transform: scale(1.1);
}

.service-icon i {
  font-size: 2rem;
  color: var(--white);
}

.service-card h3 {
  color: var(--charcoal-dark);
  margin-bottom: 1rem;
}

.service-card p {
  margin-bottom: 2rem;
  color: var(--soft-charcoal);
}

.service-link {
  color: var(--sage-green);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: var(--sage-dark);
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: var(--light-gray);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 2rem;
  color: var(--charcoal-dark);
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.features-list {
  margin: 2rem 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature i {
  color: var(--sage-green);
  font-size: 1.2rem;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-medium);
}

.practitioner-info {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
  border-left: 4px solid var(--sage-green);
}

.practitioner-info h4 {
  color: var(--sage-green);
  margin-bottom: 0.5rem;
}

.credentials {
  color: var(--taupe-dark);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 1rem !important;
}

/* About Page Styles */
.about-detailed {
  padding: 4rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.about-content-detailed h2 {
  color: var(--sage-green);
  margin-bottom: 0.5rem;
}

.title {
  color: var(--taupe-dark);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 2rem !important;
}

.credentials-list {
  list-style: none;
  padding-left: 0;
  margin: 2rem 0;
}

.credentials-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  color: var(--soft-charcoal);
}

.credentials-list li::before {
  content: '✓';
  color: var(--sage-green);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.treatment-philosophy {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-top: 3rem;
}

.treatment-philosophy h4 {
  color: var(--sage-green);
  margin-bottom: 1.5rem;
}

.philosophy-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.point i {
  color: var(--sage-green);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.point strong {
  color: var(--charcoal-dark);
  display: block;
  margin-bottom: 0.5rem;
}

.point p {
  margin: 0;
  color: var(--soft-charcoal);
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card, .certifications {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: var(--border-radius-large);
}

.contact-card h3, .certifications h3 {
  color: var(--sage-green);
  margin-bottom: 1.5rem;
}

.contact-details {
  margin-bottom: 2rem;
}

.detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.detail i {
  color: var(--sage-green);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.detail strong {
  color: var(--charcoal-dark);
  display: block;
  margin-bottom: 0.25rem;
}

.detail p {
  margin: 0;
  color: var(--soft-charcoal);
}

.tech-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tech-item {
  padding: 1rem;
  background: var(--ivory);
  border-radius: var(--border-radius);
  border-left: 3px solid var(--sage-green);
}

.tech-item strong {
  color: var(--sage-green);
  display: block;
  margin-bottom: 0.25rem;
}

.tech-item p {
  margin: 0;
  color: var(--soft-charcoal);
  font-size: 0.9rem;
}

.family-portrait {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: var(--border-radius-large);
  text-align: center;
  margin-bottom: 2rem;
}

.family-portrait img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-medium);
}

.family-portrait p {
  color: var(--sage-green);
  font-weight: 500;
  font-style: italic;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: var(--light-gray);
  text-align: center;
  color: var(--charcoal-dark);
}

.cta-content h2 {
  color: var(--charcoal-dark);
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--soft-charcoal);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page Header */
.page-header {
  padding: 8rem 0 4rem;
  background: var(--light-gray);
  text-align: center;
  border-bottom: 1px solid var(--medium-gray);
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--soft-charcoal);
}

/* Services Detailed */
.services-detailed {
  padding: 4rem 0;
  background: var(--white);
}

.service-detail {
  margin-bottom: 4rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--medium-gray);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail h2 {
  color: var(--sage-green);
  margin-bottom: 2rem;
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: flex-start;
}

.service-image {
  position: relative;
}

.service-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-medium);
}

.service-info h4 {
  color: var(--taupe-dark);
  margin: 2rem 0 1rem;
}

.service-info ul {
  list-style: none;
  padding-left: 0;
}

.service-info li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-info li::before {
  content: '•';
  color: var(--sage-green);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Consultation CTA */
.consultation-cta {
  padding: 4rem 0;
  background: var(--light-gray);
  text-align: center;
  color: var(--charcoal-dark);
}

.consultation-cta h2 {
  color: var(--sage-green);
  margin-bottom: 1rem;
}

.consultation-cta p {
  color: var(--soft-charcoal);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Booking Section */
.booking-section {
  padding: 4rem 0;
  background: var(--white);
}

.booking-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.booking-form {
  background: var(--light-gray);
  padding: 3rem;
  border-radius: var(--border-radius-large);
}

.booking-form h3 {
  color: var(--charcoal-dark);
  margin-bottom: 2rem;
}

/* Forms */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--charcoal-dark);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--medium-gray);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage-green);
}

/* Contact Info */
.contact-info {
  background: var(--light-gray);
  padding: 3rem;
  border-radius: var(--border-radius-large);
  height: fit-content;
}

.contact-info h3 {
  color: var(--charcoal-dark);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item i {
  color: var(--sage-green);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.contact-item strong {
  color: var(--charcoal-dark);
  display: block;
  margin-bottom: 0.5rem;
}

.consultation-note {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--sage-green);
  margin-top: 2rem;
}

.consultation-note h4 {
  color: var(--sage-green);
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: var(--charcoal-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-section.contact-section {
  background: var(--sage-green);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.footer-section.contact-section h4 {
  color: var(--charcoal-dark);
}

.footer-section.contact-section .contact-info i {
  color: var(--charcoal-dark);
}

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--sage-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--warm-taupe);
  transform: translateY(-2px);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--medium-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--sage-green);
}

.footer-section.contact-section .contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal-dark);
}

.contact-info i {
  color: var(--sage-green);
}

.footer-bottom {
  border-top: 1px solid var(--soft-charcoal);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--medium-gray);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--medium-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--sage-green);
}

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

/* Interactive Elements */
.field-error {
  border-color: #e74c3c !important;
  background-color: #fdf2f2;
}

.field-error-message {
  color: #e74c3c;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.message-popup {
  position: fixed;
  top: 100px;
  right: 2rem;
  z-index: 1001;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
  max-width: 400px;
}

.message-popup.message-show {
  opacity: 1;
  transform: translateX(0);
}

.message-content {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-strong);
  border-left: 4px solid var(--sage-green);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.message-popup.message-error .message-content {
  border-left-color: #e74c3c;
}

.message-popup.message-success .message-content {
  border-left-color: var(--sage-green);
}

.message-content i {
  color: var(--sage-green);
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.message-popup.message-error .message-content i {
  color: #e74c3c;
}

.message-content p {
  margin: 0;
  flex: 1;
}

.message-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--soft-charcoal);
  cursor: pointer;
  padding: 0;
  margin-left: 1rem;
}

.navbar-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

/* Animation on Scroll */
.aos-element {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.aos-element.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Navigation */
.nav-menu-open {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-medium);
  flex-direction: column;
  padding: 2rem;
  gap: 1rem;
}

.nav-toggle-open i::before {
  content: '\f00d'; /* FontAwesome times icon */
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .message-popup {
    left: 1rem;
    right: 1rem;
    max-width: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 2rem 1rem;
  }

  .hero-logo {
    height: 250px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-features {
    align-items: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .booking-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .service-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-image img {
    height: 250px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .philosophy-points {
    gap: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .booking-form,
  .contact-info {
    padding: 2rem;
  }

  .service-card {
    padding: 2rem 1rem;
  }
}