.care-sanctuary {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-color) 0%, #f0f8f0 100%);
}

.care-sanctuary__header {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.care-sanctuary__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.8rem;
}

.care-sanctuary__title i {
  color: #e91e63;
  font-size: 2.5rem;
}

.care-sanctuary__description {
  opacity: 0.8;
  color: var(--main-color);
  font-size: 1.2rem;
  line-height: 1.6;
}

.care-guide-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.guide-category {
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(233, 30, 99, 0.1);
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
}

.guide-category:hover {
  box-shadow: 0 25px 70px rgba(233, 30, 99, 0.15);
  transform: translateY(-10px);
}

.guide-category__header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px;
  color: white;
  background: linear-gradient(45deg, #e91e63, #f8bbd9);
}

.category-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.category-icon i {
  color: white;
  font-size: 1.5rem;
}

.guide-category__header h3 {
  font-weight: 600;
  font-size: 1.4rem;
}

.guide-category__image {
  position: relative;
  overflow: hidden;
}

.guide-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.guide-category:hover .guide-image {
  transform: scale(1.1);
}

.guide-category__content {
  padding: 30px;
}

.care-checklist {
  margin-bottom: 25px;
  list-style: none;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--main-color);
  font-size: 0.95rem;
}

.checklist-item i {
  color: var(--secondary-color);
  font-size: 1rem;
}

.guide-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  border: none;
  border-radius: 20px;
  padding: 12px 20px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  background: linear-gradient(45deg, var(--secondary-color), #4caf50);
  transition: all 0.3s ease;
  cursor: pointer;
}

.guide-button:hover {
  box-shadow: 0 8px 25px rgba(34, 139, 34, 0.3);
  transform: translateY(-2px);
}


.nutrition-wizard {
  padding: 80px 0;
  background: linear-gradient(135deg, #e3f2fd 0%, var(--secondary-bg-color) 100%);
}

.nutrition-wizard__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 60px;
}

.nutrition-wizard__title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.8rem;
}

.nutrition-wizard__title i {
  color: #2196f3;
  font-size: 2.5rem;
}

.nutrition-wizard__description {
  margin-bottom: 40px;
  opacity: 0.8;
  color: var(--main-color);
  font-size: 1.2rem;
  line-height: 1.6;
}

.nutrition-benefits {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(33, 150, 243, 0.1);
  background: white;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  box-shadow: 0 15px 40px rgba(33, 150, 243, 0.15);
  transform: translateX(10px);
}

.benefit-icon {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, #2196f3, #81d4fa);
}

.benefit-icon i {
  color: white;
  font-size: 1.8rem;
}

.benefit-content h4 {
  margin-bottom: 8px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.3rem;
}

.benefit-content p {
  opacity: 0.8;
  color: var(--main-color);
  line-height: 1.5;
}

.calculator-card {
  position: sticky;
  top: 100px;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(33, 150, 243, 0.1);
  background: white;
}

.calculator-header {
  margin-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 20px;
  text-align: center;
}

.calculator-header h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.5rem;
}

.calculator-header i {
  color: #2196f3;
}

.calculator-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-label i {
  color: #2196f3;
}

.form-input,
.form-select {
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus {
  border-color: #2196f3;
  outline: none;
}

.calculator-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  border: none;
  border-radius: 15px;
  padding: 15px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  background: linear-gradient(45deg, #2196f3, #64b5f6);
  transition: all 0.3s ease;
  cursor: pointer;
}

.calculator-button:hover {
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
  transform: translateY(-2px);
}

.calculator-result {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 15px;
  padding: 20px;
  background: #f8f9fa;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--main-color);
  font-size: 0.95rem;
}

.result-item i {
  color: #2196f3;
}


.wisdom-hub {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff3e0 0%, var(--bg-color) 100%);
}

.wisdom-hub__header {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.wisdom-hub__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.8rem;
}

.wisdom-hub__title i {
  color: #ff9800;
  font-size: 2.5rem;
}

.wisdom-hub__description {
  opacity: 0.8;
  color: var(--main-color);
  font-size: 1.2rem;
  line-height: 1.6;
}

.faq-categories {
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(255, 152, 0, 0.1);
  overflow: hidden;
  background: white;
}

.faq-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: #f8f9fa;
}

.faq-nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  padding: 12px 20px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 0.9rem;
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-nav-btn:hover,
.faq-nav-btn.active {
  border-color: #ff9800;
  color: white;
  background: #ff9800;
}

.faq-content {
  padding: 30px;
}

.faq-category-content {
  display: none;
}

.faq-category-content.active {
  display: block;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  transition: color 0.3s ease;
  cursor: pointer;
}

.faq-question:hover {
  color: #ff9800;
}

.faq-question h4 {
  color: inherit;
  font-weight: 600;
  font-size: 1.2rem;
}

.faq-question i {
  color: #ff9800;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 0 20px 0;
  animation: fadeInDown 0.3s ease;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  opacity: 0.8;
  color: var(--main-color);
  line-height: 1.6;
}


.support-oasis {
  padding: 80px 0;
  background: linear-gradient(135deg, #e8f5e8 0%, #f0f8ff 100%);
}

.support-oasis__header {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.support-oasis__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.8rem;
}

.support-oasis__title i {
  color: #4caf50;
  font-size: 2.5rem;
}

.support-oasis__description {
  opacity: 0.8;
  color: var(--main-color);
  font-size: 1.2rem;
  line-height: 1.6;
}

.support-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.support-channel {
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 15px 50px rgba(76, 175, 80, 0.1);
  text-align: center;
  background: white;
  transition: all 0.3s ease;
}

.support-channel:hover {
  box-shadow: 0 25px 70px rgba(76, 175, 80, 0.15);
  transform: translateY(-10px);
}

.channel-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(45deg, #4caf50, #81c784);
}

.channel-icon i {
  color: white;
  font-size: 2rem;
}

.channel-content h3 {
  margin-bottom: 10px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.5rem;
}

.channel-content>p {
  margin-bottom: 20px;
  opacity: 0.8;
  color: var(--main-color);
}

.channel-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.detail-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--main-color);
  font-size: 0.9rem;
}

.detail-item i {
  color: #4caf50;
}

.detail-item a {
  color: var(--accent-color);
  text-decoration: none;
}

.detail-item a:hover {
  text-decoration: underline;
}

.channel-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  border: none;
  border-radius: 20px;
  padding: 12px 20px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  background: linear-gradient(45deg, #4caf50, #66bb6a);
  transition: all 0.3s ease;
  cursor: pointer;
}

.channel-button:hover {
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
  transform: translateY(-2px);
}

.support-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 15px 50px rgba(76, 175, 80, 0.1);
  background: white;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(45deg, #4caf50, #81c784);
}

.stat-icon i {
  color: white;
  font-size: 1.5rem;
}

.stat-content h4 {
  margin-bottom: 5px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.8rem;
}

.stat-content p {
  opacity: 0.8;
  color: var(--main-color);
  font-size: 0.9rem;
}


.trust-shield {
  padding: 80px 0;
  background: linear-gradient(135deg, #f3e5f5 0%, var(--secondary-bg-color) 100%);
}

.trust-shield__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.policy-illustration {
  position: relative;
}

.policy-image {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(156, 39, 176, 0.2);
}

.guarantee-badges {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 20px;
  padding: 10px 15px;
  box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  background: #9c27b0;
}

.trust-shield__title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.8rem;
}

.trust-shield__title i {
  color: #9c27b0;
  font-size: 2.5rem;
}

.trust-shield__description {
  margin-bottom: 40px;
  opacity: 0.8;
  color: var(--main-color);
  font-size: 1.2rem;
  line-height: 1.6;
}

.policy-timeline {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(156, 39, 176, 0.1);
  background: white;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  box-shadow: 0 15px 40px rgba(156, 39, 176, 0.15);
  transform: translateX(10px);
}

.timeline-icon {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, #9c27b0, #ce93d8);
}

.timeline-icon i {
  color: white;
  font-size: 1.8rem;
}

.timeline-content h4 {
  margin-bottom: 8px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.3rem;
}

.timeline-content p {
  opacity: 0.8;
  color: var(--main-color);
  line-height: 1.5;
}

.policy-conditions {
  margin-bottom: 30px;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(156, 39, 176, 0.1);
  background: white;
}

.policy-conditions h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.3rem;
}

.policy-conditions h4 i {
  color: #9c27b0;
}

.conditions-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.conditions-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--main-color);
  font-size: 0.95rem;
}

.conditions-list i {
  color: var(--secondary-color);
}

.policy-actions {
  display: flex;
  gap: 15px;
}

.policy-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 20px;
  padding: 12px 25px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.policy-button.primary {
  color: white;
  background: linear-gradient(45deg, #9c27b0, #ba68c8);
}

.policy-button.secondary {
  border: 2px solid #9c27b0;
  color: #9c27b0;
  background: transparent;
}

.policy-button:hover {
  box-shadow: 0 8px 25px rgba(156, 39, 176, 0.3);
  transform: translateY(-2px);
}


.health-connect {
  padding: 80px 0;
  background: linear-gradient(135deg, #e1f5fe 0%, var(--bg-color) 100%);
}

.health-connect__header {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.health-connect__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.8rem;
}

.health-connect__title i {
  color: #00bcd4;
  font-size: 2.5rem;
}

.health-connect__description {
  opacity: 0.8;
  color: var(--main-color);
  font-size: 1.2rem;
  line-height: 1.6;
}

.consultation-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  position: relative;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 15px 50px rgba(0, 188, 212, 0.1);
  background: white;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 25px 70px rgba(0, 188, 212, 0.15);
  transform: translateY(-10px);
}

.service-card.featured {
  border: 3px solid #00bcd4;
  transform: scale(1.05);
}

.service-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 20px;
  padding: 8px 20px;
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  background: #ff9800;
  transform: translateX(-50%);
}

.service-header {
  margin-bottom: 25px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 20px;
  text-align: center;
}

.service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(45deg, #00bcd4, #4dd0e1);
}

.service-icon i {
  color: white;
  font-size: 2rem;
}

.service-header h3 {
  margin-bottom: 10px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.4rem;
}

.service-price {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.8rem;
}

.service-features {
  margin-bottom: 25px;
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--main-color);
  font-size: 0.95rem;
}

.service-features i {
  color: #00bcd4;
}

.service-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  border: none;
  border-radius: 20px;
  padding: 12px 20px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  background: linear-gradient(45deg, #00bcd4, #26c6da);
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-button.emergency {
  background: linear-gradient(45deg, #f44336, #ef5350);
}

.service-button:hover {
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.3);
  transform: translateY(-2px);
}

.vet-specialties {
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 15px 50px rgba(0, 188, 212, 0.1);
  background: white;
}

.vet-specialties h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.5rem;
  text-align: center;
}

.vet-specialties h3 i {
  color: #00bcd4;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.specialty-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-radius: 15px;
  padding: 20px;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.specialty-item:hover {
  background: #e3f2fd;
  transform: translateY(-3px);
}

.specialty-item i {
  color: #00bcd4;
  font-size: 1.5rem;
}

.specialty-item span {
  color: var(--main-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}


@media (max-width: 1024px) {

  .nutrition-wizard__content,
  .trust-shield__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .care-guide-categories,
  .support-channels,
  .consultation-services {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {

  .care-sanctuary,
  .nutrition-wizard,
  .wisdom-hub,
  .support-oasis,
  .trust-shield,
  .health-connect {
    padding: 60px 0;
  }

  .care-sanctuary__title,
  .nutrition-wizard__title,
  .wisdom-hub__title,
  .support-oasis__title,
  .trust-shield__title,
  .health-connect__title {
    flex-direction: column;
    font-size: 2.2rem;
    text-align: center;
  }

  .benefit-item,
  .timeline-item {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }

  .guarantee-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }

  .faq-nav {
    gap: 10px;
  }

  .policy-actions {
    flex-direction: column;
  }

  .calculator-card {
    position: static;
  }
}

@media (max-width: 480px) {

  .care-guide-categories,
  .support-channels,
  .consultation-services {
    grid-template-columns: 1fr;
  }

  .guide-category__content,
  .support-channel,
  .service-card {
    padding: 20px;
  }

  .support-stats {
    gap: 20px;
  }

  .specialties-grid {
    gap: 15px;
  }

  .specialty-item {
    padding: 15px 10px;
  }

  .guarantee-badges {
    flex-direction: column;
    align-items: center;
  }
}


@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.guide-category,
.benefit-item,
.support-channel,
.timeline-item,
.service-card {
  animation: fadeInUp 0.6s ease-out;
}