/* PlaHealth Ltd - Main Stylesheet */

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f8f9fa;
  color: #333;
  overflow-x: hidden;
}

/* Navigation */
nav {
  background: linear-gradient(135deg, #ff9500, #4a7c4e);
  padding: 0.5rem 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(255, 149, 0, 0.3);
}

.nav-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s;
}

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

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
  }
}

.hero-content {
  max-width: 1000px;
  padding: 2rem;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease;
}

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

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 1.2rem 3rem;
  background: white;
  color: #ff9500;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

/* Section Styles */
section {
  padding: 5rem 5%;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  color: #ff9500;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

/* About Section */
.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text {
  animation: fadeInLeft 1s ease;
}

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

.about-text h3 {
  color: #ff9500;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-text p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-card {
  background: linear-gradient(135deg, #ff9500, #ffd700);
  color: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(255, 149, 0, 0.3);
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 149, 0, 0.4);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.stat-card h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* How It Works */
.process-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff9500, #ffd700);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.process-step:hover::before {
  transform: scaleX(1);
}

.process-step:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(255, 149, 0, 0.3);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff9500, #4a7c4e);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

.process-step h3 {
  color: #ff9500;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.process-step p {
  color: #666;
  line-height: 1.6;
}

/* Benefits Section */
.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: linear-gradient(
    135deg,
    rgba(255, 149, 0, 0.1),
    rgba(74, 124, 78, 0.1)
  );
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 149, 0, 0.3);
  transition: all 0.4s;
}

.benefit-card:hover {
  transform: translateY(-10px);
  border-color: #ff9500;
  box-shadow: 0 15px 40px rgba(255, 149, 0, 0.2);
}

.benefit-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  color: #ff9500;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.benefit-card p {
  color: #666;
  line-height: 1.7;
}

/* Products Gallery */
.products-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.products-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
  animation: fadeInUp 0.6s ease;
}

.product-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 50px rgba(107, 142, 107, 0.3);
}

.product-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #6b8e6b, #556b2f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.product-image::before {
  position: absolute;
  font-size: 8rem;
  opacity: 0.2;
  animation: spin 8s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  color: #556b2f;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.product-features {
  font-size: 0.95rem;
  color: #62da7c;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-price {
  font-size: 1.8rem;
  color: #6b8e6b;
  font-weight: bold;
  margin-bottom: 1rem;
}

.buy-button {
  display: block;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #6b8e6b, #556b2f);
  color: white;
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.3s;
}

.buy-button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(107, 142, 107, 0.4);
}

/* Team Section */
.team-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-member {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 5 10px 30px rgba(55, 0, 0, 0.1);
  transition: all 0.4s;
}

.team-member:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(255, 149, 0, 0.3);
}

.team-avatar {
  width: 200px;
  height: 200px;
  border-radius: 10%;
  background: linear-gradient(135deg, #ff9500, #4a7c4e);
  margin: 2 auto 1.5rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgb(236, 231, 231);
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(255, 149, 0, 0.4);
  border: 3px solid rgba(236, 72, 153, 0.5);
  transition: all 0.3s;
}

.team-member:hover .team-avatar {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(219, 39, 119, 0.3);
}

.team-member h3 {
  color: #ff9500;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.team-member p {
  color: #666;
  font-size: 1.1rem;
}

/* Partners Section */
.partners-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.partner-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
}

.partner-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(255, 149, 0, 0.3);
}

.partner-logo {
  width: 100%;
  height: 100px;
  background: linear-gradient(135deg, #ff9500, #4a7c4e);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-card h3 {
  color: #ff9500;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.partner-card p {
  color: #666;
  font-size: 1rem;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #ff9500, #4a7c4e);
  color: white;
}

.contact-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-10px);
}

.contact-item h3 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-item p {
  font-size: 1.1rem;
}

.contact-item a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid white;
  transition: all 0.3s;
}

.contact-item a:hover {
  border-bottom: 4px solid white;
  letter-spacing: 1px;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 3rem auto 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.contact-form h3 {
  color: #ff9500;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ff9500;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4a7c4e;
  box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #ff9500, #4a7c4e);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 149, 0, 0.3);
}

.submit-btn:active {
  transform: translateY(-1px);
}

/* Success Message */
.success-message {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: fadeIn 0.3s ease-in;
}

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

.success-content {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 500px;
  animation: slideUp 0.3s ease-out;
}

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

.success-content h4 {
  color: #4a7c4e;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.success-content p {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.success-content button {
  background: linear-gradient(135deg, #ff9500, #4a7c4e);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s;
}

.success-content button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 149, 0, 0.3);
}

/* News Section */
.news-section {
  background: #f8f9fa;
}

.news-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
}

.news-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
  animation: fadeInUp 0.6s ease;
}

.news-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(255, 149, 0, 0.2);
}

.news-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #ff9500, #4a7c4e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-content {
  padding: 2rem;
}

.news-date {
  color: #ff9500;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.news-card h3 {
  color: #1a1a1a;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.news-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.read-more-btn {
  display: inline-block;
  color: #ff9500;
  text-decoration: none;
  font-weight: bold;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid #ff9500;
  transition: all 0.3s;
}

.read-more-btn:hover {
  color: #4a7c4e;
  border-bottom-color: #4a7c4e;
}

/* Footer */
footer {
  background: #1e1e1e;
  color: white;
  padding: 2rem 5%;
  text-align: center;
}

footer p {
  margin-bottom: 0.5rem;
}

/* Social Media Links */
.social-media {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #62da7c;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid #62da7c;
}

.social-link:hover {
  background: #62da7c;
  color: white;
  transform: translateY(-3px);
}

.social-link i {
  font-size: 1.2rem;
}

/* Innovation Section */
#innovation {
  padding: 4rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  background: white;
}

.innovation-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin: 2rem 0 3rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.innovation-content {
  background: linear-gradient(135deg, rgba(98, 218, 124, 0.05), rgba(255, 149, 0, 0.05));
  border-radius: 15px;
  padding: 2.5rem;
  border: 2px solid rgba(98, 218, 124, 0.2);
}

.innovation-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.innovation-step {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border-left: 5px solid #62da7c;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.innovation-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(98, 218, 124, 0.2);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.innovation-step h4 {
  color: #62da7c;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.innovation-step p {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
}

.innovation-benefits {
  margin-top: 3rem;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.benefit-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  color: #333;
  font-weight: 500;
  border-left: 4px solid #62da7c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.innovation-sustainability {
  margin-top: 3rem;
}

.sustainability-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.point {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  color: #333;
  font-weight: 500;
  text-align: center;
  border-top: 4px solid #ff9500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #6b8e6b, #556b2f);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }

  nav ul.active {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

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

  .section-title {
    font-size: 2rem;
  }
}
