/* Modern Design Updates for Dhiya Acupuncture */

/* Enhanced Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #2acf79;
  --primary-dark: #22b569;
  --secondary-color: #364d59;
  --accent-color: #f8f9fa;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --white: #ffffff;
  --shadow-light: 0 2px 15px rgba(0,0,0,0.08);
  --shadow-medium: 0 5px 25px rgba(0,0,0,0.12);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  font-weight: 400;
  background: var(--white);
  padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

/* Enhanced Navigation */
.site-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  z-index: 1000;
}

.site-navbar .site-logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.site-navigation .site-menu > li > a,
.site-navbar .site-navigation .site-menu > li > a {
  font-weight: 500;
  color: var(--text-dark);
  padding: 10px 10px;
  border-radius: 8px;
  transition: var(--transition);
}

.site-navigation .site-menu > li > a:hover,
.site-navigation .site-menu > li.active > a {
  color: var(--primary-color);
  background: rgba(42, 207, 121, 0.1);
}

/* Modern Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(42, 207, 121, 0.9), rgba(54, 77, 89, 0.8)), url('images/hero_bg_2.jpg');
  background-size: cover;
  background-position: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero .intro h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero .intro .desc {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Enhanced Services Section */
.services {
  background: var(--white);
  padding: 0;
}

.services .service {
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
  margin: 10px;
}

.services .service:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.services .service .icon-wrap > span {
  font-size: 3rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.services .service:hover .icon-wrap > span {
  color: var(--white);
}

.services .service h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 1rem;
  transition: var(--transition);
}

.services .service:hover h3 {
  color: var(--white);
}

/* Modern Cards */
.service-2 {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.service-2:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  text-decoration: none;
}

.service-2 .icon-wrap {
  color: var(--primary-color);
  margin-right: 1.5rem;
}

.service-2 .contents h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.service-2 .contents p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Enhanced Testimonials */
.testimonial-2 {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light);
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.testimonial-2:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.testimonial-2 blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-2 .author-name span:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-2 .author-name span:last-child {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Modern Blog Cards */
.post-entry-1 {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.post-entry-1:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.post-entry-1 img {
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  transition: var(--transition);
}

.post-entry-1:hover img {
  transform: scale(1.05);
}

.post-entry-1-contents {
  padding: 1.5rem;
}

.post-entry-1-contents .meta {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-entry-1-contents h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0.75rem 0;
}

.post-entry-1-contents h2 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.post-entry-1-contents h2 a:hover {
  color: var(--primary-color);
}

/* Enhanced Buttons */
.btn {
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: none;
  letter-spacing: 0.5px;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 207, 121, 0.3);
}

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

.btn-white:hover {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

/* Modern Form Styles */
.form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(42, 207, 121, 0.15);
  background: var(--white);
}

/* Enhanced Footer */
.site-footer {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-top: 1px solid rgba(0,0,0,0.05);
}

.quick-contact-info {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.quick-contact-info:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.quick-contact-info .icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.quick-contact-info .icon-wrap span {
  color: var(--white);
  font-size: 1.5rem;
}

.quick-contact-info .caption {
  font-weight: 500;
  color: var(--text-dark);
}

/* Section Enhancements */
.site-section {
  padding: 4rem 0;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-heading strong {
  color: var(--primary-color);
}

/* Responsive Improvements */
@media (max-width: 768px) {
  .hero .intro h1 {
    font-size: 2.5rem;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .services .service {
    margin: 5px;
    padding: 1.5rem;
  }
}

/* Animation Enhancements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Contact Form Enhancements */
.error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: block;
}

.success {
  color: var(--primary-color);
  font-weight: 500;
  padding: 1rem;
  background: rgba(42, 207, 121, 0.1);
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Team Section */
.person-1 {
  text-align: center;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.person-1:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.person-1 .post-entry-1-contents .meta {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.person-1 .post-entry-1-contents h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1rem 0;
}