/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

/* Global Variables */
:root {
  --primary-color: #94a489;
  --secondary-color: #e8ede5;
  --text-color: #333;
  --light-text: #666;
  --dark-bg: #2c3e40;
  --heading-font: 'Cormorant Garamond', serif;
  --body-font: 'Montserrat', sans-serif;
  --transition: all 0.3s ease;
  --border-radius: 4px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

body {
  font-family: var(--body-font);
  color: var(--text-color);
  line-height: 1.6;
  background-color: #fff;
  overflow-x: hidden;
  font-size: 16px;
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--text-color);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--light-text);
  line-height: 1.7;
}

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

a:hover {
  color: #7a8c70;
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  color: var(--light-text);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility Classes */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  background-color: var(--primary-color);
  color: white;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 20px;
  border: none;
  font-family: var(--body-font);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.btn:hover {
  background-color: #7a8c70;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-full {
  width: 100%;
}

/* Scroll Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  border: none;
}

.scroll-top.active,
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: white;
  z-index: 1001;
  padding: 50px 30px;
  transition: var(--transition);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-color);
  cursor: pointer;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.mobile-menu-links a {
  color: var(--text-color);
  font-size: 1.1rem;
  transition: var(--transition);
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Header */
.header {
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.header.scrolled {
  padding: 10px 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading-font);
  font-size: 5.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.logo-symbol {
  font-size: 5.8rem;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--text-color);
  font-weight: 400;
  position: relative;
  padding: 5px 0;
}

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

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

.client-portal {
  padding: 10px 20px;
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
}

.client-portal:hover {
  background-color: var(--primary-color);
  color: white;
}

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

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(rgba(43, 6, 103, 0.1), rgba(68, 4, 87, 0.1)), url('') center/cover no-repeat;
  margin-top: 0;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(39, 8, 73, 0.7);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: rgb(63, 7, 72);
  max-width: 800px;
  padding: 0 20px;
  text-align: center;
  margin: 0 auto;
}

.hero-content-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-word {
  opacity: 0;
  animation: fadeInWord 0.8s ease forwards;
}

.hero-word-1 {
  animation-delay: 0.2s;
}

.hero-word-2 {
  animation-delay: 0.6s;
}

.hero-word-3 {
  animation-delay: 1s;
}

@keyframes fadeInWord {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInWord 0.8s ease forwards;
  animation-delay: 1.4s;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-message {
  margin-bottom: 20px;
  text-align: center;
}

.hero-description {
  text-align: center;
  opacity: 0;
  animation: fadeInWord 0.8s ease forwards;
  animation-delay: 1.8s;
}

.hero-description p {
  color: var(--light-text);
  margin-bottom: 20px;
  text-align: center;
}

.hero-cta {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--border-radius);
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  font-size: 1rem;
}

.hero-cta:hover {
  background-color: #7a8c70;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Circles - decorative */
.hero-circles {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background-color: var(--secondary-color);
  opacity: 0.3;
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: 20%;
  right: 10%;
}

.circle-2 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: 25%;
}

.circle-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  right: 5%;
}

/* About Section */
.about {
  background-color: #ffffff !important;
}

.about.section {
  background-color: #ffffff !important;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about-content p {
  margin-bottom: 20px;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.value-tag {
  padding: 8px 15px;
  background-color: var(--secondary-color);
  border-radius: 30px;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.9rem;
}

.about-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.03);
}

/* Certification Section */
.certification-section {
  margin-top: 60px;
  padding-top: 40px;
}

.certification-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.certification-badge {
  width: 180px;
  height: auto;
  margin-bottom: 15px;
}

.certification-text {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  color: var(--primary-color);
  font-style: italic;
}

/* Services Section */
.services {
  background-color: #f9faf8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.service-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid #f0f0f0;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary-color);
}

.service-card-content {
  padding: 25px;
}

.service-card-content h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.service-price {
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--text-color);
  font-size: 0.95rem;
}

.service-features {
  margin-bottom: 25px;
  list-style: none;
  margin-left: 0;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.service-feature i {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-top: 5px;
}

/* Testimonials Section */
.testimonials {
  background-color: #f9faf8;
}

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

.testimonial-card {
  background-color: white;
  border-radius: 8px;
  padding: 35px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 1px solid #f0f0f0;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-color: #e0e0e0;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 5rem;
  color: var(--primary-color);
  font-family: Georgia, serif;
  opacity: 0.15;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  padding-top: 30px;
  color: var(--light-text);
  border: none;
  flex-grow: 1;
  font-size: 1rem;
  line-height: 1.8;
  background: none;
}

.testimonial-text::before {
  display: none;
}

.testimonial-author {
  padding-top: 20px;
  margin-top: auto;
  border-top: 1px solid #eee;
  background: none;
}

.testimonial-author div {
  background: none;
  padding: 0;
}

.testimonial-author strong {
  display: block;
  margin-bottom: 3px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1rem;
  background: none;
}

.testimonial-author cite {
  font-style: normal;
  color: var(--primary-color);
  font-size: 0.85rem;
  display: block;
  background: none;
}

/* Workshops Section */
.workshops {
  background-color: #ffffff;
}

.workshop-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.workshop-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid #f0f0f0;
}

.workshop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary-color);
}

.workshop-card-content {
  padding: 30px;
}

.workshop-date {
  display: inline-block;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
}

.workshop-card-content h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.workshop-card-content p {
  margin-bottom: 15px;
}

.workshop-card-content ul {
  margin-bottom: 20px;
}

/* FAQ Section */
.faq {
  background-color: #f9faf8;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background-color: white;
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.accordion-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.accordion-header:hover {
  background-color: #f9faf8;
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-color);
}

.accordion-header i {
  color: var(--primary-color);
  transition: var(--transition);
}

.accordion-item.active .accordion-header i {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-content-inner {
  padding: 0 20px 20px 20px;
}

/* Booking Section */
.booking {
  background-color: #ffffff;
}

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

.booking-info h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.booking-info ul {
  margin-bottom: 30px;
  list-style: none;
  margin-left: 0;
}

.booking-info li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.booking-info li i {
  color: var(--primary-color);
  margin-top: 5px;
}

.pricing-box {
  background-color: var(--secondary-color);
  padding: 25px;
  border-radius: var(--border-radius);
  margin-top: 20px;
}

.pricing-box h4 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.pricing-box p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-item:last-child {
  border-bottom: none;
}

/* Complimentary Note */
.complimentary-note {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(148, 164, 137, 0.2) 100%);
  border-radius: var(--border-radius);
  margin-top: 25px;
  border-left: 4px solid var(--primary-color);
}

.complimentary-note i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 2px;
}

.complimentary-note p {
  margin: 0;
  color: var(--text-color);
}

.booking-form {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid #f0f0f0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-color);
  font-size: 0.95rem;
}

.form-group .required {
  color: #c75050;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e1e1e1;
  border-radius: var(--border-radius);
  background-color: white;
  font-family: var(--body-font);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(148, 164, 137, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Contact Section */
.contact {
  background-color: #f9faf8;
}

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

.contact-container.contact-centered {
  grid-template-columns: 1fr;
  max-width: 500px;
  margin: 0 auto;
}

.contact-container.contact-centered .contact-info {
  text-align: center;
}

.contact-container.contact-centered .contact-method {
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.contact-container.contact-centered .social-links {
  justify-content: center;
}

.contact-info h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-method i {
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}

.contact-method p {
  margin-bottom: 5px;
}

.contact-method a {
  color: var(--light-text);
  word-break: break-word;
}

.contact-method a:hover {
  color: var(--primary-color);
}

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

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.contact-form {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid #f0f0f0;
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: white;
  padding: 60px 0 0;
}

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

.footer-about h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: white;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-logo-symbol {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-top: 10px;
  display: inline-block;
}

.footer-links h4 {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  margin-left: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .logo img {
    height: 70px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .section {
    padding: 60px 0;
  }
  
  .nav-links {
    display: none;
  }
  
  .client-portal {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .booking-container,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-circles {
    display: none;
  }
  
  .logo img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .logo img {
    height: 50px;
  }
}