:root {
  --primary-color: #C5A17C; /* From logo - tan color */
  --secondary-color: #FFFFFF;
  --text-color: #4A4A4A;
  --light-color: #fff;
  --background-color: #FAF9F7;
  --accent-color: #8B7355;
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Montserrat', sans-serif;
}

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

body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  padding-top: 110px; /* Add padding to account for fixed nav */
  background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
              url('path-to-hero-image.jpg') center/cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: var(--light-color);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.nav-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
}

.logo-image {
  height: 80px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
}

.hero h1 {
  font-family: var(--heading-font);
  color: var(--primary-color);
  font-size: 3.5em;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
  animation: fadeInUp 1s ease-out;
}

.hero p {
  font-family: var(--body-font);
  font-size: 1.2em;
  color: var(--text-color);
  max-width: 800px;
  margin: 0 auto 30px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.calendar-container {
  display: inline-block;
  transform: scale(1.2); /* Make scheduling buttons slightly larger */
}

.calendar-container button {
  font-weight: 600 !important;
  padding: 15px 35px !important;
  border-radius: 30px !important;
  transition: all 0.3s ease !important;
  background-color: var(--primary-color) !important;
  box-shadow: 0 4px 15px rgba(197, 161, 124, 0.3) !important;
  font-size: 1.1em !important;
  letter-spacing: 0.5px !important;
  border: 2px solid var(--primary-color) !important;
}

.calendar-container button:hover {
  transform: translateY(-2px) !important;
  background-color: var(--accent-color) !important;
  box-shadow: 0 6px 20px rgba(197, 161, 124, 0.4) !important;
  border-color: var(--accent-color) !important;
}

.nav .calendar-container button {
  animation: pulseButton 2s infinite;
}

@keyframes pulseButton {
  0% {
    box-shadow: 0 4px 15px rgba(197, 161, 124, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(197, 161, 124, 0.5);
  }
  100% {
    box-shadow: 0 4px 15px rgba(197, 161, 124, 0.3);
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.scheduling-options {
  text-align: center;
  margin-bottom: 40px;
}

.scheduling-options p {
  color: var(--text-color);
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.6;
  opacity: 0.9;
}

.scheduling-options .calendar-container {
  transform: scale(1.3);
  margin: 20px 0;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--light-color);
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9em;
}

.cta-button:hover {
  transform: translateY(-2px);
  background-color: var(--accent-color);
  box-shadow: 0 4px 15px rgba(197, 161, 124, 0.3);
}

/* Sections */
section {
  padding-top: 100px;
  margin-top: -20px;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  animation: fadeIn 1s ease-out;
}

.profile-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.about-image:hover .profile-image {
  transform: scale(1.02);
}

.about-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-text {
  font-size: 1.1em;
  line-height: 1.8;
  animation: slideInRight 1s ease-out;
}

.philosophy {
  font-style: italic;
  color: var(--primary-color);
  font-size: 1.2em;
  margin: 20px 0;
  padding: 20px;
  border-left: 4px solid var(--primary-color);
  background: rgba(197, 161, 124, 0.05);
}

.specializations {
  background: var(--light-color);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  animation: fadeInUp 1s ease-out 0.3s both;
}

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

.specializations ul {
  list-style: none;
}

.specializations li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.specializations li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-size: 1.2em;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--light-color);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(197, 161, 124, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.service-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(197, 161, 124, 0.2);
}

.service-card i {
  color: var(--primary-color);
  font-size: 2.5em;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.service-card:hover i {
  transform: scale(1.1);
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(197, 161, 124, 0.1);
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.testimonial.animate {
  opacity: 1;
  transform: translateY(0);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(197, 161, 124, 0.2);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-color);
  line-height: 1.8;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4em;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: var(--heading-font);
}

.testimonial-author {
  color: var(--primary-color);
  font-weight: 600;
  text-align: right;
}

/* Contact Section */
.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

.scheduling-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid rgba(197, 161, 124, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: var(--body-font);
}

.contact-form textarea {
  height: 150px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(197, 161, 124, 0.1);
  transform: translateY(-2px);
}

.contact-form input:invalid,
.contact-form textarea:invalid {
  border-color: #ff4444;
}

.contact-form input:valid,
.contact-form textarea:valid {
  border-color: #00C851;
}

.consent-checkbox {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.consent-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 5px;
}

.consent-checkbox label {
  font-size: 0.9em;
  line-height: 1.4;
  color: var(--text-color);
}

.consent-checkbox a {
  color: var(--primary-color);
  text-decoration: none;
}

.consent-checkbox a:hover {
  text-decoration: underline;
}

.form-divider {
  text-align: center;
  margin: 30px 0;
  position: relative;
  color: var(--accent-color);
}

.form-divider::before,
.form-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background-color: rgba(197, 161, 124, 0.3);
}

.form-divider::before {
  left: 0;
}

.form-divider::after {
  right: 0;
}

/* Form styles update */
.form-note {
  font-size: 0.8em;
  color: var(--accent-color);
  margin-bottom: 15px;
  text-align: left;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-color);
}

/* Add an asterisk after required fields */
.contact-form input:required::after {
  content: "*";
  color: var(--text-color);
}

.contact-form textarea:required::after {
  content: "*";
  color: var(--text-color);
}

/* Keyword highlighting styles */
.highlight-word {
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.highlight-word::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  opacity: 0.3;
}

/* Footer */
.footer {
  background-color: #2C2C2C;
  color: var(--light-color);
  padding: 60px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
}

.social-links a {
  color: var(--primary-color);
  font-size: 24px;
  margin-left: 20px;
  transition: all 0.3s ease;
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.1);
  color: var(--light-color);
}

.footer .social-links .fa-whatsapp {
  color: #25D366;
  font-size: 28px; /* Make WhatsApp icon slightly larger */
}

.footer .social-links .fa-whatsapp:hover {
  color: #128C7E;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    padding: 10px 20px;
  }
  
  .header {
    padding-top: 90px;
  }
  
  .calendar-container button {
    padding: 12px 25px !important;
    font-size: 1em !important;
  }
  
  .logo-image {
    height: 60px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .philosophy {
    font-size: 1.1em;
    padding: 15px;
  }
  
  .nav-buttons, .hero-buttons, .scheduling-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .calendar-container {
    transform: scale(1.1);
  }
  
  .hero .calendar-container {
    transform: scale(1.2);
  }
  
  .scheduling-options .calendar-container {
    transform: scale(1.1);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    margin-top: 20px;
  }
  
  .social-links a {
    margin: 0 10px;
  }
  
  .consent-checkbox {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .consent-checkbox input[type="checkbox"] {
    margin-top: 5px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial {
    margin-bottom: 20px;
  }
}