/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Page transition effect */
body {
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.page-loaded {
  opacity: 1;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

img {
  max-width: 100%;
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Animation Classes */
.fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.5s ease forwards;
}

.fade-in-right {
  animation: fadeInRight 0.5s ease forwards;
}

.pulse {
  animation: pulse 1s infinite;
}

.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Header Styles */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo img {
  height: 40px;
  transition: transform 0.3s ease;
}

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

nav ul {
  display: flex;
  gap: 20px;
}

nav ul li a {
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #d4af37;
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: #d4af37;
}

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

.badge {
  background-color: #d4af37;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-right: 5px;
}

.header-buttons {
  display: flex;
  gap: 10px;
}

.search-btn {
  background-color: transparent;
  font-size: 18px;
  color: #333;
  transition: color 0.3s;
}

.search-btn:hover {
  color: #d4af37;
}

.login-btn {
  background-color: #d4af37;
  color: white;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.login-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}

.login-btn:hover {
  background-color: #b8860b;
}

.login-btn:hover::before {
  left: 100%;
}

.mobile-menu-button {
  display: none;
  background: transparent;
  font-size: 24px;
  color: #333;
}

/* Support Banner */
.support-banner {
  background-color: #b8860b;
  color: white;
  padding: 10px 0;
}

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

.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.support-badge,
.whatsapp-badge {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  transition: background-color 0.3s;
}

.support-badge:hover,
.whatsapp-badge:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.phone-number {
  font-weight: bold;
  font-size: 18px;
}

/* Hero Section */
.hero {
  padding: 50px 0;
}

.hero .container {
  display: flex;
  gap: 30px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 36px;
  color: #d4af37;
  margin-bottom: 10px;
}

.hero-content h2 {
  font-size: 42px;
  color: #333;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  max-width: 80%;
}

.search-box {
  display: flex;
  margin-bottom: 20px;
  max-width: 500px;
  position: relative;
}

.search-box input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px 0 0 5px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.search-box input:focus {
  border-color: #d4af37;
  outline: none;
}

.search-box button {
  background-color: #d4af37;
  color: white;
  padding: 0 20px;
  border-radius: 0 5px 5px 0;
  font-size: 18px;
  transition: background-color 0.3s;
}

.search-box button:hover {
  background-color: #b8860b;
}

.quick-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-buttons button {
  background-color: white;
  border: 1px solid #ddd;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  transition: all 0.3s;
}

.quick-buttons button:hover {
  background-color: #f0f0f0;
  border-color: #d4af37;
  color: #d4af37;
}

.hero-image {
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

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

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
}

.image-overlay h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.image-overlay h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.image-overlay button {
  background-color: white;
  color: #333;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s;
}

.image-overlay button:hover {
  background-color: #d4af37;
  color: white;
}

.image-overlay button i {
  transition: transform 0.3s;
}

.image-overlay button:hover i {
  transform: translateX(5px);
}

/* App Download Section */
.app-download {
  background-color: #b8860b;
  color: white;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.app-download::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/placeholder.svg?height=100&width=100") repeat;
  opacity: 0.05;
}

.app-download .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.app-image img {
  height: 300px;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
  transition: transform 0.5s ease;
}

.app-image:hover img {
  transform: translateY(-10px);
}

.app-content {
  flex: 1;
  padding: 0 30px;
}

.app-content h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.highlight {
  color: #ffe066;
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffe066;
}

.app-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.app-buttons {
  display: flex;
  gap: 15px;
}

.google-play,
.app-store {
  background-color: #333;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.google-play::before,
.app-store::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
}

.google-play:hover,
.app-store:hover {
  background-color: #444;
  transform: translateY(-3px);
}

.google-play:hover::before,
.app-store:hover::before {
  left: 100%;
}

.qr-code img {
  width: 120px;
  height: 120px;
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.qr-code:hover img {
  transform: scale(1.1);
}

/* Services Section */
.services {
  padding: 50px 0;
}

.services .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  flex: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.3);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: #d4af37;
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

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

.service-icon.green {
  background-color: #00b894;
}

.service-icon.blue {
  background-color: #0984e3;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.service-card:hover h3 {
  color: #d4af37;
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #f0f0f0;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}

.service-card:hover .service-badge {
  background-color: #d4af37;
  color: white;
}

/* Health Team Section */
.health-team,
.home-care {
  padding: 50px 0;
}

.health-team h2,
.home-care h2,
.services-list h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #333;
  position: relative;
  padding-bottom: 15px;
}

.health-team h2::after,
.home-care h2::after,
.services-list h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #d4af37;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.team-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  border: 1px solid transparent;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.3);
}

.team-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-card:hover img {
  transform: scale(1.1);
}

.team-card h3 {
  padding: 15px 15px 5px;
  font-size: 18px;
  transition: color 0.3s;
}

.team-card:hover h3 {
  color: #d4af37;
}

.team-card p {
  padding: 0 15px 15px;
  color: #666;
  font-size: 14px;
}

/* Services List Section */
.services-list {
  padding: 50px 0;
  background-color: #f8f9fa;
}

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

.service-item {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  border: 1px solid transparent;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.3);
}

.service-item i {
  font-size: 24px;
  color: #d4af37;
  transition: transform 0.3s;
}

.service-item:hover i {
  transform: scale(1.2);
}

.service-item h3 {
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}

.service-item:hover h3 {
  color: #d4af37;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 50px 0 20px;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #d4af37, #b8860b, #d4af37);
}

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

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #d4af37;
}

.footer-column p {
  margin-bottom: 20px;
  color: #ccc;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: #444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s;
}

.social-icons a:hover {
  background-color: #d4af37;
  transform: translateY(-3px);
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  transition: color 0.3s;
  position: relative;
  padding-left: 15px;
}

.footer-column ul li a::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #d4af37;
  transition: transform 0.3s;
}

.footer-column ul li a:hover {
  color: #d4af37;
}

.footer-column ul li a:hover::before {
  transform: translateX(3px);
}

.footer-column i {
  margin-right: 10px;
  color: #d4af37;
}

.whatsapp-button {
  background-color: #25d366;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.whatsapp-button:hover {
  background-color: #128c7e;
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #ccc;
  font-size: 14px;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.whatsapp-float a {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Testimonials Section */
.testimonials {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.testimonials h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #333;
  position: relative;
  padding-bottom: 15px;
}

.testimonials h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #d4af37;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slide {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.testimonial-slide img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid #d4af37;
}

.testimonial-content {
  font-style: italic;
  color: #666;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content::before,
.testimonial-content::after {
  content: "\201C";
  font-size: 50px;
  color: #d4af37;
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -10px;
}

.testimonial-content::after {
  content: "\201D";
  top: auto;
  left: auto;
  right: -10px;
  bottom: -40px;
}

.testimonial-author {
  font-weight: bold;
  color: #333;
}

.testimonial-author span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

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

.testimonial-prev,
.testimonial-next {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #333;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background-color: #d4af37;
  color: white;
}

/* FAQ Section */
.faq-section {
  padding: 50px 0;
}

.faq-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #333;
  position: relative;
  padding-bottom: 15px;
}

.faq-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #d4af37;
}

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

.faq-item {
  background-color: white;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #f9f9f9;
}

.faq-question i {
  transition: transform 0.3s;
}

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

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
}

/* Contact Form */
.contact-form {
  padding: 50px 0;
}

.contact-form h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #333;
  position: relative;
  padding-bottom: 15px;
}

.contact-form h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #d4af37;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #d4af37;
  outline: none;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: #e74c3c;
}

.error-message {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 5px;
}

.form-submit {
  background-color: #d4af37;
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  display: block;
  margin: 0 auto;
}

.form-submit:hover {
  background-color: #b8860b;
}

/* Page Header */
.page-header {
  background-color: #b8860b;
  color: white;
  padding: 50px 0;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/placeholder.svg?height=100&width=100") repeat;
  opacity: 0.05;
}

.page-header h1 {
  font-size: 36px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.page-header p {
  font-size: 18px;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
  nav ul {
    gap: 15px;
  }

  .hero .container {
    flex-direction: column;
  }

  .app-download .container {
    flex-direction: column;
    text-align: center;
  }

  .app-content {
    padding: 30px 0;
  }

  .app-buttons {
    justify-content: center;
  }

  .services .container {
    flex-direction: column;
  }

  .mobile-menu-button {
    display: block;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .support-banner .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

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

  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .service-content {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content h2 {
    font-size: 32px;
  }

  .quick-buttons {
    flex-direction: column;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Animation for fade-in effect */
.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

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