/* 
 * Yvonne's Home Care Service - Main Stylesheet
 * Modern design with glassmorphism effects and cosmic elements
 */

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

/* Variables */
:root {
  --primary-color: #6b8e23;
  --primary-light: #d3e4cd;
  --primary-dark: #557a1d;
  --accent-color: #4a90e2;
  --text-color: #333;
  --light-text: #f9f9f9;
  --bg-color: #f9f9f9;
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
  --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(ellipse at bottom, #f0f4ff 0%, #e8f0ff 100%);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

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

img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

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

/* Utility Classes */
.text-gradient {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 25px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-color));
  transition: var(--transition);
  z-index: -1;
  border-radius: 30px;
}

.btn:hover::before {
  width: 100%;
}

.btn:hover {
  box-shadow: 0 7px 20px rgba(107, 142, 35, 0.5);
  transform: translateY(-2px);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(107, 142, 35, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(107, 142, 35, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(107, 142, 35, 0);
  }
}

/* Header Styles */
header {
  background: white;
  color: var(--text-color);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.logo-text h1 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

.logo-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.header-contact {
  display: flex;
  align-items: center;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 30px;
  font-weight: 500;
  transition: var(--transition);
}

.header-phone:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Navigation */
nav {
  position: sticky;
  top: 0;
  background: var(--primary-color);
  text-align: center;
  padding: 12px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

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

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

nav a {
  color: white;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

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

nav a:hover {
  color: rgba(255, 255, 255, 0.9);
}

nav a:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

/* Hero Section */
.hero {
  min-height: 80vh;
  background: url('https://images.pexels.com/photos/3768131/pexels-photo-3768131.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  color: white;
  padding: 60px 20px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(107, 142, 35, 0.9) 0%, rgba(107, 142, 35, 0.7) 50%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  width: 50%;
  padding-left: 5%;
}

.hero h2 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
}

.hero h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: white;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 500px;
}

.hero-image {
  position: relative;
  z-index: 2;
  width: 40%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-right: 5%;
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  
  .hero-content {
    width: 100%;
    max-width: 600px;
    padding-left: 0;
    margin: 0 auto 40px;
    order: 2;
  }
  
  .hero h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .hero-image {
    width: 80%;
    max-width: 400px;
    margin: 0 auto 30px;
    order: 1;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-image {
    width: 90%;
  }
}

/* Section Styles */
.section {
  padding: 80px 0;
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: var(--primary-color);
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
}

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

.about-card {
  text-align: center;
}

.about-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 5px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-card h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.about-card p {
  color: #666;
}

/* Founder Profile Section */
.founder-profile {
  margin: 40px 0;
}

.founder-card {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
}

.founder-image {
  flex-shrink: 0;
}

.founder-image img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.founder-info {
  flex: 1;
}

.founder-info h3 {
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.founder-info h4 {
  font-size: 1.8rem;
  margin-bottom: 6px;
  color: var(--text-color);
  font-weight: 600;
}

.founder-title {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.founder-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(107, 142, 35, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(107, 142, 35, 0.2);
}

.credential i {
  color: var(--primary-color);
  font-size: 1rem;
}

.credential span {
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.85rem;
}

/* Mission and Values Grid */
.mission-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.mission-card, .values-card {
  padding: 30px;
  text-align: left;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(107, 142, 35, 0.3);
}

.mission-card h3, .values-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.mission-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Mission Section Styling */
.mission-intro {
  margin-bottom: 20px;
  font-weight: 500;
}

.mission-highlights {
  margin-bottom: 20px;
}

.mission-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  border-left: 3px solid var(--primary-color);
}

.mission-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.mission-item strong {
  display: block;
  color: var(--text-color);
  font-size: 1rem;
  margin-bottom: 4px;
}

.mission-item p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.mission-footer {
  color: #666;
  font-style: italic;
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid rgba(107, 142, 35, 0.2);
  margin-top: 8px;
  font-size: 0.9rem;
}

/* Values List Styling */
.values-list {
  margin-bottom: 20px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  border-left: 3px solid var(--primary-color);
}

.value-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.value-item strong {
  display: block;
  color: var(--text-color);
  font-size: 1rem;
  margin-bottom: 4px;
}

.value-item p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.values-footer {
  color: #666;
  font-style: italic;
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid rgba(107, 142, 35, 0.2);
  margin-top: 8px;
  font-size: 0.9rem;
}

/* Responsive Design for About Section */
@media (max-width: 992px) {
  .founder-card {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  
  .founder-image img {
    width: 160px;
    height: 160px;
  }
  
  .mission-values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .founder-credentials {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .founder-card {
    padding: 25px 20px;
  }
  
  .founder-image img {
    width: 140px;
    height: 140px;
  }
  
  .founder-info h4 {
    font-size: 1.6rem;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .mission-card, .values-card {
    padding: 25px 20px;
  }
  
  .founder-credentials {
    flex-direction: column;
    align-items: center;
  }
  
  .credential {
    width: 100%;
    justify-content: center;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .founder-image img {
    width: 120px;
    height: 120px;
  }
  
  .founder-info h4 {
    font-size: 1.4rem;
  }
  
  .mission-values-grid {
    gap: 20px;
  }
  
  .value-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .value-item i {
    margin-top: 0;
  }
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #f9f9f9, #f0f0f0);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/pattern.svg');
  opacity: 0.05;
  pointer-events: none;
}

.testimonial-slider {
  margin-top: 30px;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 30px;
  padding: 20px 0;
  /* stylelint-disable-next-line property-no-unknown */
  scrollbar-width: none; /* Firefox */
}

.testimonial-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.testimonial-card {
  scroll-snap-align: start;
  min-width: 300px;
  flex: 1 0 300px;
  max-width: 400px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: var(--primary-color);
  opacity: 0.2;
  font-family: serif;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.author-info h4 {
  margin: 0;
  font-size: 1.1rem;
}

.author-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.slider-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.slider-nav button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: var(--transition);
}

.slider-nav button.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

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

.service-card {
  text-align: left;
  padding: 30px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 1.8rem;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.service-card p {
  color: #666;
  margin-bottom: 15px;
  flex: 1;
}

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

.care-item {
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.care-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  transition: var(--transition);
  display: block;
  flex-shrink: 0;
}

.care-item:hover img {
  transform: scale(1.05);
}

.care-caption {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.care-caption h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.care-caption p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Contact Section */
.contact {
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  min-width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.contact-text h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-text p, .contact-text a {
  color: #666;
}

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

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.1);
}

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

.form-status {
  margin: 15px 0;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}

.form-status .success-message {
  color: #2ecc71;
  display: none;
}

.form-status .error-message {
  color: #e74c3c;
  display: none;
}

.form-status.success .success-message {
  display: block;
}

.form-status.error .error-message {
  display: block;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 60px 0;
  text-align: center;
}

.newsletter h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.newsletter p {
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form button {
  background: white;
  color: var(--primary-color);
  border: none;
  border-radius: 30px;
  padding: 12px 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* Footer */
footer {
  background: #333;
  color: white;
  padding: 60px 0 30px;
}

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

.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.footer-col p {
  margin-bottom: 15px;
  opacity: 0.8;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #ddd;
  transition: var(--transition);
}

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

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.modal-content {
  background: white;
  padding: 0;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-50px);
  transition: all 0.3s ease;
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--primary-color);
  color: white;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.modal-title {
  margin: 0;
  font-size: 1.5rem;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

.modal-body {
  padding: 20px;
}

.modal-footer {
  padding: 15px 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

/* Detail Modal Styles for About, Services and Care Gallery */
.detail-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.detail-modal.active {
  opacity: 1;
  visibility: visible;
}

.detail-modal-content {
  background: white;
  padding: 0;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.detail-modal.active .detail-modal-content {
  transform: scale(1);
}

.detail-modal-header {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--primary-color);
  color: white;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.detail-modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.detail-modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
  transition: all 0.2s ease;
}

.detail-modal-close:hover {
  transform: scale(1.1);
}

.detail-modal-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-modal-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.detail-modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.detail-modal-text {
  color: #333;
}

.detail-modal-text p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.detail-modal-text p:last-child {
  margin-bottom: 0;
}

/* Add cursor pointer to cards */
.about-card, .service-card, .care-item {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.about-card:hover, .service-card:hover, .care-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Mobile styles for detail modal */
@media (max-width: 768px) {
  .detail-modal-content {
    width: 95%;
    max-height: 80vh;
  }
  
  .detail-modal-body {
    padding: 20px 15px;
  }
  
  .detail-modal-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.modal-content {
  width: 90%;
  max-width: 500px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transform: scale(0.8);
  transition: var(--transition);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 20px;
  position: relative;
}

.modal-header h3 {
  margin: 0;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-body {
  padding: 30px;
}

.modal-footer {
  padding: 15px 30px;
  text-align: right;
  border-top: 1px solid #eee;
}

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

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

.fade-in {
  animation: fadeIn 1s ease forwards;
}

.slide-up {
  animation: slideUp 0.8s ease forwards;
}

/* Chatbot Message Styles */
.message {
  display: flex;
  margin-bottom: 15px;
  max-width: 80%;
}

.message-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  position: relative;
}

.message-avatar::before {
  content: 'YC';
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.message-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: none;
  position: absolute;
  top: 0;
  left: 0;
}

.message-content {
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.4;
}

.bot-message {
  align-self: flex-start;
}

.bot-message .message-content {
  background: #f0f4ff;
  border-top-left-radius: 4px;
  color: #333;
}

.user-message {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.user-message .message-avatar {
  margin-right: 0;
  margin-left: 10px;
}

.user-message .message-content {
  background: var(--primary-color);
  color: white;
  border-top-right-radius: 4px;
}

/* Chatbot Styles */
.chatbot-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  font-family: 'Inter', sans-serif;
}

.chatbot-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.chatbot-toggle:hover {
  transform: scale(1.05);
  background-color: var(--primary-dark);
}

.chatbot-toggle i {
  color: white;
  font-size: 24px;
}

.chatbot-box {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 450px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.chatbot-container.active .chatbot-box {
  transform: scale(1);
}

.chatbot-header {
  padding: 15px 20px;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chatbot-close:hover {
  transform: scale(1.1);
}

.chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.message {
  display: flex;
  gap: 10px;
  max-width: 80%;
}

.bot-message {
  align-self: flex-start;
}

.user-message {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.message-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.message-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-message .message-avatar {
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
}

.message-content {
  background-color: #f5f5f5;
  padding: 12px 15px;
  border-radius: 15px;
  font-size: 14px;
}

.bot-message .message-content {
  border-top-left-radius: 0;
  background-color: #f0f7eb;
}

.user-message .message-content {
  border-top-right-radius: 0;
  background-color: #e6f2ff;
  text-align: right;
}

.message-content p {
  margin: 0;
  line-height: 1.4;
}

.suggested-questions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.suggested-question {
  background-color: white;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 15px;
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.suggested-question:hover {
  background-color: var(--primary-color);
  color: white;
}

.chatbot-input {
  padding: 15px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
}

.chatbot-input input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 25px;
  outline: none;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.chatbot-input input:focus {
  border-color: var(--primary-color);
}

.chatbot-send {
  background-color: var(--primary-color);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chatbot-send:hover {
  background-color: var(--primary-dark);
  transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 0;
  }
  
  .hero-content {
    order: 2;
    padding: 30px 20px;
  }
  
  .hero-image {
    order: 1;
    max-width: 100%;
    margin-bottom: 20px;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .services-grid, .testimonial-grid, .contact-grid, .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .care-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Chatbot responsive adjustments */
  .chatbot-box {
    width: 320px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  .header-content {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    flex-direction: column;
    padding: 20px 0;
    gap: 15px;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .services-grid, .testimonial-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .care-gallery {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 15px;
  }
  
  .newsletter-form input, .newsletter-form button {
    width: 100%;
  }
  
  /* Chatbot responsive adjustments */
  .chatbot-container {
    bottom: 20px;
    right: 20px;
  }
  
  .chatbot-box {
    width: 300px;
    height: 380px;
    bottom: 70px;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .section-header p {
    font-size: 0.9rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  /* Chatbot responsive adjustments */
  .chatbot-toggle {
    width: 50px;
    height: 50px;
  }
  
  .chatbot-toggle i {
    font-size: 20px;
  }
  
  .chatbot-box {
    width: calc(100vw - 40px);
    right: -20px;
    height: 350px;
  }
  
  .message {
    max-width: 90%;
  }
}

/* ============================================
   V2 UPGRADE — Premium Redesign Components
   ============================================ */

/* Button Variants */
.btn-lg {
  padding: 15px 34px;
  font-size: 1.05rem;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: none;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline::before {
  background: rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  box-shadow: 0 7px 20px rgba(255, 255, 255, 0.15);
}

.btn-white {
  background: white;
  color: var(--primary-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-white::before {
  background: var(--primary-light);
}

.btn-white:hover {
  color: var(--primary-dark);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: none;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-white::before {
  background: rgba(255, 255, 255, 0.15);
}

/* Nav CTA */
.nav-cta {
  background: white;
  color: var(--primary-color) !important;
  padding: 6px 18px !important;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

/* Hero Upgrades */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-highlight {
  background: linear-gradient(90deg, #fff, #d3e4cd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 0;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  opacity: 0.95;
}

.hero-trust i {
  color: #d3e4cd;
}

@media (max-width: 992px) {
  .hero-cta-group,
  .hero-trust {
    justify-content: center;
  }
}

/* Stats Bar */
.stats-bar {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  padding: 45px 0;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item .stat-number,
.stat-item .stat-suffix {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.1;
}

.stat-item p {
  margin-top: 6px;
  font-size: 0.95rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-item .stat-number,
  .stat-item .stat-suffix {
    font-size: 2rem;
  }
}

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.step-card {
  text-align: center;
  padding: 40px 30px;
  position: relative;
}

.step-number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(107, 142, 35, 0.12);
  line-height: 1;
}

.step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.7rem;
  box-shadow: 0 6px 18px rgba(107, 142, 35, 0.35);
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.step-card p {
  color: #666;
  font-size: 0.95rem;
}

/* Care Plans */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.plan-card {
  display: flex;
  flex-direction: column;
  padding: 35px 30px;
  position: relative;
  text-align: center;
}

.plan-featured {
  border: 2px solid var(--primary-color);
  background: rgba(255, 255, 255, 0.45);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 5px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(107, 142, 35, 0.35);
}

.plan-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: rgba(107, 142, 35, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.6rem;
}

.plan-card h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.plan-tagline {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  text-align: left;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: #555;
  font-size: 0.92rem;
  border-bottom: 1px dashed rgba(107, 142, 35, 0.15);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features i {
  color: var(--primary-color);
  margin-top: 4px;
  flex-shrink: 0;
}

.plan-btn {
  margin-top: auto;
}

/* Testimonial Ratings */
.testimonial-rating {
  color: #f5b301;
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  gap: 3px;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item:hover {
  transform: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-color);
  text-align: left;
  transition: var(--transition);
}

.faq-question i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 25px 22px;
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* CTA Band */
.cta-band {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 70px 0;
  text-align: center;
}

.cta-band h3 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.cta-band p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.cta-band-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

@media (max-width: 768px) {
  .cta-band h3 {
    font-size: 1.6rem;
  }
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  padding: 35px 30px;
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 25px 20px;
  }
}

/* Footer Contact Column */
.footer-contact li a,
.footer-contact li span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ddd;
  word-break: break-word;
}

.footer-contact i {
  color: var(--primary-color);
  width: 16px;
  flex-shrink: 0;
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  z-index: 999;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
}

/* Sticky Mobile Call Bar */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
}

.sticky-call-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 10px;
  font-weight: 600;
  font-size: 0.95rem;
}

.sticky-call-btn {
  background: var(--primary-dark);
  color: white;
}

.sticky-book-btn {
  background: white;
  color: var(--primary-dark);
}

@media (max-width: 768px) {
  .sticky-call-bar {
    display: flex;
  }
  
  body {
    padding-bottom: 55px;
  }
  
  .chatbot-container {
    bottom: 75px;
  }
  
  .scroll-top {
    bottom: 75px;
    left: 20px;
  }
}

/* ============================================
   COMPACT SIZING — Super small layout from About down
   ============================================ */

/* Sections */
.section {
  padding: 24px 0;
}

.section-header {
  margin-bottom: 16px;
}

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

.section-header h2::after {
  width: 36px;
  height: 2px;
  bottom: -5px;
}

.section-header p {
  font-size: 0.72rem;
  max-width: 500px;
}

/* Stats Bar */
.stats-bar {
  padding: 16px 0;
}

.stats-grid {
  gap: 12px;
}

.stat-item .stat-number,
.stat-item .stat-suffix {
  font-size: 1.2rem;
}

.stat-item p {
  font-size: 0.65rem;
  margin-top: 2px;
}

/* Founder / About */
.founder-profile {
  margin: 14px 0;
}

.founder-card {
  padding: 12px;
  gap: 14px;
  max-width: 600px;
}

.founder-image img {
  width: 80px;
  height: 80px;
}

.founder-info h3 {
  font-size: 0.62rem;
  margin-bottom: 3px;
}

.founder-info h4 {
  font-size: 1rem;
}

.founder-title {
  font-size: 0.68rem;
  margin-bottom: 6px;
}

.founder-description {
  font-size: 0.68rem;
  margin-bottom: 8px;
  line-height: 1.45;
}

.founder-credentials {
  gap: 6px;
}

.credential {
  padding: 3px 8px;
  gap: 5px;
}

.credential i {
  font-size: 0.65rem;
}

.credential span {
  font-size: 0.6rem;
}

/* Mission & Values */
.mission-values-grid {
  gap: 12px;
  margin-top: 14px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.mission-card, .values-card {
  padding: 12px;
}

.card-icon {
  width: 30px;
  height: 30px;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.mission-card h3, .values-card h3 {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.mission-card p {
  font-size: 0.68rem;
  line-height: 1.45;
}

.mission-highlights, .values-list {
  margin-bottom: 10px;
}

.mission-item, .value-item {
  padding: 5px 7px;
  margin-bottom: 6px;
  gap: 7px;
}

.mission-item i, .value-item i {
  font-size: 0.7rem;
  margin-top: 1px;
}

.mission-item strong, .value-item strong {
  font-size: 0.7rem;
  margin-bottom: 1px;
}

.mission-item p, .value-item p {
  font-size: 0.62rem;
  line-height: 1.35;
}

.mission-footer, .values-footer {
  font-size: 0.62rem;
  padding-top: 6px;
}

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

.service-card {
  padding: 12px;
  min-height: 0;
}

.service-icon {
  width: 32px;
  height: 32px;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.service-card h3 {
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.service-card p {
  font-size: 0.68rem;
  margin-bottom: 5px;
  line-height: 1.45;
}

/* Care Gallery */
.care-gallery {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.care-item {
  min-height: 0;
}

.care-item img {
  height: 100px;
}

.care-caption {
  padding: 9px;
}

.care-caption h3 {
  font-size: 0.8rem;
  margin-bottom: 3px;
}

.care-caption p {
  font-size: 0.65rem;
  line-height: 1.4;
}

/* How It Works */
.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.step-card {
  padding: 14px 12px;
}

.step-number {
  font-size: 1.3rem;
  top: 8px;
  right: 11px;
}

.step-icon {
  width: 32px;
  height: 32px;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.step-card h3 {
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.step-card p {
  font-size: 0.65rem;
  line-height: 1.4;
}

/* Care Plans */
.plans-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.plan-card {
  padding: 14px 12px;
}

.plan-icon {
  width: 30px;
  height: 30px;
  font-size: 0.75rem;
  margin-bottom: 8px;
}

.plan-card h3 {
  font-size: 0.85rem;
}

.plan-tagline {
  font-size: 0.62rem;
  margin-bottom: 8px;
}

.plan-features {
  margin-bottom: 10px;
}

.plan-features li {
  padding: 4px 0;
  font-size: 0.62rem;
  gap: 6px;
}

.plan-features i {
  margin-top: 2px;
  font-size: 0.6rem;
}

.plan-badge {
  font-size: 0.55rem;
  padding: 3px 10px;
  top: -9px;
}

.plan-btn {
  padding: 6px 14px;
  font-size: 0.68rem;
}

/* Testimonials */
.testimonial-slider {
  gap: 12px;
  padding: 8px 0;
  margin-top: 8px;
}

.testimonial-card {
  min-width: 190px;
  flex: 1 0 190px;
  max-width: 240px;
  padding: 12px;
}

.testimonial-card::before {
  font-size: 42px;
  top: -8px;
  left: 12px;
}

.testimonial-rating {
  font-size: 0.6rem;
  margin-bottom: 5px;
}

.testimonial-content {
  margin-bottom: 8px;
}

.testimonial-content p {
  font-size: 0.65rem;
  line-height: 1.4;
}

.testimonial-author img {
  width: 26px;
  height: 26px;
  margin-right: 7px;
}

.author-info h4 {
  font-size: 0.72rem;
}

.author-info p {
  font-size: 0.6rem;
}

.slider-nav {
  margin-top: 8px;
  gap: 6px;
}

.slider-nav button {
  width: 7px;
  height: 7px;
}

/* FAQ */
.faq-list {
  max-width: 560px;
  gap: 6px;
}

.faq-question {
  padding: 8px 12px;
  font-size: 0.72rem;
  gap: 10px;
}

.faq-question i {
  font-size: 0.6rem;
}

.faq-answer p {
  padding: 0 12px 9px;
  font-size: 0.66rem;
  line-height: 1.45;
}

/* CTA Band */
.cta-band {
  padding: 22px 0;
}

.cta-band h3 {
  font-size: 1.05rem;
  margin-bottom: 5px;
}

.cta-band p {
  font-size: 0.7rem;
  margin-bottom: 12px;
}

.cta-band-buttons {
  gap: 8px;
}

.cta-band .btn-lg {
  padding: 7px 16px;
  font-size: 0.68rem;
}

/* Contact */
.contact-grid {
  gap: 14px;
}

.contact-form-wrapper {
  padding: 14px 12px;
}

.contact-form-wrapper h3 {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.contact-form .form-group {
  margin-bottom: 8px;
}

.contact-form label {
  font-size: 0.66rem;
  margin-bottom: 3px;
}

.contact-form input,
.contact-form textarea {
  padding: 6px 9px;
  font-size: 0.68rem;
}

.contact-form textarea {
  min-height: 70px;
}

.form-status {
  margin: 8px 0;
  padding: 5px;
  font-size: 0.66rem;
}

.contact-form .btn-lg {
  padding: 7px 16px;
  font-size: 0.7rem;
}

.contact-info {
  gap: 8px;
}

.contact-item {
  padding: 9px 10px;
  gap: 8px;
}

.contact-icon {
  min-width: 24px;
  height: 24px;
  font-size: 0.7rem;
}

.contact-text h4 {
  font-size: 0.72rem;
  margin-bottom: 1px;
}

.contact-text p, .contact-text a {
  font-size: 0.63rem;
}

/* Newsletter */
.newsletter {
  padding: 20px 0;
}

.newsletter h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.newsletter p {
  font-size: 0.68rem;
  margin-bottom: 10px;
}

.newsletter-form {
  max-width: 380px;
  gap: 6px;
}

.newsletter-form input,
.newsletter-form button {
  padding: 6px 12px;
  font-size: 0.68rem;
}

/* Footer */
footer {
  padding: 20px 0 10px;
}

.footer-grid {
  gap: 14px;
  margin-bottom: 12px;
}

.footer-col h4 {
  font-size: 0.8rem;
  margin-bottom: 7px;
  padding-bottom: 5px;
}

.footer-col h4::after {
  width: 32px;
  height: 1px;
}

.footer-col p {
  font-size: 0.65rem;
  margin-bottom: 6px;
  line-height: 1.45;
}

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

.footer-links a,
.footer-contact li span {
  font-size: 0.65rem;
}

.footer-contact li a,
.footer-contact li span {
  gap: 6px;
}

.footer-contact i {
  width: 12px;
  font-size: 0.6rem;
}

.social-links {
  margin-top: 7px;
  gap: 6px;
}

.social-links a {
  width: 24px;
  height: 24px;
  font-size: 0.62rem;
}

.footer-bottom {
  padding-top: 9px;
}

.footer-bottom p {
  font-size: 0.6rem;
}

/* ============================================
   HERO REDESIGN — Clean, light, premium
   ============================================ */

.hero {
  display: block;
  min-height: 0;
  padding: 50px 0 60px;
  background:
    radial-gradient(ellipse at 15% 15%, rgba(211, 228, 205, 0.6), transparent 55%),
    radial-gradient(ellipse at 88% 25%, rgba(74, 144, 226, 0.12), transparent 50%),
    linear-gradient(180deg, #f7faf2 0%, #eef3fb 100%);
  color: var(--text-color);
  text-align: left;
  overflow: visible;
}

.hero::before {
  display: none;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-content {
  width: auto;
  flex: 1;
  max-width: 540px;
  padding-left: 0;
  margin: 0;
}

.hero-badge {
  background: rgba(107, 142, 35, 0.1);
  border: 1px solid rgba(107, 142, 35, 0.25);
  color: var(--primary-dark);
  font-size: 0.72rem;
  padding: 6px 14px;
  margin-bottom: 16px;
}

.hero h2 {
  font-size: 2.2rem;
  line-height: 1.15;
  color: #29321b;
  margin-bottom: 16px;
}

.hero h2::after {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  width: 60px;
  height: 3px;
  border-radius: 3px;
  bottom: -8px;
}

.hero-highlight {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: #5a6352;
  font-size: 0.9rem;
  max-width: 440px;
  margin-bottom: 22px;
  opacity: 1;
}

.hero-cta-group {
  margin-bottom: 18px;
  gap: 10px;
}

.hero .btn-lg {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.hero .btn-outline {
  border-color: var(--primary-color);
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.6);
}

.hero .btn-outline::before {
  background: rgba(107, 142, 35, 0.1);
}

.hero .btn-outline:hover {
  box-shadow: 0 6px 16px rgba(107, 142, 35, 0.2);
}

.hero-trust {
  gap: 14px;
}

.hero-trust li {
  color: #4b5442;
  font-size: 0.72rem;
  font-weight: 500;
}

.hero-trust i {
  color: var(--primary-color);
  font-size: 0.75rem;
}

/* Hero Visual */
.hero-visual {
  flex: 1;
  max-width: 440px;
}

.hero-image-wrap {
  position: relative;
}

.hero-image {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(43, 58, 22, 0.22);
  display: block;
}

.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 2px solid rgba(107, 142, 35, 0.25);
  border-radius: 20px;
  z-index: -1;
}

.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 8px 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-color);
  white-space: nowrap;
}

.hero-float-rating {
  bottom: -16px;
  left: -20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.hero-float-stars {
  color: #f5b301;
  font-size: 0.62rem;
  display: flex;
  gap: 2px;
}

.hero-float-exp {
  top: -14px;
  right: -14px;
}

.hero-float-exp i {
  color: #e05c6a;
  font-size: 0.8rem;
}

/* Hero Responsive */
@media (max-width: 992px) {
  .hero {
    padding: 36px 0 50px;
  }
  
  .hero-inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    order: 1;
    max-width: 540px;
    padding: 0;
    margin: 0 auto;
  }
  
  .hero-visual {
    order: 2;
    width: 85%;
    max-width: 380px;
    margin: 0 auto;
  }
  
  .hero-image {
    width: 100%;
    margin: 0;
  }
  
  .hero h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-float-rating {
    left: -10px;
  }
  
  .hero-float-exp {
    right: -8px;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 1.7rem;
  }
  
  .hero p {
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 1.45rem;
  }
  
  .hero p {
    font-size: 0.78rem;
  }
  
  .hero-visual {
    width: 92%;
  }
  
  .hero-float-card {
    padding: 6px 10px;
    font-size: 0.6rem;
  }
}

/* ============================================
   HEADER POLISH
   ============================================ */

header {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9f1 100%);
  padding: 12px 0;
  border-bottom: 1px solid rgba(107, 142, 35, 0.12);
  box-shadow: 0 2px 12px rgba(43, 58, 22, 0.05);
}

.logo-container {
  gap: 12px;
}

.logo-img {
  width: 48px;
  height: 48px;
  border: none;
  box-shadow: 0 0 0 2px white, 0 0 0 4px rgba(107, 142, 35, 0.35), 0 4px 10px rgba(43, 58, 22, 0.15);
}

.logo-text h1 {
  font-size: 1.25rem;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-color) 60%, #8fb04a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.2px;
}

.logo-text p {
  font-size: 0.62rem;
  color: #7d8a6a;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 500;
  margin-top: 1px;
}

.header-contact {
  gap: 22px;
}

.header-hours {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-right: 22px;
  border-right: 1px solid rgba(107, 142, 35, 0.18);
}

.header-hours i {
  color: var(--primary-color);
  font-size: 1.15rem;
}

.header-hours strong {
  display: block;
  font-size: 0.72rem;
  color: var(--text-color);
  line-height: 1.2;
}

.header-hours span {
  display: block;
  font-size: 0.6rem;
  color: #8a927e;
  line-height: 1.2;
}

.header-phone {
  padding: 6px 16px 6px 7px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  gap: 10px;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(107, 142, 35, 0.35);
}

.header-phone:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(107, 142, 35, 0.45);
}

.phone-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.phone-text span {
  font-size: 0.56rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.phone-text strong {
  font-size: 0.82rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .header-hours {
    display: none;
  }
  
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    text-align: left;
  }
  
  .logo-text h1 {
    font-size: 1.05rem;
  }
  
  .logo-text p {
    font-size: 0.55rem;
    letter-spacing: 1.1px;
  }
  
  .logo-img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .phone-text span {
    display: none;
  }
  
  .phone-text strong {
    font-size: 0.72rem;
  }
  
  .header-phone {
    padding: 5px 12px 5px 6px;
  }
  
  .phone-icon {
    width: 24px;
    height: 24px;
    font-size: 0.62rem;
  }
}