/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

::selection {
  background: #b6c9be;
  color: #1f4444;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid #b6c9be;
  outline-offset: 2px;
}

/* Z-INDEX LAYERING */
.floating-decorations,
.bg-medical-icons {
  z-index: 0;
}
.section {
  position: relative;
  z-index: 5;
}
.about-card,
.service-card,
.partner-card,
.contact-card {
  position: relative;
  z-index: 10;
}
.header {
  z-index: 1000;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: linear-gradient(135deg, #a8d5cd 0%, #2d5f5d 100%);
  background-attachment: fixed;
  color: #1f4444;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 64px;
  }
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  background: rgba(182, 201, 190, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled .navbar {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

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

.logo-badge {
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-badge .logo {
  height: 28px;
  width: auto;
  display: block;
}

.logo-text {
  font-weight: 500;
  font-size: 15px;
  color: #1f4444;
  margin-left: 4px;
}

.nav-menu {
  display: none;
  list-style: none;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  text-decoration: none;
  color: #1f4444;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 15px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 3px;
  background: #6f947f;
  transform: translateX(-50%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover {
  background: rgba(111, 148, 127, 0.1);
  color: #1f4444;
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link.active {
  color: #1f4444;
  font-weight: 600;
  background: rgba(111, 148, 127, 0.15);
}

.nav-link.active::after {
  width: 80%;
  background: #1f4444;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-connect {
  display: none;
  padding: 10px 20px;
  background: #1f4444;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .btn-connect {
    display: block;
  }
}

.btn-connect:hover {
  background: #2d5f5d;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(31, 68, 68, 0.2);
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #1f4444;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle:checked + .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked + .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile menu visibility controlled by JavaScript */

.mobile-nav-menu {
  list-style: none;
  padding: 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
}

.mobile-nav-link {
  text-decoration: none;
  color: #1f4444;
  font-weight: 500;
  font-size: 18px;
  display: block;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: #6f947f;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 80px 0;
  position: relative;
  display: none;
  z-index: 5;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

/* Show About Us by default */
#about {
  display: block;
}

.section-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6f947f;
  margin-bottom: 20px;
  opacity: 0.9;
}

.section-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1f4444;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 44px;
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
  background: rgba(255, 255, 255, 0.2);
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
  }
}

.about-card,
.service-card,
.partner-card,
.contact-card,
.contact-form-container {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(31, 68, 68, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 10;
}

.about-card {
  border-radius: 20px;
  padding: 48px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .about-left-card {
    padding: 56px;
  }

  .about-right-card {
    padding: 56px;
  }
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #1f4444;
}

.about-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .about-buttons {
    flex-direction: row;
  }
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: #1f4444;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(31, 68, 68, 0.2);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s;
}

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

.btn-primary:hover {
  background: linear-gradient(135deg, #1f4444 0%, #2d5656 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(31, 68, 68, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #1f4444;
  border-color: #1f4444;
  box-shadow: 0 2px 8px rgba(31, 68, 68, 0.1);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #6f947f, #b6c9be);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(111, 148, 127, 0.3);
}

.btn-connect {
  animation: pulse-button 3s ease-in-out infinite;
}

@keyframes pulse-button {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(31, 68, 68, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 8px rgba(31, 68, 68, 0);
  }
}

.btn-connect:hover {
  background: linear-gradient(135deg, #1f4444, #2d5656);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(31, 68, 68, 0.3);
  animation: none;
}

.certifications-card {
  display: flex;
  flex-direction: column;
}

.certifications-card .section-label {
  margin-bottom: 16px;
}

.cert-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 28px;
  color: #1f4444;
  line-height: 1.3;
}

.cert-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cert-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cert-item:hover {
  background: linear-gradient(to right, transparent, rgba(182, 201, 190, 0.12));
  transform: translateX(8px);
}

.cert-icon {
  font-size: 32px !important;
  flex-shrink: 0;
  width: 40px !important;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin-top: 2px;
}

.cert-item:hover .cert-icon {
  transform: scale(1.15) rotate(8deg);
}

/* Icon Colors */
.icon-teal {
  color: #6f947f !important;
}
.icon-mint {
  color: #b6c9be !important;
}
.icon-dark {
  color: #1f4444 !important;
}
.icon-medium {
  color: #7fa094 !important;
}

.cert-item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1f4444;
}

.cert-item p {
  font-size: 14px;
  color: #1f4444;
  opacity: 0.85;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
  background: rgba(255, 255, 255, 0.2);
}

.services-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 64px;
}

.services-main-heading {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f4444;
  line-height: 1.2;
}

.services-intro {
  font-size: 17px;
  line-height: 1.7;
  color: #1f4444;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

.service-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(31, 68, 68, 0.08);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 12px 32px rgba(31, 68, 68, 0.15);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.5);
}

.about-card:hover,
.partner-card:hover,
.contact-card:hover {
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 16px 48px rgba(31, 68, 68, 0.2);
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.5);
}

.service-icon {
  font-size: 40px;
  color: #6f947f;
  flex-shrink: 0;
  margin-top: 4px;
  transition: transform 0.3s ease;
}

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

.service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1f4444;
}

.service-description {
  font-size: 15px;
  line-height: 1.7;
  color: #1f4444;
  opacity: 0.9;
  margin: 0;
}

@media (max-width: 768px) {
  .services-main-heading {
    font-size: 32px;
  }

  .services-header {
    margin-bottom: 48px;
  }
}

/* ============================================
   PARTNERS SECTION
   ============================================ */

.partners-section {
  background: rgba(255, 255, 255, 0.25);
}

.partners-section .section-label {
  text-align: center;
  display: block;
}

.partners-heading,
.contact-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f4444;
  text-align: center;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .partners-heading,
  .contact-heading {
    font-size: 44px;
  }
}

.partners-description {
  font-size: 18px;
  margin-bottom: 48px;
  color: #1f4444;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.partner-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  padding: 36px;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(31, 68, 68, 0.1);
  position: relative;
}

.partner-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 16px 40px rgba(31, 68, 68, 0.18);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(111, 148, 127, 0.3);
}

.partner-code {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6f947f 0%, #1f4444 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(31, 68, 68, 0.2);
}

.partner-info {
  flex: 1;
}

.partner-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1f4444;
}

.partner-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #1f4444;
  opacity: 0.85;
}

.partner-link-icon {
  color: #6f947f;
  font-size: 20px;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.partner-card:hover .partner-link-icon {
  opacity: 1;
  transform: translate(6px, -6px);
}

.trust-section {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 64px 40px;
  margin-top: 64px;
  box-shadow: 0 8px 32px rgba(31, 68, 68, 0.12);
}

.trust-heading {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: #1f4444;
}

.trust-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 56px;
  color: #1f4444;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

.trust-item {
  text-align: center;
  padding: 32px 24px;
  background: rgba(182, 201, 190, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: rgba(182, 201, 190, 0.15);
  transform: translateY(-6px);
}

.trust-icon {
  font-size: 56px;
  color: #6f947f;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.trust-item:hover .trust-icon {
  transform: scale(1.1);
}

.trust-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1f4444;
}

.trust-text {
  font-size: 16px;
  line-height: 1.7;
  color: #1f4444;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .trust-section {
    padding: 48px 24px;
  }

  .trust-heading {
    font-size: 28px;
  }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
  background: rgba(255, 255, 255, 0.3);
}

.contact-section .section-label {
  text-align: center;
  display: block;
}

.contact-description {
  font-size: 18px;
  margin-bottom: 48px;
  color: #1f4444;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 1.3fr;
    gap: 32px;
  }
}

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

.contact-card {
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 24px;
  color: #6f947f;
  margin-top: 4px;
  flex-shrink: 0;
}

.contact-card-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #6f947f;
}

.contact-link {
  color: #1f4444;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #6f947f;
}

.contact-address {
  font-size: 16px;
  color: #1f4444;
  margin-bottom: 12px;
}

.map-container {
  margin-top: 12px;
  border-radius: 8px;
  overflow: hidden;
}

.contact-hours {
  font-size: 16px;
  color: #1f4444;
  margin-bottom: 4px;
}

.contact-hours-detail {
  font-size: 14px;
  color: #1f4444;
  opacity: 0.8;
  margin-bottom: 8px;
}

.contact-hours-note {
  font-size: 13px;
  color: #1f4444;
  opacity: 0.7;
  font-style: italic;
}

.contact-form-container {
  border-radius: 20px;
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #1f4444;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #b6c9be;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  color: #1f4444;
  background: white;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6f947f;
  box-shadow: 0 0 0 3px rgba(111, 148, 127, 0.1);
}

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

.btn-submit {
  background: #1f4444;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.btn-submit:hover {
  background: #6f947f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 68, 68, 0.3);
}

.btn-submit i {
  transition: transform 0.3s ease;
}

.btn-submit:hover i {
  transform: translateX(4px);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: linear-gradient(135deg, #1f4444 0%, #2d5f5d 100%);
  color: white;
  padding: 64px 0 32px;
  position: relative;
  margin-top: auto;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: white;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #b6c9be;
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   FLOATING DECORATIONS
   ============================================ */

.floating-decorations {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.6;
}

.floating-circle-1 {
  top: 12%;
  right: 8%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15),
    transparent 70%
  );
  animation: float1 25s ease-in-out infinite;
}

.floating-circle-2 {
  top: 45%;
  left: 5%;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12),
    transparent 70%
  );
  animation: float2 22s ease-in-out infinite 5s;
}

.floating-circle-3 {
  bottom: 18%;
  right: 15%;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1),
    transparent 70%
  );
  animation: float1 28s ease-in-out infinite 10s;
}

@keyframes float1 {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-30px) translateX(15px);
  }
  50% {
    transform: translateY(-15px) translateX(-15px);
  }
  75% {
    transform: translateY(-25px) translateX(10px);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-25px) translateX(20px);
  }
}

/* ============================================
   MEDICAL BACKGROUND ICONS
   ============================================ */

.bg-medical-icons {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.bg-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.08);
  filter: blur(2px);
}

.bg-icon-dna {
  top: 18%;
  right: 12%;
  font-size: 100px;
  animation: rotate-slow 50s linear infinite;
}

.bg-icon-pill {
  bottom: 35%;
  right: 20%;
  font-size: 85px;
  filter: blur(3px);
  animation: float1 32s ease-in-out infinite 8s;
  transform: rotate(25deg);
}

.bg-icon-molecule {
  top: 42%;
  left: 15%;
  font-size: 95px;
  animation: rotate-slow 45s linear infinite reverse;
}

.bg-icon-cross {
  top: 62%;
  left: 8%;
  font-size: 70px;
  animation: pulse-subtle 4s ease-in-out infinite;
}

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

@keyframes pulse-subtle {
  0%,
  100% {
    opacity: 0.08;
    transform: scale(1);
  }
  50% {
    opacity: 0.12;
    transform: scale(1.05);
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.section {
  animation: fadeIn 0.6s ease-out;
}

.service-card,
.partner-card,
.contact-card {
  animation: fadeIn 0.6s ease-out;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

@media (max-width: 768px) {
  .section-heading {
    font-size: 28px;
  }

  .partners-heading,
  .contact-heading {
    font-size: 28px;
  }

  .section {
    padding: 48px 0;
  }

  .nav-container {
    padding: 12px 16px;
  }

  .container {
    padding: 0 16px;
  }

  /* Floating circles mobile */
  .floating-circle-1,
  .floating-circle-2,
  .floating-circle-3 {
    width: 200px !important;
    height: 200px !important;
    filter: blur(50px);
  }

  /* Medical icons mobile */
  .bg-icon-dna,
  .bg-icon-molecule {
    display: none;
  }
  .bg-icon-pill,
  .bg-icon-cross {
    font-size: 60px;
  }

  /* Touch-friendly cards */
  .about-card:active,
  .service-card:active,
  .partner-card:active {
    transform: translateY(-4px) scale(1.005);
  }

  /* Full-width buttons */
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  /* Reduce animations on mobile */
  .floating-circle {
    animation-duration: 15s !important;
  }
}
