@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://cdn-uicons.flaticon.com/3.0.0/uicons-thin-straight/css/uicons-thin-straight.css");
@import url("https://cdn-uicons.flaticon.com/3.0.0/uicons-solid-rounded/css/uicons-solid-rounded.css");
@import url("https://cdn-uicons.flaticon.com/3.0.0/uicons-brands/css/uicons-brands.css");
@import 'icons/icons.css';
:root {
  --primary: #195a70;
  --primary-rgb: 25, 90, 112;
  --secondary: #90b9a3;
  --secondary-rgb: 144, 185, 163;
  --third: #9d282d;
  --third-rgb: 157, 40, 45;
  --black: #1b1b1b;
  --black-rgb: 27, 27, 27;
  --white: #e4eff0;
  --white-rgb: 228, 239, 240;
  --text: #949494;
  --text-rgb: 148, 148, 148;
  --font: "Poppins", sans-serif;
  --gap: 2rem;
  --gap-large: 4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.75rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.button: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.5s ease;
}
.button:hover:before {
  left: 100%;
}
.button.primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.3);
}
.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(var(--primary-rgb), 0.4);
}
.button.primary:active {
  transform: translateY(0);
}
.button.secondary {
  background: rgba(var(--white-rgb), 0.2);
  color: var(--white);
  border: 2px solid rgba(var(--white-rgb), 0.3);
  backdrop-filter: blur(10px);
}
.button.secondary:hover {
  background: rgba(var(--white-rgb), 0.3);
  border-color: rgba(var(--white-rgb), 0.5);
  transform: translateY(-2px);
}
.button.white {
  background: var(--white);
  color: var(--primary);
}
.button.white:hover {
  background: rgba(var(--white-rgb), 0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--black-rgb), 0.1);
}
.button.full-width {
  width: 100%;
  justify-content: center;
}
.button i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}
.button:hover i {
  transform: translateX(3px);
}
@media (max-width: 599px) {
  .button {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header .section-tag {
  display: inline-block;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}
.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (max-width: 999px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 599px) {
  .section-header h2 {
    font-size: 2rem;
  }
}
.section-header p {
  font-size: 1.125rem;
  color: var(--text);
  line-height: 1.6;
}

.contact-cta {
  margin-top: 4rem;
  padding: 4rem 0;
}
.contact-cta .cta-content {
  background: var(--white);
  border-radius: 2rem;
  padding: 3rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 15px 50px rgba(var(--black-rgb), 0.1);
  border: 2px solid rgba(var(--primary-rgb), 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.contact-cta .cta-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.contact-cta .cta-content:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(var(--primary-rgb), 0.15);
  border-color: var(--primary);
}
.contact-cta .cta-content:hover:before {
  transform: scaleX(1);
}
.contact-cta .cta-content:hover .cta-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.3);
}
.contact-cta .cta-content:hover .cta-text h3 {
  color: var(--secondary);
  transform: translateX(5px);
}
@media (max-width: 999px) {
  .contact-cta .cta-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
    padding: 2.5rem;
  }
}
.contact-cta .cta-content .cta-icon {
  width: 4.5rem;
  height: 4.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
}
.contact-cta .cta-content .cta-icon i {
  font-size: 2.25rem;
  color: var(--white);
  transition: transform 0.3s ease;
}
.contact-cta .cta-content .cta-text h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .contact-cta .cta-content .cta-text h3 {
    font-size: 1.5rem;
  }
}
.contact-cta .cta-content .cta-text p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}
.contact-cta .cta-content .cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 999px) {
  .contact-cta .cta-content .cta-actions {
    justify-content: center;
  }
}
@media (max-width: 599px) {
  .contact-cta .cta-content .cta-actions {
    flex-direction: column;
    width: 100%;
  }
}
.contact-cta .cta-content .cta-actions .button {
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}
.contact-cta .cta-content .cta-actions .button.primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}
.contact-cta .cta-content .cta-actions .button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}
.contact-cta .cta-content .cta-actions .button.secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.contact-cta .cta-content .cta-actions .button.secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
@media (max-width: 599px) {
  .contact-cta .cta-content .cta-actions .button {
    width: 100%;
    justify-content: center;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary);
  font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(var(--primary-rgb), 0.1);
  border-radius: 0.75rem;
  font-family: var(--font);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
  transform: translateY(-1px);
}
.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: rgba(var(--text-rgb), 0.6);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}
.form-group select {
  cursor: pointer;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23949494" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6,9 12,15 18,9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  appearance: none;
  padding-right: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 599px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(var(--black-rgb), 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(var(--black-rgb), 0.15);
}

.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(var(--white-rgb), 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
html {
  scroll-behavior: smooth;
}

::selection {
  background: rgba(var(--primary-rgb), 0.2);
  color: var(--primary);
}

*:focus {
  outline: 2px solid rgba(var(--primary-rgb), 0.3);
  outline-offset: 2px;
}

.content {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

section {
  width: 100%;
  max-width: 100%;
  position: relative;
}

.curriculum {
  width: 100%;
}
.curriculum .hero-curriculum {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 10rem 0 4rem;
  min-height: 50vh;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 999px) {
  .curriculum .hero-curriculum {
    padding: 8rem 0 3rem;
    min-height: 40vh;
  }
}
@media (max-width: 599px) {
  .curriculum .hero-curriculum {
    padding: 7rem 0 2rem;
    min-height: auto;
  }
}
.curriculum .hero-curriculum .hero-content {
  text-align: center;
  color: var(--white);
  max-width: 100%;
}
.curriculum .hero-curriculum .hero-content .breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 599px) {
  .curriculum .hero-curriculum .hero-content .breadcrumbs {
    font-size: 0.85rem;
    gap: 0.35rem;
  }
}
.curriculum .hero-curriculum .hero-content .breadcrumbs a {
  color: rgba(var(--white-rgb), 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.curriculum .hero-curriculum .hero-content .breadcrumbs a:hover {
  color: var(--white);
}
.curriculum .hero-curriculum .hero-content .breadcrumbs a i {
  font-size: 0.75rem;
}
.curriculum .hero-curriculum .hero-content .breadcrumbs span {
  color: rgba(var(--white-rgb), 0.6);
  display: inline-flex;
  align-items: center;
}
.curriculum .hero-curriculum .hero-content .breadcrumbs span i {
  font-size: 0.65rem;
}
.curriculum .hero-curriculum .hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (max-width: 999px) {
  .curriculum .hero-curriculum .hero-content h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .curriculum .hero-curriculum .hero-content h1 {
    font-size: 2rem;
  }
}
@media (max-width: 599px) {
  .curriculum .hero-curriculum .hero-content h1 {
    font-size: 1.75rem;
  }
}
.curriculum .hero-curriculum .hero-content .subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
@media (max-width: 767px) {
  .curriculum .hero-curriculum .hero-content .subtitle {
    font-size: 1.1rem;
  }
}
@media (max-width: 599px) {
  .curriculum .hero-curriculum .hero-content .subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
.curriculum .hero-curriculum .hero-content .credentials-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 599px) {
  .curriculum .hero-curriculum .hero-content .credentials-info {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
}
.curriculum .hero-curriculum .hero-content .credentials-info span {
  background: rgba(var(--white-rgb), 0.2);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  white-space: nowrap;
}
@media (max-width: 599px) {
  .curriculum .hero-curriculum .hero-content .credentials-info span {
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
  }
}
.curriculum .curriculum-content {
  padding: 4rem 0;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 999px) {
  .curriculum .curriculum-content {
    padding: 3rem 0;
  }
}
@media (max-width: 599px) {
  .curriculum .curriculum-content {
    padding: 2rem 0;
  }
}
.curriculum .curriculum-content .curriculum-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 999px) {
  .curriculum .curriculum-content .curriculum-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 599px) {
  .curriculum .curriculum-content .curriculum-grid {
    gap: 1.5rem;
  }
}
.curriculum .curriculum-content .curriculum-nav .nav-sticky {
  position: sticky;
  top: 120px;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(var(--black-rgb), 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 280px;
}
@media (max-width: 999px) {
  .curriculum .curriculum-content .curriculum-nav .nav-sticky {
    position: static;
    border-radius: 0.75rem;
    max-width: 100%;
  }
}
.curriculum .curriculum-content .curriculum-nav .nav-sticky h3 {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 1.5rem;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}
@media (max-width: 999px) {
  .curriculum .curriculum-content .curriculum-nav .nav-sticky h3 {
    padding: 1.25rem;
    font-size: 1rem;
  }
}
@media (max-width: 599px) {
  .curriculum .curriculum-content .curriculum-nav .nav-sticky h3 {
    padding: 1rem;
    font-size: 0.95rem;
    text-align: center;
  }
}
.curriculum .curriculum-content .curriculum-nav .nav-sticky ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 999px) {
  .curriculum .curriculum-content .curriculum-nav .nav-sticky ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.5rem;
    padding: 0.5rem;
  }
}
@media (max-width: 599px) {
  .curriculum .curriculum-content .curriculum-nav .nav-sticky ul {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}
.curriculum .curriculum-content .curriculum-nav .nav-sticky ul li .nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  font-size: 0.95rem;
}
@media (max-width: 999px) {
  .curriculum .curriculum-content .curriculum-nav .nav-sticky ul li .nav-link {
    padding: 0.875rem 1.25rem;
    border-left: none;
    border-radius: 0.5rem;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 599px) {
  .curriculum .curriculum-content .curriculum-nav .nav-sticky ul li .nav-link {
    padding: 0.75rem 1rem;
    flex-direction: row;
    justify-content: flex-start;
    font-size: 0.875rem;
  }
}
.curriculum .curriculum-content .curriculum-nav .nav-sticky ul li .nav-link:hover {
  background: rgba(var(--primary-rgb), 0.05);
  color: var(--primary);
  border-left-color: var(--primary);
}
@media (max-width: 999px) {
  .curriculum .curriculum-content .curriculum-nav .nav-sticky ul li .nav-link:hover {
    border-left-color: transparent;
    background: rgba(var(--primary-rgb), 0.1);
  }
}
.curriculum .curriculum-content .curriculum-nav .nav-sticky ul li .nav-link.active {
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  border-left-color: var(--primary);
  font-weight: 600;
}
@media (max-width: 999px) {
  .curriculum .curriculum-content .curriculum-nav .nav-sticky ul li .nav-link.active {
    border-left-color: transparent;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
  }
}
.curriculum .curriculum-content .curriculum-nav .nav-sticky ul li .nav-link i {
  font-size: 1.1rem;
  width: 20px;
  flex-shrink: 0;
}
@media (max-width: 999px) {
  .curriculum .curriculum-content .curriculum-nav .nav-sticky ul li .nav-link i {
    font-size: 1.25rem;
    width: auto;
  }
}
@media (max-width: 599px) {
  .curriculum .curriculum-content .curriculum-nav .nav-sticky ul li .nav-link i {
    font-size: 1rem;
  }
}
.curriculum .curriculum-content .curriculum-main {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}
.curriculum .curriculum-content .curriculum-main .curriculum-section {
  margin-bottom: 3rem;
}
@media (max-width: 999px) {
  .curriculum .curriculum-content .curriculum-main .curriculum-section {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 599px) {
  .curriculum .curriculum-content .curriculum-main .curriculum-section {
    margin-bottom: 2rem;
  }
}
.curriculum .curriculum-content .curriculum-main .curriculum-section .section-header {
  margin-bottom: 2rem;
}
@media (max-width: 599px) {
  .curriculum .curriculum-content .curriculum-main .curriculum-section .section-header {
    margin-bottom: 1.5rem;
  }
}
.curriculum .curriculum-content .curriculum-main .curriculum-section .section-header h2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  flex-wrap: wrap;
}
@media (max-width: 999px) {
  .curriculum .curriculum-content .curriculum-main .curriculum-section .section-header h2 {
    font-size: 1.75rem;
    gap: 0.75rem;
  }
}
@media (max-width: 767px) {
  .curriculum .curriculum-content .curriculum-main .curriculum-section .section-header h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 599px) {
  .curriculum .curriculum-content .curriculum-main .curriculum-section .section-header h2 {
    font-size: 1.35rem;
    gap: 0.5rem;
  }
}
.curriculum .curriculum-content .curriculum-main .curriculum-section .section-header h2 i {
  font-size: 1.5rem;
  flex-shrink: 0;
}
@media (max-width: 599px) {
  .curriculum .curriculum-content .curriculum-main .curriculum-section .section-header h2 i {
    font-size: 1.25rem;
  }
}
.curriculum .curriculum-content .curriculum-main .curriculum-section .section-header p {
  margin-top: 0.75rem;
  color: var(--text);
  line-height: 1.6;
}
@media (max-width: 599px) {
  .curriculum .curriculum-content .curriculum-main .curriculum-section .section-header p {
    font-size: 0.95rem;
  }
}
.curriculum .curriculum-content .curriculum-main .curriculum-section .content-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(var(--black-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
}
@media (max-width: 999px) {
  .curriculum .curriculum-content .curriculum-main .curriculum-section .content-card {
    padding: 2rem;
  }
}
@media (max-width: 599px) {
  .curriculum .curriculum-content .curriculum-main .curriculum-section .content-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
  }
}
.curriculum .curriculum-content .curriculum-main .curriculum-section .content-card p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
@media (max-width: 599px) {
  .curriculum .curriculum-content .curriculum-main .curriculum-section .content-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }
}
.curriculum .curriculum-content .curriculum-main .curriculum-section .content-card p:last-child {
  margin-bottom: 0;
}
.curriculum .curriculum-content .education-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
}
.curriculum .curriculum-content .education-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.curriculum .curriculum-content .education-item .education-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.curriculum .curriculum-content .education-item .education-icon i {
  font-size: 1.5rem;
  color: var(--white);
}
.curriculum .curriculum-content .education-item .education-content h3 {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.curriculum .curriculum-content .education-item .education-content .institution {
  color: var(--text);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.curriculum .curriculum-content .education-item .education-content .description {
  color: var(--text);
  font-size: 0.95rem;
  opacity: 0.8;
}
.curriculum .curriculum-content .specialization-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .curriculum .curriculum-content .specialization-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.curriculum .curriculum-content .specialization-grid .spec-category {
  background: rgba(var(--primary-rgb), 0.03);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  overflow: hidden;
  word-wrap: break-word;
}
@media (max-width: 599px) {
  .curriculum .curriculum-content .specialization-grid .spec-category {
    padding: 1.25rem;
  }
}
.curriculum .curriculum-content .specialization-grid .spec-category h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 599px) {
  .curriculum .curriculum-content .specialization-grid .spec-category h3 {
    font-size: 1rem;
    gap: 0.5rem;
  }
}
.curriculum .curriculum-content .specialization-grid .spec-category h3 i {
  font-size: 1.25rem;
  flex-shrink: 0;
}
@media (max-width: 599px) {
  .curriculum .curriculum-content .specialization-grid .spec-category h3 i {
    font-size: 1.1rem;
  }
}
.curriculum .curriculum-content .specialization-grid .spec-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.curriculum .curriculum-content .specialization-grid .spec-category ul li {
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
@media (max-width: 599px) {
  .curriculum .curriculum-content .specialization-grid .spec-category ul li {
    font-size: 0.95rem;
    padding-left: 1.25rem;
    margin-bottom: 0.65rem;
  }
}
.curriculum .curriculum-content .specialization-grid .spec-category ul li:before {
  content: "•";
  color: var(--secondary);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
.curriculum .curriculum-content .specialization-grid .spec-category ul li:last-child {
  margin-bottom: 0;
}
.curriculum .curriculum-content .experience-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
}
.curriculum .curriculum-content .experience-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.curriculum .curriculum-content .experience-item h3 {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.curriculum .curriculum-content .experience-item .company {
  color: var(--text);
  font-weight: 500;
}
.curriculum .curriculum-content .societies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.curriculum .curriculum-content .societies-grid .society-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(var(--primary-rgb), 0.03);
  border-radius: 1rem;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
}
.curriculum .curriculum-content .societies-grid .society-item .society-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.curriculum .curriculum-content .societies-grid .society-item .society-icon i {
  font-size: 1.1rem;
  color: var(--white);
}
.curriculum .curriculum-content .societies-grid .society-item .society-content h4 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.curriculum .curriculum-content .societies-grid .society-item .society-content p {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.curriculum .curriculum-content .achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.curriculum .curriculum-content .achievements-grid .achievement-item {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #f8fafb 0%, #e9ecef 100%);
  border-radius: 1rem;
}
.curriculum .curriculum-content .achievements-grid .achievement-item .achievement-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.curriculum .curriculum-content .achievements-grid .achievement-item p {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}
.curriculum .curriculum-content .pioneering-achievements h3 {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.curriculum .curriculum-content .pioneering-achievements ul {
  list-style: none;
  padding: 0;
}
.curriculum .curriculum-content .pioneering-achievements ul li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.curriculum .curriculum-content .pioneering-achievements ul li i {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.curriculum .curriculum-content .contact-intro {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.02), rgba(var(--secondary-rgb), 0.01));
  border-radius: 1rem;
  border: 1px solid rgba(var(--primary-rgb), 0.08);
}
.curriculum .curriculum-content .contact-intro p {
  font-size: 1.1rem;
  color: var(--text);
  margin: 0;
  opacity: 0.9;
  line-height: 1.6;
}
.curriculum .curriculum-content .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.curriculum .curriculum-content .section-header .section-tag {
  display: inline-block;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}
.curriculum .curriculum-content .section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (max-width: 999px) {
  .curriculum .curriculum-content .section-header h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 599px) {
  .curriculum .curriculum-content .section-header h2 {
    font-size: 2rem;
  }
}
.curriculum .curriculum-content .section-header p {
  font-size: 1.125rem;
  color: var(--text);
  line-height: 1.6;
}
.curriculum .curriculum-content .contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .curriculum .curriculum-content .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.curriculum .curriculum-content .contact-card {
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: 0 8px 25px rgba(var(--black-rgb), 0.08);
  border: 2px solid rgba(var(--primary-rgb), 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.curriculum .curriculum-content .contact-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.curriculum .curriculum-content .contact-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.15);
  border-color: var(--primary);
}
.curriculum .curriculum-content .contact-card:hover:before {
  transform: scaleX(1);
}
.curriculum .curriculum-content .contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.3);
}
.curriculum .curriculum-content .contact-card:hover .card-content h3 {
  color: var(--secondary);
  transform: translateX(5px);
}
.curriculum .curriculum-content .contact-card.primary {
  border-color: var(--primary);
}
.curriculum .curriculum-content .contact-card.primary:before {
  transform: scaleX(1);
}
.curriculum .curriculum-content .contact-card.primary .contact-badge {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.curriculum .curriculum-content .contact-card .card-header {
  padding: 2rem 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.curriculum .curriculum-content .contact-card .contact-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
}
.curriculum .curriculum-content .contact-card .contact-icon i {
  font-size: 1.75rem;
  color: var(--white);
  transition: transform 0.3s ease;
}
.curriculum .curriculum-content .contact-card .card-content {
  padding: 0 2rem 2rem;
}
.curriculum .curriculum-content .contact-card .card-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.curriculum .curriculum-content .contact-card .card-content .location,
.curriculum .curriculum-content .contact-card .card-content .address {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.curriculum .curriculum-content .contact-card .card-content .response-time {
  font-size: 0.875rem;
  color: var(--text);
  opacity: 0.7;
  margin-top: 1rem;
  font-style: italic;
}
.curriculum .curriculum-content .contact-card .card-content .contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.curriculum .curriculum-content .contact-card .card-content .contact-details .detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(var(--primary-rgb), 0.03);
  border-radius: 0.75rem;
  border: 1px solid rgba(var(--primary-rgb), 0.08);
  transition: all 0.3s ease;
}
.curriculum .curriculum-content .contact-card .card-content .contact-details .detail-item:hover {
  background: rgba(var(--primary-rgb), 0.08);
  border-color: rgba(var(--primary-rgb), 0.2);
  transform: translateX(3px);
}
.curriculum .curriculum-content .contact-card .card-content .contact-details .detail-item.whatsapp {
  background: rgba(37, 211, 102, 0.05);
  border-color: rgba(37, 211, 102, 0.1);
}
.curriculum .curriculum-content .contact-card .card-content .contact-details .detail-item.whatsapp:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.3);
}
.curriculum .curriculum-content .contact-card .card-content .contact-details .detail-item.whatsapp i {
  color: #25d366;
}
.curriculum .curriculum-content .contact-card .card-content .contact-details .detail-item i {
  color: var(--primary);
  font-size: 1.1rem;
  width: 20px;
  flex-shrink: 0;
}
.curriculum .curriculum-content .contact-card .card-content .contact-details .detail-item span,
.curriculum .curriculum-content .contact-card .card-content .contact-details .detail-item a {
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.curriculum .curriculum-content .contact-card .card-content .contact-details .detail-item a:hover {
  color: var(--primary);
}
.curriculum .curriculum-content .contact-card .card-content .social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.curriculum .curriculum-content .contact-card .card-content .social-links .social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(var(--primary-rgb), 0.03);
  border-radius: 0.75rem;
  border: 1px solid rgba(var(--primary-rgb), 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
}
.curriculum .curriculum-content .contact-card .card-content .social-links .social-link:hover {
  background: rgba(var(--primary-rgb), 0.08);
  border-color: rgba(var(--primary-rgb), 0.2);
  transform: translateX(3px);
}
.curriculum .curriculum-content .contact-card .card-content .social-links .social-link.instagram {
  background: rgba(225, 48, 108, 0.05);
  border-color: rgba(225, 48, 108, 0.1);
}
.curriculum .curriculum-content .contact-card .card-content .social-links .social-link.instagram:hover {
  background: rgba(225, 48, 108, 0.1);
  border-color: rgba(225, 48, 108, 0.3);
}
.curriculum .curriculum-content .contact-card .card-content .social-links .social-link.instagram i {
  color: #e1306c;
}
.curriculum .curriculum-content .contact-card .card-content .social-links .social-link.website {
  background: rgba(var(--secondary-rgb), 0.05);
  border-color: rgba(var(--secondary-rgb), 0.1);
}
.curriculum .curriculum-content .contact-card .card-content .social-links .social-link.website:hover {
  background: rgba(var(--secondary-rgb), 0.1);
  border-color: rgba(var(--secondary-rgb), 0.3);
}
.curriculum .curriculum-content .contact-card .card-content .social-links .social-link.website i {
  color: var(--secondary);
}
.curriculum .curriculum-content .contact-card .card-content .social-links .social-link i {
  font-size: 1.1rem;
  width: 20px;
  flex-shrink: 0;
}
.curriculum .curriculum-content .contact-card .card-content .social-links .social-link span {
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s ease;
}
.curriculum .curriculum-content .contact-card .card-content .social-links .social-link:hover span {
  color: var(--primary);
}
.curriculum .curriculum-content .office-hours {
  margin-top: 2rem;
}
.curriculum .curriculum-content .office-hours .hours-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 1.5rem;
  padding: 2.5rem;
  color: var(--white);
  display: flex;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.curriculum .curriculum-content .office-hours .hours-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hoursPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hoursPattern)"/></svg>') repeat;
  pointer-events: none;
}
@media (max-width: 768px) {
  .curriculum .curriculum-content .office-hours .hours-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}
.curriculum .curriculum-content .office-hours .hours-card .hours-icon {
  width: 5rem;
  height: 5rem;
  background: rgba(var(--white-rgb), 0.15);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.curriculum .curriculum-content .office-hours .hours-card .hours-icon i {
  font-size: 2.5rem;
  color: var(--white);
}
.curriculum .curriculum-content .office-hours .hours-card .hours-content {
  flex: 1;
  position: relative;
  z-index: 2;
}
.curriculum .curriculum-content .office-hours .hours-card .hours-content h4 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.curriculum .curriculum-content .office-hours .hours-card .hours-content .schedule {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.curriculum .curriculum-content .office-hours .hours-card .hours-content .schedule .schedule-item {
  background: rgba(var(--white-rgb), 0.1);
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(var(--white-rgb), 0.2);
  backdrop-filter: blur(10px);
}
.curriculum .curriculum-content .office-hours .hours-card .hours-content .schedule .schedule-item .day {
  display: block;
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 0.25rem;
}
.curriculum .curriculum-content .office-hours .hours-card .hours-content .schedule .schedule-item .time {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
}
.curriculum .curriculum-content .office-hours .hours-card .hours-content .appointment-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0;
  color: var(--white);
}
.curriculum .curriculum-content .office-hours .hours-card .hours-content .appointment-note i {
  font-size: 1rem;
}
.curriculum .curriculum-content .curriculum-footer {
  margin-top: 4rem;
}
.curriculum .curriculum-content .curriculum-footer .contact-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 3rem;
  border-radius: 1.5rem;
  text-align: center;
}
.curriculum .curriculum-content .curriculum-footer .contact-cta h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.curriculum .curriculum-content .curriculum-footer .contact-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.curriculum .curriculum-content .curriculum-footer .contact-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.curriculum .credentials {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafb 0%, #e9ecef 100%);
}
.curriculum .credentials .credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.curriculum .credentials .credentials-grid .credential-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  position: relative;
}
.curriculum .credentials .credentials-grid .credential-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(var(--black-rgb), 0.2);
  border-color: var(--primary);
}
.curriculum .credentials .credentials-grid .credential-card .card-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}
.curriculum .credentials .credentials-grid .credential-card .card-icon:hover {
  color: var(--secondary);
}
@media (max-width: 999px) {
  .curriculum .credentials .credentials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.curriculum .story-case {
  padding: 0;
}
.curriculum .story-case .story-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 999px) {
  .curriculum .story-case .story-grid {
    grid-template-columns: 1fr;
  }
}
.curriculum .story-case .case-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.curriculum .story-case .case-card {
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: 0 8px 25px rgba(var(--black-rgb), 0.08);
  border: 2px solid rgba(var(--primary-rgb), 0.08);
  overflow: hidden;
  transition: all 0.35s ease;
  position: relative;
  will-change: transform, box-shadow;
}
.curriculum .story-case .case-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.04), rgba(var(--secondary-rgb), 0.03));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.curriculum .story-case .case-card.open, .curriculum .story-case .case-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}
.curriculum .story-case .case-card.open:before, .curriculum .story-case .case-card:hover:before {
  opacity: 1;
}
.curriculum .story-case .case-card .card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 2rem;
  cursor: pointer;
  user-select: none;
}
.curriculum .story-case .case-card .card-header > i {
  font-size: 1.5rem;
  color: var(--primary);
}
.curriculum .story-case .case-card .card-header h3 {
  flex: 1;
  margin: 0;
  color: var(--primary);
  font-weight: 700;
}
.curriculum .story-case .case-card .card-header .case-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  transition: all 0.3s ease;
}
.curriculum .story-case .case-card .card-header .case-toggle i {
  color: var(--primary);
  transition: transform 0.3s ease;
}
.curriculum .story-case .case-card .card-header:focus-visible {
  outline: 3px solid rgba(var(--primary-rgb), 0.35);
  outline-offset: 2px;
  border-radius: 0.75rem;
}
.curriculum .story-case .case-card.open .case-toggle i {
  transform: rotate(180deg);
}
.curriculum .story-case .case-card .case-body {
  background: rgba(var(--primary-rgb), 0.03);
  border-top: 1px solid rgba(var(--primary-rgb), 0.08);
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  will-change: max-height, opacity, padding;
}
@media (max-width: 999px) {
  .curriculum .story-case .case-card .case-body {
    padding: 0 1.5rem;
  }
}
.curriculum .story-case .case-card.open .case-body {
  padding: 1rem 2rem 1.75rem;
  opacity: 1;
}
.curriculum .story-case .case-card .case-list {
  list-style: none;
  padding: 0;
  padding-bottom: 4rem;
  margin: 0;
}
.curriculum .story-case .case-card .case-list li {
  position: relative;
  padding-left: 1.25rem;
  margin: 0.5rem 0;
  line-height: 1.6;
  color: var(--text);
}
.curriculum .story-case .case-card .case-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
}
.curriculum .story-case .case-aside {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 999px) {
  .curriculum .story-case .case-aside {
    position: static;
  }
}
.curriculum .story-case .case-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.curriculum .story-case .case-stats .stat-card {
  background: var(--white);
  border-radius: 1.25rem;
  border: 2px solid rgba(var(--primary-rgb), 0.1);
  box-shadow: 0 4px 15px rgba(var(--black-rgb), 0.06);
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
}
.curriculum .story-case .case-stats .stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
}
.curriculum .story-case .case-stats .stat-card .stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
}
.curriculum .story-case .case-stats .stat-card .stat-label {
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.85;
}
.curriculum .story-case .case-figure {
  background: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 2px solid rgba(var(--primary-rgb), 0.1);
  box-shadow: 0 8px 25px rgba(var(--black-rgb), 0.08);
  transition: all 0.35s ease;
  margin: 0;
}
.curriculum .story-case .case-figure img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.curriculum .story-case .case-figure figcaption {
  padding: 1rem;
  text-align: center;
  color: var(--primary);
  font-weight: 600;
  background: rgba(var(--primary-rgb), 0.04);
}
.curriculum .story-case .case-figure:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}
.curriculum .story-case .case-figure:hover img {
  transform: scale(1.03);
}
.curriculum .story-case .highlight-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .curriculum .story-case .highlight-cards-container {
    grid-template-columns: 1fr;
  }
}
.curriculum .story-case .highlight-card {
  background: linear-gradient(135deg, #195a70, #0c89b3);
  color: var(--white);
  border-radius: 1.25rem;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.35s ease;
}
.curriculum .story-case .highlight-card:nth-child(2) {
  background: linear-gradient(135deg, #90b9a3, #358f5f);
}
.curriculum .story-case .highlight-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="p" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23p)"/></svg>') repeat;
  opacity: 0.6;
  pointer-events: none;
}
.curriculum .story-case .highlight-card .highlight-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--white-rgb), 0.18);
  border-radius: 1rem;
  flex-shrink: 0;
}
.curriculum .story-case .highlight-card .highlight-icon i {
  color: var(--white);
  font-size: 1.25rem;
}
.curriculum .story-case .highlight-card p {
  margin: 0;
  position: relative;
  z-index: 2;
}
.curriculum .story-case .highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(var(--black-rgb), 0.2);
  border-color: rgba(var(--white-rgb), 0.3);
}

.service-page .hero-service {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.service-page .hero-service:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="service-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23service-pattern)"/></svg>') repeat;
  animation: servicePatternFloat 30s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.service-page .hero-service .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.service-page .hero-service .hero-content .breadcrumbs {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}
.service-page .hero-service .hero-content .breadcrumbs a {
  color: rgba(var(--white-rgb), 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.service-page .hero-service .hero-content .breadcrumbs a:hover {
  color: var(--white);
}
.service-page .hero-service .hero-content .breadcrumbs span {
  color: rgba(var(--white-rgb), 0.6);
}
.service-page .hero-service .hero-content .breadcrumbs i {
  font-size: 0.8rem;
}
.service-page .hero-service .hero-content .hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}
@media (max-width: 999px) {
  .service-page .hero-service .hero-content .hero-text h1 {
    font-size: 2.5rem;
  }
}
.service-page .hero-service .hero-content .hero-text .subtitle {
  font-size: 1.25rem;
  color: rgba(var(--white-rgb), 0.9);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.service-page .hero-service .hero-content .hero-text .description {
  font-size: 1.1rem;
  color: rgba(var(--white-rgb), 0.8);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.service-page .hero-service .hero-content .hero-text .hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 599px) {
  .service-page .hero-service .hero-content .hero-text .hero-buttons {
    flex-direction: column;
  }
}
.service-page .hero-service .hero-content .hero-image {
  position: relative;
}
.service-page .hero-service .hero-content .hero-image .image-container {
  position: relative;
}
.service-page .hero-service .hero-content .hero-image .image-container img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}
.service-page .hero-service .hero-content .hero-image .image-container img:hover {
  transform: translateY(-10px);
}
.service-page .hero-service .hero-content .hero-image .image-container .floating-card {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: floatCard 3s ease-in-out infinite;
  z-index: 10;
}
.service-page .hero-service .hero-content .hero-image .image-container .floating-card .card-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-page .hero-service .hero-content .hero-image .image-container .floating-card .card-icon i {
  font-size: 1.5rem;
  color: var(--white);
}
.service-page .hero-service .hero-content .hero-image .image-container .floating-card .card-content .card-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.service-page .hero-service .hero-content .hero-image .image-container .floating-card .card-content .card-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text);
}
@media (max-width: 999px) {
  .service-page .hero-service .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .service-page .hero-service .hero-content .hero-text {
    order: 2;
  }
  .service-page .hero-service .hero-content .hero-image {
    order: 1;
  }
  .service-page .hero-service .hero-content .hero-image .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1.5rem;
    display: inline-flex;
  }
}
.service-page .service-overview {
  padding: 6rem 0;
  background: var(--white);
}
.service-page .service-overview .overview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 999px) {
  .service-page .service-overview .overview-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.service-page .service-overview .overview-grid .overview-text .benefits-list {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}
.service-page .service-overview .overview-grid .overview-text .benefits-list .benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(var(--primary-rgb), 0.03);
  border-radius: 1rem;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  transition: all 0.3s ease;
}
.service-page .service-overview .overview-grid .overview-text .benefits-list .benefit-item:hover {
  background: rgba(var(--primary-rgb), 0.08);
  border-color: rgba(var(--primary-rgb), 0.2);
  transform: translateY(-2px);
}
.service-page .service-overview .overview-grid .overview-text .benefits-list .benefit-item .benefit-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-page .service-overview .overview-grid .overview-text .benefits-list .benefit-item .benefit-icon i {
  color: var(--white);
  font-size: 1.25rem;
}
.service-page .service-overview .overview-grid .overview-text .benefits-list .benefit-item .benefit-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  margin-top: 0;
}
.service-page .service-overview .overview-grid .overview-text .benefits-list .benefit-item .benefit-content p {
  color: var(--text);
  margin: 0;
}
.service-page .service-overview .overview-grid .overview-stats {
  display: grid;
  margin: auto 0;
  gap: 1.5rem;
}
.service-page .service-overview .overview-grid .overview-stats .stat-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  color: var(--white);
  transition: transform 0.3s ease;
}
.service-page .service-overview .overview-grid .overview-stats .stat-card:hover {
  transform: translateY(-5px);
}
.service-page .service-overview .overview-grid .overview-stats .stat-card .stat-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(var(--white-rgb), 0.2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.service-page .service-overview .overview-grid .overview-stats .stat-card .stat-icon i {
  font-size: 2rem;
  color: var(--white);
}
.service-page .service-overview .overview-grid .overview-stats .stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}
.service-page .service-overview .overview-grid .overview-stats .stat-card .stat-label {
  font-size: 1rem;
  opacity: 0.9;
}
.service-page .treatments {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafb 0%, #e9ecef 100%);
}
.service-page .treatments .treatments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 999px) {
  .service-page .treatments .treatments-grid {
    grid-template-columns: 1fr;
  }
}
.service-page .treatments .treatments-grid .treatment-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 8px 25px rgba(var(--black-rgb), 0.08);
  border: 2px solid rgba(var(--primary-rgb), 0.08);
  transition: all 0.4s ease;
}
.service-page .treatments .treatments-grid .treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.15);
  border-color: var(--primary);
}
.service-page .treatments .treatments-grid .treatment-card .treatment-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.service-page .treatments .treatments-grid .treatment-card .treatment-header .treatment-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-page .treatments .treatments-grid .treatment-card .treatment-header .treatment-icon i {
  font-size: 1.75rem;
  color: var(--primary);
}
.service-page .treatments .treatments-grid .treatment-card .treatment-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}
.service-page .treatments .treatments-grid .treatment-card .treatment-content p {
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.service-page .treatments .treatments-grid .treatment-card .treatment-content .treatment-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.service-page .treatments .treatments-grid .treatment-card .treatment-content .treatment-features span {
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.service-page .treatments .treatments-grid .treatment-card .treatment-content .treatment-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-size: 0.9rem;
}
.service-page .treatments .treatments-grid .treatment-card .treatment-content .treatment-duration i {
  color: var(--primary);
}
.service-page .conditions {
  padding: 6rem 0;
  background: var(--white);
}
.service-page .conditions .conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 999px) {
  .service-page .conditions .conditions-grid {
    grid-template-columns: 1fr;
  }
}
.service-page .conditions .conditions-grid .condition-category {
  background: rgba(var(--primary-rgb), 0.03);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
}
.service-page .conditions .conditions-grid .condition-category h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.service-page .conditions .conditions-grid .condition-category h3 i {
  font-size: 1.5rem;
}
.service-page .conditions .conditions-grid .condition-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-page .conditions .conditions-grid .condition-category ul li {
  padding: 0.75rem 0;
  color: var(--text);
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
  position: relative;
  padding-left: 2rem;
}
.service-page .conditions .conditions-grid .condition-category ul li:last-child {
  border-bottom: none;
}
.service-page .conditions .conditions-grid .condition-category ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}
.service-page .process {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafb 0%, #e9ecef 100%);
}
.service-page .process .process-timeline {
  margin-top: 3rem;
  position: relative;
}
.service-page .process .process-timeline:before {
  content: "";
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  z-index: 1;
}
@media (max-width: 768px) {
  .service-page .process .process-timeline:before {
    left: 1.5rem;
  }
}
.service-page .process .process-timeline .process-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}
.service-page .process .process-timeline .process-step:last-child {
  margin-bottom: 0;
}
.service-page .process .process-timeline .process-step .step-number {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}
@media (max-width: 768px) {
  .service-page .process .process-timeline .process-step .step-number {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
}
.service-page .process .process-timeline .process-step .step-content {
  flex: 1;
  background: var(--white);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 15px rgba(var(--black-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
}
.service-page .process .process-timeline .process-step .step-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}
.service-page .process .process-timeline .process-step .step-content p {
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service-page .process .process-timeline .process-step .step-content .step-duration {
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
}
.service-page .testimonials-service {
  padding: 6rem 0;
  background: var(--white);
}
.service-page .testimonials-service .testimonials-grid-service {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 999px) {
  .service-page .testimonials-service .testimonials-grid-service {
    grid-template-columns: 1fr;
  }
}
.service-page .testimonials-service .testimonials-grid-service .testimonial-card-service {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.03), rgba(var(--secondary-rgb), 0.02));
  padding: 2.5rem;
  border-radius: 2rem;
  border: 2px solid rgba(var(--primary-rgb), 0.08);
  transition: all 0.4s ease;
}
.service-page .testimonials-service .testimonials-grid-service .testimonial-card-service:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.15);
  border-color: var(--primary);
}
.service-page .testimonials-service .testimonials-grid-service .testimonial-card-service .testimonial-content {
  margin-bottom: 2rem;
}
.service-page .testimonials-service .testimonials-grid-service .testimonial-card-service .testimonial-content .quote-icon {
  font-size: 2.5rem;
  color: rgba(var(--primary-rgb), 0.3);
  margin-bottom: 1rem;
}
.service-page .testimonials-service .testimonials-grid-service .testimonial-card-service .testimonial-content p {
  color: var(--text);
  line-height: 1.7;
  font-size: 1.1rem;
  font-style: italic;
}
.service-page .testimonials-service .testimonials-grid-service .testimonial-card-service .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.service-page .testimonials-service .testimonials-grid-service .testimonial-card-service .testimonial-author .author-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.service-page .testimonials-service .testimonials-grid-service .testimonial-card-service .testimonial-author .author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-page .testimonials-service .testimonials-grid-service .testimonial-card-service .testimonial-author .author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.service-page .testimonials-service .testimonials-grid-service .testimonial-card-service .testimonial-author .author-info span {
  color: rgba(var(--text-rgb), 0.7);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}
.service-page .testimonials-service .testimonials-grid-service .testimonial-card-service .testimonial-author .author-info .treatment-result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.service-page .testimonials-service .testimonials-grid-service .testimonial-card-service .testimonial-author .author-info .treatment-result i {
  font-size: 0.75rem;
}
.service-page .contact-service {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
}
.service-page .contact-service .contact-grid-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 999px) {
  .service-page .contact-service .contact-grid-service {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.service-page .contact-service .contact-grid-service .contact-info-service .section-header .section-tag {
  background: rgba(var(--white-rgb), 0.15);
  color: var(--white);
  border: 1px solid rgba(var(--white-rgb), 0.2);
}
.service-page .contact-service .contact-grid-service .contact-info-service .section-header h2,
.service-page .contact-service .contact-grid-service .contact-info-service .section-header p {
  color: var(--white);
}
.service-page .contact-service .contact-grid-service .contact-info-service .contact-benefits {
  margin: 2rem 0;
  display: grid;
  gap: 1rem;
}
.service-page .contact-service .contact-grid-service .contact-info-service .contact-benefits .benefit-item-service {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(var(--white-rgb), 0.9);
}
.service-page .contact-service .contact-grid-service .contact-info-service .contact-benefits .benefit-item-service i {
  color: var(--white);
  font-size: 1.25rem;
}
.service-page .contact-service .contact-grid-service .contact-info-service .contact-methods {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.service-page .contact-service .contact-grid-service .contact-info-service .contact-methods .contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
}
.service-page .contact-service .contact-grid-service .contact-info-service .contact-methods .contact-method.primary {
  background: var(--white);
  color: var(--primary);
}
.service-page .contact-service .contact-grid-service .contact-info-service .contact-methods .contact-method.primary:hover {
  background: rgba(var(--white-rgb), 0.9);
  transform: translateY(-2px);
}
.service-page .contact-service .contact-grid-service .contact-info-service .contact-methods .contact-method.whatsapp {
  background: #25d366;
  color: var(--white);
}
.service-page .contact-service .contact-grid-service .contact-info-service .contact-methods .contact-method.whatsapp:hover {
  background: #1eb855;
  transform: translateY(-2px);
}
.service-page .contact-service .contact-grid-service .contact-info-service .contact-methods .contact-method i {
  font-size: 1.25rem;
}
.service-page .contact-service .contact-grid-service .contact-form-service {
  background: var(--white);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(var(--black-rgb), 0.15);
}
.service-page .contact-service .contact-grid-service .contact-form-service .service-form .form-header {
  text-align: center;
  margin-bottom: 2rem;
}
.service-page .contact-service .contact-grid-service .contact-form-service .service-form .form-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.service-page .contact-service .contact-grid-service .contact-form-service .service-form .form-header p {
  color: var(--text);
  opacity: 0.8;
}
.service-page .contact-service .contact-grid-service .contact-form-service .service-form .form-group {
  margin-bottom: 1.5rem;
}
.service-page .contact-service .contact-grid-service .contact-form-service .service-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary);
  font-size: 0.95rem;
}
.service-page .contact-service .contact-grid-service .contact-form-service .service-form .form-group input,
.service-page .contact-service .contact-grid-service .contact-form-service .service-form .form-group select,
.service-page .contact-service .contact-grid-service .contact-form-service .service-form .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(var(--primary-rgb), 0.1);
  border-radius: 0.75rem;
  font-family: var(--font);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--text);
}
.service-page .contact-service .contact-grid-service .contact-form-service .service-form .form-group input:focus,
.service-page .contact-service .contact-grid-service .contact-form-service .service-form .form-group select:focus,
.service-page .contact-service .contact-grid-service .contact-form-service .service-form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
  transform: translateY(-1px);
}
.service-page .contact-service .contact-grid-service .contact-form-service .service-form .form-group input::placeholder,
.service-page .contact-service .contact-grid-service .contact-form-service .service-form .form-group select::placeholder,
.service-page .contact-service .contact-grid-service .contact-form-service .service-form .form-group textarea::placeholder {
  color: rgba(var(--text-rgb), 0.6);
}
.service-page .contact-service .contact-grid-service .contact-form-service .service-form .form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.service-page .contact-service .contact-grid-service .contact-form-service .service-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 599px) {
  .service-page .contact-service .contact-grid-service .contact-form-service .service-form .form-row {
    grid-template-columns: 1fr;
  }
}
.service-page .related-services {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafb 0%, #e9ecef 100%);
}
.service-page .related-services .related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 999px) {
  .service-page .related-services .related-grid {
    grid-template-columns: 1fr;
  }
}
.service-page .related-services .related-grid .related-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1.5rem;
  text-align: center;
  text-decoration: none;
  border: 2px solid rgba(var(--primary-rgb), 0.08);
  transition: all 0.4s ease;
}
.service-page .related-services .related-grid .related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.15);
  border-color: var(--primary);
}
.service-page .related-services .related-grid .related-card:hover .related-icon {
  background: var(--primary);
}
.service-page .related-services .related-grid .related-card:hover .related-icon i {
  color: var(--white);
}
.service-page .related-services .related-grid .related-card .related-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}
.service-page .related-services .related-grid .related-card .related-icon i {
  font-size: 2rem;
  color: var(--primary);
  transition: color 0.3s ease;
}
.service-page .related-services .related-grid .related-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}
.service-page .related-services .related-grid .related-card p {
  color: var(--text);
  line-height: 1.6;
}
@keyframes servicePatternFloat {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(10px) translateY(-5px);
  }
  50% {
    transform: translateX(0) translateY(-10px);
  }
  75% {
    transform: translateX(-10px) translateY(-5px);
  }
}
@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.faq-page .faq-hero {
  padding: 14rem 0 4rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
}
.faq-page .faq-hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faqHeroPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23faqHeroPattern)"/></svg>') repeat;
  pointer-events: none;
  animation: faqPatternFloat 30s ease-in-out infinite;
}
.faq-page .faq-hero .hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.faq-page .faq-hero .hero-content .page-tag {
  display: inline-block;
  background: rgba(var(--white-rgb), 0.15);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(var(--white-rgb), 0.2);
  backdrop-filter: blur(10px);
}
.faq-page .faq-hero .hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
@media (max-width: 999px) {
  .faq-page .faq-hero .hero-content h1 {
    font-size: 3rem;
  }
}
@media (max-width: 599px) {
  .faq-page .faq-hero .hero-content h1 {
    font-size: 2.5rem;
  }
}
.faq-page .faq-hero .hero-content p {
  font-size: 1.25rem;
  color: rgba(var(--white-rgb), 0.9);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .faq-page .faq-hero .hero-content p {
    font-size: 1.1rem;
  }
}
.faq-page .faq-content {
  padding: 4rem 0;
  background: var(--white);
}
.faq-page .faq-content .faq-sections {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1000px) {
  .faq-page .faq-content .faq-sections {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.faq-page .faq-content .faq-section .section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(var(--primary-rgb), 0.1);
}
.faq-page .faq-content .faq-section .section-header .section-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-page .faq-content .faq-section .section-header .section-icon i {
  font-size: 1.75rem;
  color: var(--white);
}
.faq-page .faq-content .faq-section .section-header h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}
.faq-page .faq-content .faq-section .faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-page .faq-content .faq-section .faq-item {
  background: var(--white);
  border-radius: 1rem;
  border: 2px solid rgba(var(--primary-rgb), 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(var(--black-rgb), 0.05);
}
.faq-page .faq-content .faq-section .faq-item:hover {
  border-color: rgba(var(--primary-rgb), 0.3);
  box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.1);
}
.faq-page .faq-content .faq-section .faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 6px 25px rgba(var(--primary-rgb), 0.15);
}
.faq-page .faq-content .faq-section .faq-item.active .faq-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
}
.faq-page .faq-content .faq-section .faq-item.active .faq-header h4 {
  color: var(--white);
}
.faq-page .faq-content .faq-section .faq-item.active .faq-header .toggle-icon {
  background: rgba(var(--white-rgb), 0.2);
  color: var(--white);
  transform: rotate(180deg);
}
.faq-page .faq-content .faq-section .faq-item.active .faq-content {
  max-height: 300px;
  opacity: 1;
  padding: 1.5rem 2rem;
}
.faq-page .faq-content .faq-section .faq-item .faq-header {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  background: var(--white);
}
.faq-page .faq-content .faq-section .faq-item .faq-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.faq-page .faq-content .faq-section .faq-item .faq-header .toggle-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.faq-page .faq-content .faq-section .faq-item .faq-header .toggle-icon:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}
.faq-page .faq-content .faq-section .faq-item .faq-header .toggle-icon i {
  transition: transform 0.3s ease;
}
.faq-page .faq-content .faq-section .faq-item .faq-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 2rem;
  background: rgba(var(--primary-rgb), 0.02);
}
.faq-page .faq-content .faq-section .faq-item .faq-content p {
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}
.faq-page .faq-content .contact-cta {
  margin-top: 4rem;
  padding: 4rem 0;
}
.faq-page .faq-content .contact-cta .cta-content {
  background: var(--white);
  border-radius: 2rem;
  padding: 3rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 15px 50px rgba(var(--black-rgb), 0.1);
  border: 2px solid rgba(var(--primary-rgb), 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.faq-page .faq-content .contact-cta .cta-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.faq-page .faq-content .contact-cta .cta-content:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(var(--primary-rgb), 0.15);
  border-color: var(--primary);
}
.faq-page .faq-content .contact-cta .cta-content:hover:before {
  transform: scaleX(1);
}
.faq-page .faq-content .contact-cta .cta-content:hover .cta-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.3);
}
.faq-page .faq-content .contact-cta .cta-content:hover .cta-text h3 {
  color: var(--secondary);
  transform: translateX(5px);
}
@media (max-width: 999px) {
  .faq-page .faq-content .contact-cta .cta-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
    padding: 2.5rem;
  }
}
.faq-page .faq-content .contact-cta .cta-content .cta-icon {
  width: 4.5rem;
  height: 4.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
}
.faq-page .faq-content .contact-cta .cta-content .cta-icon i {
  font-size: 2.25rem;
  color: var(--white);
  transition: transform 0.3s ease;
}
.faq-page .faq-content .contact-cta .cta-content .cta-text h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .faq-page .faq-content .contact-cta .cta-content .cta-text h3 {
    font-size: 1.5rem;
  }
}
.faq-page .faq-content .contact-cta .cta-content .cta-text p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}
.faq-page .faq-content .contact-cta .cta-content .cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 999px) {
  .faq-page .faq-content .contact-cta .cta-content .cta-actions {
    justify-content: center;
  }
}
@media (max-width: 599px) {
  .faq-page .faq-content .contact-cta .cta-content .cta-actions {
    flex-direction: column;
    width: 100%;
  }
}
.faq-page .faq-content .contact-cta .cta-content .cta-actions .button {
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}
.faq-page .faq-content .contact-cta .cta-content .cta-actions .button.primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}
.faq-page .faq-content .contact-cta .cta-content .cta-actions .button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}
.faq-page .faq-content .contact-cta .cta-content .cta-actions .button.secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.faq-page .faq-content .contact-cta .cta-content .cta-actions .button.secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
@media (max-width: 599px) {
  .faq-page .faq-content .contact-cta .cta-content .cta-actions .button {
    width: 100%;
    justify-content: center;
  }
}
.faq-page .credentials {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafb 0%, #e9ecef 100%);
}
.faq-page .credentials .credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.faq-page .credentials .credentials-grid .credential-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  position: relative;
}
.faq-page .credentials .credentials-grid .credential-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(var(--black-rgb), 0.2);
  border-color: var(--primary);
}
.faq-page .credentials .credentials-grid .credential-card .card-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}
.faq-page .credentials .credentials-grid .credential-card .card-icon:hover {
  color: var(--secondary);
}
@media (max-width: 999px) {
  .faq-page .credentials .credentials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.testimonials-page .testimonials-hero {
  padding: 14rem 0 4rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
}
.testimonials-page .testimonials-hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="testimonialsPattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="rgba(25,90,112,0.06)"/><circle cx="15" cy="15" r="0.8" fill="rgba(46,139,87,0.04)"/><circle cx="45" cy="45" r="1" fill="rgba(25,90,112,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23testimonialsPattern)"/></svg>') repeat;
  animation: testimonialsPatternFloat 50s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.testimonials-page .testimonials-hero .hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.testimonials-page .testimonials-hero .hero-content .page-tag {
  display: inline-block;
  background: rgba(var(--white-rgb), 0.15);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(var(--white-rgb), 0.2);
  backdrop-filter: blur(10px);
}
.testimonials-page .testimonials-hero .hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
@media (max-width: 999px) {
  .testimonials-page .testimonials-hero .hero-content h1 {
    font-size: 3rem;
  }
}
@media (max-width: 599px) {
  .testimonials-page .testimonials-hero .hero-content h1 {
    font-size: 2.5rem;
  }
}
.testimonials-page .testimonials-hero .hero-content p {
  font-size: 1.25rem;
  color: rgba(var(--white-rgb), 0.9);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .testimonials-page .testimonials-hero .hero-content p {
    font-size: 1.1rem;
  }
}
.testimonials-page .testimonials {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafb 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}
.testimonials-page .testimonials:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="testimonialsPattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="rgba(25,90,112,0.06)"/><circle cx="15" cy="15" r="0.8" fill="rgba(46,139,87,0.04)"/><circle cx="45" cy="45" r="1" fill="rgba(25,90,112,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23testimonialsPattern)"/></svg>') repeat;
  animation: testimonialsPatternFloat 50s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.testimonials-page .testimonials .content {
  position: relative;
  z-index: 2;
}
.testimonials-page .testimonials .testimonials-container {
  position: relative;
  margin-top: 4rem;
}
.testimonials-page .testimonials .testimonials-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.testimonials-page .testimonials .testimonials-background .floating-shapes {
  position: relative;
  width: 100%;
  height: 100%;
}
.testimonials-page .testimonials .testimonials-background .floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--primary), 0.08), rgba(var(--secondary), 0.05));
  animation: floatingShapes 8s ease-in-out infinite;
}
.testimonials-page .testimonials .testimonials-background .floating-shapes .shape.shape-1 {
  width: 60px;
  height: 60px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}
.testimonials-page .testimonials .testimonials-background .floating-shapes .shape.shape-2 {
  width: 40px;
  height: 40px;
  top: 70%;
  right: 10%;
  animation-delay: 2s;
}
.testimonials-page .testimonials .testimonials-background .floating-shapes .shape.shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 15%;
  animation-delay: 4s;
}
.testimonials-page .testimonials .testimonials-background .floating-shapes .shape.shape-4 {
  width: 50px;
  height: 50px;
  top: 40%;
  right: 5%;
  animation-delay: 6s;
}
.testimonials-page .testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
}
@media (max-width: 1200px) {
  .testimonials-page .testimonials .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .testimonials-page .testimonials .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.testimonials-page .testimonials .testimonials-grid .testimonial-card {
  background: var(--white);
  border-radius: 2rem;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(var(--black-rgb), 0.1);
  border: 2px solid rgba(var(--primary-rgb), 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.testimonials-page .testimonials .testimonials-grid .testimonial-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.testimonials-page .testimonials .testimonials-grid .testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.15);
  border-color: var(--primary);
}
.testimonials-page .testimonials .testimonials-grid .testimonial-card:hover:before {
  transform: scaleX(1);
}
.testimonials-page .testimonials .testimonials-grid .testimonial-card.featured {
  border-color: var(--primary);
}
.testimonials-page .testimonials .testimonials-grid .testimonial-card.featured:before {
  transform: scaleX(1);
}
.testimonials-page .testimonials .testimonials-grid .testimonial-card .card-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.testimonials-page .testimonials .testimonials-grid .testimonial-card .card-header .patient-avatar {
  position: relative;
  flex-shrink: 0;
}
.testimonials-page .testimonials .testimonials-grid .testimonial-card .card-header .patient-avatar img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 4px 15px rgba(var(--black-rgb), 0.1);
}
.testimonials-page .testimonials .testimonials-grid .testimonial-card .card-header .patient-avatar .avatar-overlay {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 1.5rem;
  height: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}
.testimonials-page .testimonials .testimonials-grid .testimonial-card .card-header .patient-avatar .avatar-overlay i {
  font-size: 0.75rem;
  color: var(--white);
}
.testimonials-page .testimonials .testimonials-grid .testimonial-card .card-header .patient-info {
  flex: 1;
}
.testimonials-page .testimonials .testimonials-grid .testimonial-card .card-header .patient-info h4 {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

* {
  box-sizing: border-box;
}

[class^=fi-],
[class*=" fi-"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  position: relative;
  height: 100%;
  font-family: var(--font);
  color: var(--text);
  background-color: var(--white);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.content {
  position: relative;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.content.min {
  max-width: 1160px;
}

.floating-buttons {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1000;
  display: flex;
  gap: 1rem;
}

.floating-button {
  position: relative;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(var(--black-rgb), 0.15);
  animation: floatPulse 3s ease-in-out infinite;
}
.floating-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.floating-button .button-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 3;
}
.floating-button .button-icon i {
  font-size: 1.5rem;
  color: var(--white);
  transition: all 0.4s ease;
}
.floating-button .button-ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(var(--white-rgb), 0.3);
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.floating-button:active .button-ripple {
  animation: rippleEffect 0.6s ease-out;
}
.floating-button .button-tooltip {
  position: absolute;
  right: calc(100% + 1rem);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(var(--black-rgb), 0.9);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  backdrop-filter: blur(10px);
}
.floating-button .button-tooltip:before {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid rgba(var(--black-rgb), 0.9);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.floating-button:hover .button-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(-5px);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  animation-delay: 0s;
}
.whatsapp-btn:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}
.whatsapp-btn:hover .button-icon i {
  animation: whatsappBounce 0.6s ease;
}

.scroll-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  animation-delay: 0.5s;
}
.scroll-btn:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.4);
}
.scroll-btn:hover .button-icon i {
  animation: scrollBounce 0.6s ease;
}

@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(-3px) scale(1.02);
  }
  50% {
    transform: translateY(-6px) scale(1.05);
  }
  75% {
    transform: translateY(-3px) scale(1.02);
  }
}
@keyframes whatsappBounce {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.2) rotate(-5deg);
  }
  50% {
    transform: scale(1.3) rotate(5deg);
  }
  75% {
    transform: scale(1.1) rotate(-2deg);
  }
}
@keyframes scrollBounce {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  25% {
    transform: scale(1.1) translateY(-2px);
  }
  50% {
    transform: scale(1.2) translateY(-4px);
  }
  75% {
    transform: scale(1.1) translateY(-2px);
  }
}
@keyframes rippleEffect {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .floating-buttons {
    bottom: 1.5rem;
    right: 1.5rem;
    gap: 0.75rem;
  }
  .floating-button {
    width: 3.25rem;
    height: 3.25rem;
  }
  .floating-button .button-icon i {
    font-size: 1.25rem;
  }
  .floating-button .button-tooltip {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }
}
@media (max-width: 480px) {
  .floating-buttons {
    bottom: 1rem;
    right: 1rem;
  }
  .floating-button {
    width: 3rem;
    height: 3rem;
  }
  .floating-button .button-icon i {
    font-size: 1.125rem;
  }
  .floating-button .button-tooltip {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .floating-button {
    animation: none;
  }
  .floating-button:hover {
    transform: none;
  }
  .floating-button .button-icon i {
    animation: none !important;
  }
}
@media (prefers-contrast: high) {
  .floating-button {
    border: 2px solid var(--white);
  }
  .button-tooltip {
    background: var(--black);
    border: 1px solid var(--white);
  }
}
footer.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--white);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}
footer.footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23footerPattern)"/></svg>') repeat;
  pointer-events: none;
  z-index: 1;
}
footer.footer .content {
  position: relative;
  z-index: 2;
}
footer.footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 999px) {
  footer.footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 599px) {
  footer.footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
footer.footer .footer-section h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--white);
  position: relative;
}
footer.footer .footer-section h4:after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 1px;
}
footer.footer .footer-section p {
  color: rgba(var(--white-rgb), 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
footer.footer .footer-section .footer-logo {
  margin-bottom: 1.5rem;
}
footer.footer .footer-section .footer-logo img {
  height: 45px;
  width: auto;
  transition: all 0.3s ease;
}
footer.footer .footer-section .footer-logo img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}
footer.footer .footer-section .footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
footer.footer .footer-section .footer-social .social-link {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(var(--white-rgb), 0.1);
  border: 1px solid rgba(var(--white-rgb), 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
footer.footer .footer-section .footer-social .social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.4);
}
footer.footer .footer-section .footer-social .social-link i {
  font-size: 1.125rem;
  color: var(--white);
}
footer.footer .footer-section .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer.footer .footer-section .footer-links li {
  margin-bottom: 0.75rem;
}
footer.footer .footer-section .footer-links li a {
  color: rgba(var(--white-rgb), 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-block;
  position: relative;
}
footer.footer .footer-section .footer-links li a:before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--secondary);
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  transition: all 0.3s ease;
}
footer.footer .footer-section .footer-links li a:hover {
  color: var(--white);
  transform: translateX(0.5rem);
}
footer.footer .footer-section .footer-links li a:hover:before {
  transform: translateY(-50%) scale(1);
}
footer.footer .footer-section .footer-address p {
  margin-bottom: 1rem;
}
footer.footer .footer-section .footer-address p:last-child {
  margin-bottom: 0;
}
footer.footer .footer-section .footer-address strong {
  color: var(--white);
  font-weight: 600;
}
footer.footer .footer-bottom {
  border-top: 1px solid rgba(var(--white-rgb), 0.15);
  padding-top: 2rem;
}
footer.footer .footer-bottom .footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  footer.footer .footer-bottom .footer-bottom-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
footer.footer .footer-bottom p {
  color: rgba(var(--white-rgb), 0.7);
  font-size: 0.9rem;
  margin: 0;
}
footer.footer .footer-bottom .footer-bottom-links {
  display: flex;
  gap: 2rem;
}
@media (max-width: 767px) {
  footer.footer .footer-bottom .footer-bottom-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}
footer.footer .footer-bottom .footer-bottom-links a {
  color: rgba(var(--white-rgb), 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
footer.footer .footer-bottom .footer-bottom-links a:hover {
  color: var(--white);
}

.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.floating-buttons .floating-button {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(var(--black-rgb), 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.floating-buttons .floating-button.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}
.floating-buttons .floating-button.whatsapp:hover {
  background: linear-gradient(135deg, #128c7e, #25d366);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}
.floating-buttons .floating-button.contact {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.floating-buttons .floating-button.contact:hover {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}
.floating-buttons .floating-button i {
  font-size: 1.25rem;
  z-index: 2;
}
.floating-buttons .floating-button .button-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(var(--white-rgb), 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .floating-buttons {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .floating-buttons .floating-button {
    width: 3rem;
    height: 3rem;
  }
  .floating-buttons .floating-button i {
    font-size: 1.125rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(var(--primary-rgb), 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(var(--white-rgb), 0.1);
}
.header.scrolled {
  background: rgba(var(--primary-rgb), 0.98);
  backdrop-filter: blur(15px);
  box-shadow: 0 2px 20px rgba(var(--black-rgb), 0.1);
}
.header.scrolled .header-top {
  padding: 0.2rem 0;
}
.header.scrolled .header-top .content {
  justify-content: center;
}
@media (max-width: 999px) {
  .header.scrolled .header-top .content {
    justify-content: space-between;
  }
}
.header.scrolled .header-top .logo img {
  height: 24px;
}
.header.scrolled .header-top .header-actions {
  display: none;
}
@media (max-width: 999px) {
  .header.scrolled .header-top .header-actions {
    display: flex;
  }
  .header.scrolled .header-top .header-actions .contact-info,
  .header.scrolled .header-top .header-actions .button {
    display: none;
  }
  .header.scrolled .header-top .header-actions .menu-toggle {
    display: block;
  }
}
.header.scrolled .header-nav {
  padding: 0.3rem 0;
}
.header.scrolled .header-nav .nav-item {
  padding: 0.4rem 0.6rem;
  font-size: 0.85rem;
}
.header.compact .header-top {
  padding: 0.5rem 0;
}
.header.compact .header-top .content {
  justify-content: center;
}
@media (max-width: 999px) {
  .header.compact .header-top .content {
    justify-content: space-between;
  }
}
.header.compact .header-top .logo img {
  height: 20px;
}
@media (max-width: 999px) {
  .header.compact .header-top .logo img {
    height: 24px;
  }
}
.header.compact .header-top .header-actions {
  display: none;
}
@media (max-width: 999px) {
  .header.compact .header-top .header-actions {
    display: flex;
  }
  .header.compact .header-top .header-actions .contact-info,
  .header.compact .header-top .header-actions .button {
    display: none;
  }
  .header.compact .header-top .header-actions .menu-toggle {
    display: block;
  }
}
.header.compact .header-nav {
  padding: 0.2rem 0;
}
.header.compact .header-nav .nav-item {
  padding: 0.3rem 0.5rem;
  font-size: 0.8rem;
}
.header.compact .header-nav .nav-item span {
  display: none;
}
.header.compact .header-nav .nav-item i {
  font-size: 0.9rem;
}
.header.compact .header-nav .nav-item .dropdown-arrow {
  display: none;
}
.header.compact .header-nav .dropdown-menu {
  display: none;
}
.header .header-top {
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(var(--white-rgb), 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .header-top .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .header-top .logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.header .header-top .logo a img {
  height: 30px;
  width: auto;
  transition: all 0.3s ease;
}
.header .header-top .header-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .header-top .header-actions .contact-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 999px) {
  .header .header-top .header-actions .contact-info {
    display: none;
  }
}
.header .header-top .header-actions .contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(var(--white-rgb), 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.header .header-top .header-actions .contact-info .contact-item:hover {
  color: var(--white);
  transform: translateY(-1px);
}
.header .header-top .header-actions .contact-info .contact-item:visited {
  color: rgba(var(--white-rgb), 0.9);
}
.header .header-top .header-actions .contact-info .contact-item.whatsapp {
  color: #25d366;
}
.header .header-top .header-actions .contact-info .contact-item.whatsapp:visited {
  color: #25d366;
}
.header .header-top .header-actions .contact-info .contact-item.whatsapp:hover {
  color: #1da851;
}
.header .header-top .header-actions .contact-info .contact-item i {
  font-size: 1rem;
}
.header .header-top .header-actions .menu-toggle {
  display: none;
  font-size: 1.3rem;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.header .header-top .header-actions .menu-toggle:hover {
  transform: scale(1.1);
}
@media (max-width: 999px) {
  .header .header-top .header-actions .menu-toggle {
    display: block;
  }
}
.header .header-top .header-actions .button {
  transition: all 0.3s ease;
}
.header .header-top .header-actions .button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}
@media (max-width: 999px) {
  .header .header-top .header-actions .button {
    display: none;
  }
}
.header .header-nav {
  padding: 0.6rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 999px) {
  .header .header-nav {
    display: none;
  }
}
.header .header-nav .main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.header .header-nav .main-nav .nav-group {
  position: relative;
}
.header .header-nav .main-nav .nav-group.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .header-nav .main-nav .nav-group.has-dropdown .dropdown-arrow {
  transition: transform 0.3s ease;
}
.header .header-nav .main-nav .nav-group.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}
.header .header-nav .main-nav .nav-group .nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(var(--white-rgb), 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}
.header .header-nav .main-nav .nav-group .nav-item:hover {
  color: var(--white);
  background: rgba(var(--white-rgb), 0.1);
  transform: translateY(-1px);
}
.header .header-nav .main-nav .nav-group .nav-item.active {
  color: var(--white);
  background: rgba(var(--white-rgb), 0.15);
}
.header .header-nav .main-nav .nav-group .nav-item i {
  font-size: 1rem;
}
.header .header-nav .main-nav .nav-group .nav-item .dropdown-arrow {
  font-size: 0.8rem;
  margin-left: 0.25rem;
}
.header .header-nav .main-nav .nav-group .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(var(--black-rgb), 0.15);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}
.header .header-nav .main-nav .nav-group .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}
.header .header-nav .main-nav .nav-group .dropdown-menu .dropdown-item:hover {
  background: rgba(var(--primary-rgb), 0.05);
  color: var(--primary);
  border-left-color: var(--primary);
  transform: translateX(3px);
}
.header .header-nav .main-nav .nav-group .dropdown-menu .dropdown-item i {
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

#main-nav {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1000;
}
#main-nav:target .inset {
  margin-left: 0;
  opacity: 1;
}
#main-nav .inset {
  background: rgba(var(--secondary-rgb), 0.95);
  position: absolute;
  left: 0;
  bottom: 0;
  top: 80px;
  width: 280px;
  margin-left: -280px;
  transition: all 350ms ease-in-out;
  border-top-right-radius: 1rem;
  box-shadow: 5px 0 15px rgba(var(--black-rgb), 0.2);
  opacity: 0;
  backdrop-filter: blur(15px);
}
#main-nav .inset .close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 25px;
  font-size: 1.5rem;
  color: var(--white);
  transition: all 0.3s ease;
}
#main-nav .inset .close:hover {
  color: var(--primary);
  transform: scale(1.1);
}
#main-nav .inset nav {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}
#main-nav .inset nav a {
  margin-bottom: 20px;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 300ms ease-in-out;
  color: rgba(var(--white-rgb), 0.9);
  border-radius: 8px;
  padding: 15px 2rem;
}
#main-nav .inset nav a:hover {
  background-color: rgba(var(--white-rgb), 0.1);
  color: var(--white);
  transform: translateX(5px);
}
#main-nav .inset nav .button {
  color: var(--primary);
  background: var(--white);
}
#main-nav .inset nav .button:hover {
  background: rgba(var(--white-rgb), 0.9);
  transform: scale(1.05);
}
#main-nav .inset .social {
  margin-left: 2rem;
  padding-bottom: 2rem;
  display: flex;
}
#main-nav .inset .social a {
  text-decoration: none;
  margin-right: 15px;
  color: var(--white);
  font-size: 1.5rem;
  transition: all 300ms ease-in-out;
}
#main-nav .inset .social a:hover {
  color: rgba(var(--white-rgb), 0.9);
  transform: scale(1.1);
}

main.home {
  /* Design refresh: spacing, gaps, colors, animations */
  /* Subtle lighter backgrounds for gradient sections */
  /* Bigger gaps */
  /* Bigger paddings on cards */
  /* Smoothen transitions/hover */
  /* Responsive tweaks */
  /* Minimal, stable submit button layout without spinner */
  /* Prevent layout shift when toggling loading text */
}
main.home .hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  overflow: hidden;
  padding-top: 152px;
}
main.home .hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
  animation: heroPatternFloat 25s ease-in-out infinite;
  z-index: 1;
  opacity: 0.8;
}
main.home .hero:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="35" cy="35" r="1.5" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>') repeat;
  animation: heroPatternFloat 30s ease-in-out infinite reverse;
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
}
main.home .hero .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}
main.home .hero .hero-content .hero-text h1 {
  font-size: 4rem;
  font-weight: 400;
  color: rgba(var(--white-rgb), 0.9);
  margin-bottom: 1rem;
  line-height: 1.1;
}
main.home .hero .hero-content .hero-text h1 strong {
  color: var(--white);
  font-weight: 700;
}
@media (max-width: 999px) {
  main.home .hero .hero-content .hero-text h1 {
    font-size: 3rem;
  }
}
@media (max-width: 599px) {
  main.home .hero .hero-content .hero-text h1 {
    font-size: 2.5rem;
  }
}
main.home .hero .hero-content .hero-text .subtitle {
  font-size: 1.25rem;
  color: rgba(var(--white-rgb), 0.9);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
main.home .hero .hero-content .hero-text .description {
  font-size: 1.1rem;
  color: rgba(var(--white-rgb), 0.8);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 500px;
}
main.home .hero .hero-content .hero-text .hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 599px) {
  main.home .hero .hero-content .hero-text .hero-buttons {
    flex-direction: column;
  }
}
main.home .hero .hero-content .hero-image {
  position: relative;
}
main.home .hero .hero-content .hero-image .image-container {
  position: relative;
}
main.home .hero .hero-content .hero-image .image-container img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 275px;
  box-shadow: 0 20px 60px rgba(var(--black-rgb), 0.3);
  transition: transform 0.6s ease;
}
main.home .hero .hero-content .hero-image .image-container img:hover {
  transform: translateY(-10px);
}
main.home .hero .hero-content .hero-image .image-container .floating-card {
  position: absolute;
  bottom: 6rem;
  right: -2rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: floatCard 3s ease-in-out infinite;
  z-index: 10;
}
main.home .hero .hero-content .hero-image .image-container .floating-card .card-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
main.home .hero .hero-content .hero-image .image-container .floating-card .card-icon i {
  font-size: 1.5rem;
  color: var(--white);
}
main.home .hero .hero-content .hero-image .image-container .floating-card .card-content .card-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
main.home .hero .hero-content .hero-image .image-container .floating-card .card-content .card-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text);
}
@media (max-width: 999px) {
  main.home .hero .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  main.home .hero .hero-content .hero-text {
    order: 2;
  }
  main.home .hero .hero-content .hero-image {
    order: 1;
  }
  main.home .hero .hero-content .hero-image .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1.5rem;
    display: inline-flex;
  }
}
main.home .about {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
main.home .about .bg-asset {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><linearGradient id="treeGrad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(25,90,112,0.05);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(46,139,87,0.03);stop-opacity:1" /></linearGradient></defs><g fill="url(%23treeGrad)"><path d="M100 20 Q80 40 85 60 Q70 80 80 100 Q60 120 70 140 Q50 160 100 180 Q150 160 130 140 Q140 120 120 100 Q130 80 115 60 Q120 40 100 20z"/><circle cx="100" cy="30" r="8"/><circle cx="90" cy="50" r="6"/><circle cx="110" cy="45" r="5"/><circle cx="85" cy="70" r="7"/><circle cx="115" cy="75" r="6"/><circle cx="75" cy="95" r="5"/><circle cx="125" cy="90" r="8"/><circle cx="80" cy="115" r="6"/><circle cx="120" cy="120" r="7"/><circle cx="70" cy="140" r="5"/><circle cx="130" cy="135" r="6"/></g></svg>') no-repeat center;
  background-size: contain;
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}
main.home .about .absolute-asset {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.3;
}
main.home .about .absolute-asset img {
  position: absolute;
  bottom: 0;
  right: 0;
}
main.home .about .content {
  position: relative;
  z-index: 2;
}
main.home .about .about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}
main.home .about .about-grid .about-text .text-block {
  background: var(--white);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
main.home .about .about-grid .about-text .text-block:hover {
  border-color: var(--primary);
  box-shadow: 0 5px 20px rgba(var(--primary-rgb), 0.1);
  transform: translateY(-2px);
}
main.home .about .about-grid .about-text .text-block .text-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
main.home .about .about-grid .about-text .text-block .text-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}
main.home .about .about-grid .about-text .text-block .text-header .expand-button {
  background: rgba(var(--primary-rgb), 0.1);
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--primary);
  font-size: 0.875rem;
  flex-shrink: 0;
}
main.home .about .about-grid .about-text .text-block .text-header .expand-button:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}
main.home .about .about-grid .about-text .text-block .text-content {
  max-height: 2.8rem;
  /* Show less content when closed */
  overflow: hidden;
  transition: max-height 0.3s ease;
  position: relative;
}
main.home .about .about-grid .about-text .text-block .text-content p {
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}
main.home .about .about-grid .about-text .text-block .text-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1em;
  background: linear-gradient(transparent, var(--white));
  transition: opacity 0.3s ease;
}
main.home .about .about-grid .about-text .text-block.expanded .text-content {
  max-height: 100%;
  /* Show full content when expanded */
}
main.home .about .about-grid .about-text .text-block.expanded .text-content::after {
  opacity: 0;
}
main.home .about .about-grid .about-text .text-block.expanded .expand-button {
  transform: rotate(90deg);
  background: var(--primary);
  color: var(--white);
}
main.home .about .about-grid .about-visual .visual-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 2rem;
  border-radius: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  transition: transform 0.3s ease;
}
main.home .about .about-grid .about-visual .visual-card:hover {
  transform: translateY(-5px);
}
main.home .about .about-grid .about-visual .visual-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
main.home .about .about-grid .about-visual .visual-card .card-header h4 {
  font-size: 1.25rem;
  font-weight: 600;
}
main.home .about .about-grid .about-visual .visual-card .card-header i {
  font-size: 1.5rem;
  opacity: 0.8;
}
main.home .about .about-grid .about-visual .visual-card p {
  line-height: 1.6;
  opacity: 0.95;
}
@media (max-width: 999px) {
  main.home .about .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
main.home .about .achievements-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0;
}
main.home .about .achievements-stats .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(var(--primary-rgb), 0.2);
  border-radius: 1rem;
  transition: transform 0.3s ease;
}
main.home .about .achievements-stats .stat-item:hover {
  transform: translateY(-3px);
}
main.home .about .achievements-stats .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}
main.home .about .achievements-stats .stat-item .stat-label {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}
@media (max-width: 999px) {
  main.home .about .achievements-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  main.home .about .achievements-stats .stat-item {
    padding: 1rem;
  }
  main.home .about .achievements-stats .stat-item .stat-number {
    font-size: 2rem;
  }
}
@media (max-width: 599px) {
  main.home .about .achievements-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  main.home .about .achievements-stats .stat-item .stat-number {
    font-size: 2.5rem;
  }
}
main.home .about .about-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(var(--primary-rgb), 0.1);
}
main.home .credentials {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafb 0%, #eef2f5 100%);
  position: relative;
  overflow: hidden;
}
main.home .credentials:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(25,90,112,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/>') no-repeat center;
  pointer-events: none;
}
main.home .credentials .content {
  position: relative;
  z-index: 2;
}
main.home .credentials .credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
main.home .credentials .credentials-grid .credential-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 25px rgba(var(--black-rgb), 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  position: relative;
  overflow: hidden;
}
main.home .credentials .credentials-grid .credential-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
main.home .credentials .credentials-grid .credential-card:nth-child(1) .card-icon {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
}
main.home .credentials .credentials-grid .credential-card:nth-child(2) .card-icon {
  background: linear-gradient(135deg, #059669, #10b981);
}
main.home .credentials .credentials-grid .credential-card:nth-child(3) .card-icon {
  background: linear-gradient(135deg, #dc2626, #ef4444);
}
main.home .credentials .credentials-grid .credential-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(var(--black-rgb), 0.15);
  border-color: var(--primary);
}
main.home .credentials .credentials-grid .credential-card:hover:before {
  transform: scaleX(1);
}
main.home .credentials .credentials-grid .credential-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.3);
}
main.home .credentials .credentials-grid .credential-card:hover h3 {
  color: var(--secondary);
  transform: translateX(5px);
}
main.home .credentials .credentials-grid .credential-card:hover ul li {
  transform: translateX(3px);
}
main.home .credentials .credentials-grid .credential-card:hover ul li:before {
  background: var(--secondary);
  transform: scale(1.2);
}
main.home .credentials .credentials-grid .credential-card .card-icon {
  width: 4.5rem;
  height: 4.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
}
main.home .credentials .credentials-grid .credential-card .card-icon i {
  font-size: 2.25rem;
  color: var(--white);
  transition: transform 0.3s ease;
}
main.home .credentials .credentials-grid .credential-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
main.home .credentials .credentials-grid .credential-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
main.home .credentials .credentials-grid .credential-card ul li {
  padding: 0.75rem 0;
  color: var(--text);
  position: relative;
  padding-left: 2rem;
  line-height: 1.6;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.05);
}
main.home .credentials .credentials-grid .credential-card ul li:last-child {
  border-bottom: none;
}
main.home .credentials .credentials-grid .credential-card ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  background: var(--secondary);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
}
main.home .credentials .credentials-grid .credential-card ul li:nth-child(odd) {
  background: rgba(var(--primary-rgb), 0.02);
  border-radius: 0.5rem;
  margin: 0.25rem 0;
  padding: 0.75rem 0 0.75rem 2rem;
}
main.home .credentials .credentials-grid .credential-card:hover .card-icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
  background: rgba(var(--white-rgb), 0.3);
  transform: translate(-50%, -50%) scale(0);
  animation: pulseIcon 0.6s ease-out;
}
@media (max-width: 999px) {
  main.home .credentials .credentials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (min-width: 600px) and (max-width: 999px) {
  main.home .credentials .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
main.home .services {
  padding: 6rem 0;
  background: var(--white);
}
main.home .services .services-slider {
  position: relative;
  margin-top: 3rem;
}
main.home .services .services-slider .swiper-container {
  overflow: hidden;
  padding-bottom: 0;
}
main.home .services .services-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
main.home .services .services-slider .swiper-slide {
  height: auto;
  display: flex;
}
main.home .services .services-slider .swiper-slide .service-card {
  width: 100%;
  height: 100%;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 2px solid rgba(var(--primary-rgb), 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
main.home .services .services-slider .swiper-slide .service-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
main.home .services .services-slider .swiper-slide .service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.15);
}
main.home .services .services-slider .swiper-slide .service-card:hover:before {
  opacity: 1;
}
main.home .services .services-slider .swiper-slide .service-card:hover .service-icon,
main.home .services .services-slider .swiper-slide .service-card:hover h3,
main.home .services .services-slider .swiper-slide .service-card:hover p,
main.home .services .services-slider .swiper-slide .service-card:hover .service-features {
  color: var(--white);
  position: relative;
  z-index: 2;
}
main.home .services .services-slider .swiper-slide .service-card:hover .service-icon {
  background: rgba(var(--white-rgb), 0.2);
}
main.home .services .services-slider .swiper-slide .service-card:hover .service-icon i {
  color: var(--white);
}
main.home .services .services-slider .swiper-slide .service-card:hover .service-features span {
  background: rgba(var(--white-rgb), 0.2);
  color: var(--white);
}
main.home .services .services-slider .swiper-slide .service-card .service-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}
main.home .services .services-slider .swiper-slide .service-card .service-icon i {
  font-size: 2rem;
  color: var(--primary);
  transition: color 0.4s ease;
}
main.home .services .services-slider .swiper-slide .service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}
main.home .services .services-slider .swiper-slide .service-card p {
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
  flex-grow: 1;
}
main.home .services .services-slider .swiper-slide .service-card .service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
}
main.home .services .services-slider .swiper-slide .service-card .service-features span {
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.4s ease;
}
main.home .services .services-slider .swiper-slide .service-card .service-button {
  margin-top: auto;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  font-size: 0.95rem;
  padding: 0.875rem 1.5rem;
  border-radius: 1rem;
}
main.home .services .services-slider .swiper-slide .service-card .service-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}
main.home .services .services-slider .swiper-button-next,
main.home .services .services-slider .swiper-button-prev {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
  transition: all 0.3s ease;
  top: 50%;
  margin-top: -1.75rem;
}
main.home .services .services-slider .swiper-button-next:after,
main.home .services .services-slider .swiper-button-prev:after {
  font-size: 0.875rem;
  font-weight: 700;
}
main.home .services .services-slider .swiper-button-next svg,
main.home .services .services-slider .swiper-button-prev svg {
  width: 0.625rem;
  height: 1rem;
}
main.home .services .services-slider .swiper-button-next {
  right: -1rem;
}
main.home .services .services-slider .swiper-button-prev {
  left: -1rem;
}
main.home .services .services-slider .swiper-pagination {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  position: relative;
}
main.home .services .services-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--primary);
  margin: 0 5px;
  border-radius: 50%;
  opacity: 0.3;
  transition: all 0.3s ease;
  cursor: pointer;
}
main.home .services .services-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}
@media (max-width: 999px) {
  main.home .services .services-slider .swiper-button-next,
  main.home .services .services-slider .swiper-button-prev {
    display: none;
  }
  main.home .services .services-slider .swiper-pagination {
    margin-top: 2rem;
  }
}
main.home .services .services-grid {
  display: none;
}
main.home .study-case {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f9fbfc 0%, #eef2f5 100%);
  position: relative;
  overflow: hidden;
}
main.home .study-case:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="studyPattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.2" fill="rgba(25,90,112,0.05)"/><circle cx="15" cy="45" r="0.8" fill="rgba(46,139,87,0.03)"/><circle cx="45" cy="15" r="1" fill="rgba(25,90,112,0.04)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23studyPattern)"/></svg>') repeat;
  animation: studyPatternFloat 40s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
main.home .study-case .content {
  position: relative;
  z-index: 2;
}
main.home .study-case .study-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
  align-items: start;
}
@media (max-width: 1200px) {
  main.home .study-case .study-grid {
    gap: 3rem;
  }
}
@media (max-width: 999px) {
  main.home .study-case .study-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
main.home .study-case .case-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
main.home .study-case .case-card {
  background: var(--white);
  border-radius: 2rem;
  box-shadow: 0 8px 30px rgba(var(--black-rgb), 0.08);
  border: 2px solid rgba(var(--primary-rgb), 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
main.home .study-case .case-card:hover, main.home .study-case .case-card.open {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.15);
  border-color: var(--primary);
}
main.home .study-case .case-card:hover:before, main.home .study-case .case-card.open:before {
  transform: scaleX(1);
}
main.home .study-case .case-card:hover .card-header, main.home .study-case .case-card.open .card-header {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--secondary-rgb), 0.03));
}
main.home .study-case .case-card:hover .card-header h3, main.home .study-case .case-card.open .card-header h3 {
  color: var(--secondary);
  transform: translateX(3px);
}
main.home .study-case .case-card:hover .card-header > i, main.home .study-case .case-card.open .card-header > i {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  box-shadow: 0 6px 20px rgba(var(--secondary-rgb), 0.3);
}
main.home .study-case .case-card.open .case-toggle i {
  transform: rotate(180deg);
}
main.home .study-case .case-card .card-header {
  padding: 2.5rem 2.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
main.home .study-case .case-card .card-header > i {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
}
main.home .study-case .case-card .card-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  flex: 1;
  transition: all 0.3s ease;
  line-height: 1.3;
}
main.home .study-case .case-card .card-header .case-toggle {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(var(--primary-rgb), 0.1);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
main.home .study-case .case-card .card-header .case-toggle:hover {
  background: var(--primary);
  transform: scale(1.1);
}
main.home .study-case .case-card .card-header .case-toggle:hover i {
  color: var(--white);
}
main.home .study-case .case-card .card-header .case-toggle i {
  font-size: 1rem;
  color: var(--primary);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  main.home .study-case .case-card .card-header {
    padding: 2rem 2rem 1.5rem;
    gap: 1rem;
  }
  main.home .study-case .case-card .card-header > i {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }
  main.home .study-case .case-card .card-header h3 {
    font-size: 1.25rem;
  }
  main.home .study-case .case-card .card-header .case-toggle {
    width: 2.25rem;
    height: 2.25rem;
  }
}
main.home .study-case .case-card .case-body {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: rgba(var(--primary-rgb), 0.02);
}
main.home .study-case .case-card .case-body .case-list {
  list-style: none;
  padding: 0 2.5rem 2.5rem;
  margin: 0;
}
main.home .study-case .case-card .case-body .case-list li {
  position: relative;
  padding: 1rem 0 1rem 2rem;
  color: var(--text);
  line-height: 1.7;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
  transition: all 0.3s ease;
}
main.home .study-case .case-card .case-body .case-list li:last-child {
  border-bottom: none;
}
main.home .study-case .case-card .case-body .case-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.4rem;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  transition: all 0.3s ease;
}
main.home .study-case .case-card .case-body .case-list li:hover {
  transform: translateX(5px);
  color: var(--primary);
}
main.home .study-case .case-card .case-body .case-list li:hover:before {
  transform: scale(1.5);
  box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.4);
}
@media (max-width: 768px) {
  main.home .study-case .case-card .case-body .case-list {
    padding: 0 2rem 2rem;
  }
  main.home .study-case .case-card .case-body .case-list li {
    font-size: 0.9rem;
    padding: 0.875rem 0 0.875rem 1.75rem;
  }
}
main.home .study-case .case-card.open .case-body {
  max-height: 1000px;
}
@media (max-width: 768px) {
  main.home .study-case .case-card {
    border-radius: 1.5rem;
  }
}
main.home .study-case .case-aside {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 120px;
}
@media (max-width: 999px) {
  main.home .study-case .case-aside {
    position: static;
    order: -1;
  }
}
main.home .study-case .case-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}
main.home .study-case .case-stats .stat-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(var(--primary-rgb), 0.1);
  box-shadow: 0 4px 15px rgba(var(--black-rgb), 0.05);
}
main.home .study-case .case-stats .stat-card:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--secondary-rgb), 0.03));
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.15);
}
main.home .study-case .case-stats .stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
  transition: all 0.3s ease;
}
main.home .study-case .case-stats .stat-card .stat-label {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
  opacity: 0.8;
}
main.home .study-case .case-stats .stat-card:hover .stat-number {
  transform: scale(1.1);
  text-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.3);
}
@media (max-width: 768px) {
  main.home .study-case .case-stats {
    gap: 1rem;
  }
  main.home .study-case .case-stats .stat-card {
    padding: 1.25rem;
  }
  main.home .study-case .case-stats .stat-card .stat-number {
    font-size: 2rem;
  }
  main.home .study-case .case-stats .stat-card .stat-label {
    font-size: 0.85rem;
  }
}
main.home .study-case .case-figure {
  background: var(--white);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(var(--black-rgb), 0.08);
  border: 2px solid rgba(var(--primary-rgb), 0.08);
  transition: all 0.4s ease;
  position: relative;
  padding: 0;
  margin: 0;
}
main.home .study-case .case-figure:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.15);
  border-color: var(--primary);
}
main.home .study-case .case-figure:hover img {
  transform: scale(1.05);
}
main.home .study-case .case-figure:hover figcaption {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
}
main.home .study-case .case-figure img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.4s ease;
}
main.home .study-case .case-figure figcaption {
  padding: 1.5rem;
  text-align: center;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: rgba(var(--primary-rgb), 0.05);
}
@media (max-width: 768px) {
  main.home .study-case .case-figure img {
    height: 250px;
  }
  main.home .study-case .case-figure figcaption {
    padding: 1.25rem;
    font-size: 1rem;
  }
}
main.home .study-case .highlight-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  main.home .study-case .highlight-cards-container {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
main.home .study-case .highlight-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 2rem;
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}
main.home .study-case .highlight-card:nth-child(1) {
  background: linear-gradient(135deg, #195a70, #0c89b3);
}
main.home .study-case .highlight-card:nth-child(2) {
  background: linear-gradient(135deg, #90b9a3, #358f5f);
}
main.home .study-case .highlight-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100"><defs><pattern id="highlightPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23highlightPattern)"/>') repeat;
  pointer-events: none;
  animation: highlightPatternFloat 25s ease-in-out infinite;
  z-index: 1;
}
main.home .study-case .highlight-card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(var(--white-rgb), 0.3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 3;
}
main.home .study-case .highlight-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 50px rgba(var(--black-rgb), 0.25);
  border-color: rgba(var(--white-rgb), 0.3);
}
main.home .study-case .highlight-card:hover:after {
  transform: scaleX(1);
}
main.home .study-case .highlight-card:hover:before {
  animation-duration: 15s;
}
main.home .study-case .highlight-card:hover .highlight-icon {
  transform: scale(1.2) rotate(5deg);
  background: rgba(var(--white-rgb), 0.25);
  box-shadow: 0 8px 25px rgba(var(--black-rgb), 0.3);
}
main.home .study-case .highlight-card:hover p {
  transform: translateY(-2px);
}
main.home .study-case .highlight-card .highlight-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(var(--white-rgb), 0.15);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--white-rgb), 0.2);
}
main.home .study-case .highlight-card .highlight-icon i {
  font-size: 1.5rem;
  color: var(--white);
  transition: all 0.3s ease;
}
main.home .study-case .highlight-card p {
  margin: 0;
  line-height: 1.7;
  font-size: 0.95rem;
  opacity: 0.95;
  position: relative;
  z-index: 2;
  font-style: italic;
  transition: all 0.3s ease;
  font-weight: 400;
}
@media (max-width: 768px) {
  main.home .study-case .highlight-card {
    padding: 1.75rem;
  }
  main.home .study-case .highlight-card .highlight-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.25rem;
  }
  main.home .study-case .highlight-card .highlight-icon i {
    font-size: 1.25rem;
  }
  main.home .study-case .highlight-card p {
    font-size: 0.9rem;
  }
}
@keyframes studyPatternFloat {
  0%, 100% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  25% {
    transform: translateX(15px) translateY(-10px) rotate(1deg);
  }
  50% {
    transform: translateX(0) translateY(-20px) rotate(0deg);
  }
  75% {
    transform: translateX(-15px) translateY(-5px) rotate(-1deg);
  }
}
@keyframes highlightPatternFloat {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(-10px) translateY(-5px);
  }
}
@media (max-width: 999px) {
  main.home .study-case {
    padding: 5rem 0;
  }
  main.home .study-case .study-grid {
    margin-top: 3rem;
  }
}
@media (max-width: 768px) {
  main.home .study-case {
    padding: 4rem 0;
  }
  main.home .study-case .case-column {
    gap: 1.5rem;
  }
  main.home .study-case .case-aside {
    gap: 1.5rem;
  }
}
main.home .contact {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
}
main.home .contact:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contactPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23contactPattern)"/>') no-repeat center;
  pointer-events: none;
}
main.home .contact .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 2;
}
main.home .contact .contact-grid .contact-info .section-header .section-tag {
  background: rgba(var(--white-rgb), 0.15);
  color: var(--white);
  border: 1px solid rgba(var(--white-rgb), 0.2);
  backdrop-filter: blur(10px);
}
main.home .contact .contact-grid .contact-info .section-header h2 {
  color: var(--white);
}
main.home .contact .contact-grid .contact-info .section-header p {
  color: rgba(var(--white-rgb), 0.9);
}
main.home .contact .contact-grid .contact-info .contact-details {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
main.home .contact .contact-grid .contact-info .contact-details .contact-item {
  background: rgba(var(--white-rgb), 0.1);
  border: 1px solid rgba(var(--white-rgb), 0.15);
  border-radius: 1rem;
  padding: 1.5rem;
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
main.home .contact .contact-grid .contact-info .contact-details .contact-item:visited {
  color: inherit;
}
main.home .contact .contact-grid .contact-info .contact-details .contact-item:hover {
  transform: translateY(-3px);
  background: rgba(var(--white-rgb), 0.15);
  border-color: rgba(var(--white-rgb), 0.3);
  box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.2);
}
main.home .contact .contact-grid .contact-info .contact-details .contact-item:hover:before {
  opacity: 1;
}
main.home .contact .contact-grid .contact-info .contact-details .contact-item:hover .contact-icon {
  transform: scale(1.1);
  background: var(--white);
}
main.home .contact .contact-grid .contact-info .contact-details .contact-item:hover .contact-icon i {
  color: var(--primary);
}
main.home .contact .contact-grid .contact-info .contact-details .contact-item.highlight {
  background: rgba(var(--white-rgb), 0.15);
  border-color: rgba(var(--white-rgb), 0.25);
}
main.home .contact .contact-grid .contact-info .contact-details .contact-item.highlight .contact-icon {
  background: rgba(var(--white-rgb), 0.2);
}
main.home .contact .contact-grid .contact-info .contact-details .contact-item.special .contact-icon {
  background: linear-gradient(45deg, #ff6b6b, #feca57);
}
main.home .contact .contact-grid .contact-info .contact-details .contact-item .contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(var(--white-rgb), 0.15);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
main.home .contact .contact-grid .contact-info .contact-details .contact-item .contact-icon i {
  font-size: 1.5rem;
  color: var(--white);
  transition: color 0.3s ease;
}
main.home .contact .contact-grid .contact-info .contact-details .contact-item .contact-content h4 {
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
main.home .contact .contact-grid .contact-info .contact-details .contact-item .contact-content p {
  color: rgba(var(--white-rgb), 0.9);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
main.home .contact .contact-grid .contact-info .contact-details .contact-item .contact-content p strong {
  color: var(--white);
  font-weight: 600;
}
main.home .contact .contact-grid .contact-info .contact-details .contact-item .contact-content p .whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #25d366;
  font-weight: 500;
  text-decoration: none;
}
main.home .contact .contact-grid .contact-info .contact-details .contact-item .contact-content p .whatsapp:visited {
  color: #25d366;
}
main.home .contact .contact-grid .contact-info .contact-details .contact-item .contact-content p .whatsapp i {
  font-size: 1rem;
}
main.home .contact .contact-grid .contact-info .contact-details .contact-item .contact-content p .schedule-item {
  display: inline-block;
  margin-bottom: 0.25rem;
}
main.home .contact .contact-grid .contact-info .contact-details .contact-item .contact-content .contact-extra {
  display: inline-block;
  background: rgba(var(--white-rgb), 0.1);
  color: rgba(var(--white-rgb), 0.8);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(var(--white-rgb), 0.1);
}
main.home .contact .contact-grid .contact-form {
  background: var(--white);
  border-radius: 2rem;
  box-shadow: 0 20px 60px rgba(var(--black-rgb), 0.15);
  position: relative;
  overflow: hidden;
}
main.home .contact .contact-grid .contact-form .form-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
main.home .contact .contact-grid .contact-form .form-background .animated-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  animation: blobAnimation 8s ease-in-out infinite;
}
main.home .contact .contact-grid .contact-form .form-background .animated-blob.blob-1 {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  top: -50px;
  left: -50px;
  animation-delay: 0s;
}
main.home .contact .contact-grid .contact-form .form-background .animated-blob.blob-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  bottom: -30px;
  right: -30px;
  animation-delay: 2s;
}
main.home .contact .contact-grid .contact-form .form-background .animated-blob.blob-3 {
  width: 100px;
  height: 100px;
  background: linear-gradient(225deg, #74b9ff, #0984e3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}
main.home .contact .contact-grid .contact-form .appointment-form {
  position: relative;
  z-index: 2;
  padding: 3rem;
}
main.home .contact .contact-grid .contact-form .appointment-form .form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
main.home .contact .contact-grid .contact-form .appointment-form .form-header .form-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.3);
}
main.home .contact .contact-grid .contact-form .appointment-form .form-header .form-icon i {
  font-size: 2rem;
  color: var(--white);
}
main.home .contact .contact-grid .contact-form .appointment-form .form-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
main.home .contact .contact-grid .contact-form .appointment-form .form-header p {
  color: var(--text);
  font-size: 1.1rem;
  opacity: 0.8;
}
main.home .contact .contact-grid .contact-form .appointment-form .form-group {
  margin-bottom: 2rem;
}
main.home .contact .contact-grid .contact-form .appointment-form .form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
}
main.home .contact .contact-grid .contact-form .appointment-form .form-group .input-wrapper,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .select-wrapper,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .textarea-wrapper {
  position: relative;
}
main.home .contact .contact-grid .contact-form .appointment-form .form-group .input-wrapper i,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .select-wrapper i,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .textarea-wrapper i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1.1rem;
  z-index: 2;
  transition: all 0.3s ease;
}
main.home .contact .contact-grid .contact-form .appointment-form .form-group .input-wrapper input,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .input-wrapper select,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .input-wrapper textarea,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .select-wrapper input,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .select-wrapper select,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .select-wrapper textarea,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .textarea-wrapper input,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .textarea-wrapper select,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .textarea-wrapper textarea {
  width: 100%;
  padding: 1.25rem 1rem 1.25rem 3rem;
  border: 2px solid rgba(var(--primary-rgb), 0.15);
  border-radius: 1rem;
  font-family: var(--font);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(var(--white-rgb), 0.9);
  backdrop-filter: blur(10px);
  color: var(--text);
}
main.home .contact .contact-grid .contact-form .appointment-form .form-group .input-wrapper input::placeholder,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .input-wrapper select::placeholder,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .input-wrapper textarea::placeholder,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .select-wrapper input::placeholder,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .select-wrapper select::placeholder,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .select-wrapper textarea::placeholder,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .textarea-wrapper input::placeholder,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .textarea-wrapper select::placeholder,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .textarea-wrapper textarea::placeholder {
  color: rgba(var(--text-rgb), 0.5);
}
main.home .contact .contact-grid .contact-form .appointment-form .form-group .input-wrapper input:focus,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .input-wrapper select:focus,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .input-wrapper textarea:focus,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .select-wrapper input:focus,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .select-wrapper select:focus,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .select-wrapper textarea:focus,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .textarea-wrapper input:focus,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .textarea-wrapper select:focus,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .textarea-wrapper textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
  background: var(--white);
}
main.home .contact .contact-grid .contact-form .appointment-form .form-group .input-wrapper input:focus + i,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .input-wrapper select:focus + i,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .input-wrapper textarea:focus + i,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .select-wrapper input:focus + i,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .select-wrapper select:focus + i,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .select-wrapper textarea:focus + i,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .textarea-wrapper input:focus + i,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .textarea-wrapper select:focus + i,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .textarea-wrapper textarea:focus + i {
  color: var(--secondary);
  transform: translateY(-50%) scale(1.1);
}
main.home .contact .contact-grid .contact-form .appointment-form .form-group .input-wrapper input:hover,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .input-wrapper select:hover,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .input-wrapper textarea:hover,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .select-wrapper input:hover,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .select-wrapper select:hover,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .select-wrapper textarea:hover,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .textarea-wrapper input:hover,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .textarea-wrapper select:hover,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .textarea-wrapper textarea:hover {
  border-color: rgba(var(--primary-rgb), 0.3);
}
main.home .contact .contact-grid .contact-form .appointment-form .form-group .input-wrapper textarea,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .select-wrapper textarea,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .textarea-wrapper textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 1.25rem;
}
main.home .contact .contact-grid .contact-form .appointment-form .form-group .input-wrapper textarea + i,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .select-wrapper textarea + i,
main.home .contact .contact-grid .contact-form .appointment-form .form-group .textarea-wrapper textarea + i {
  top: 1.25rem;
  transform: none;
}
main.home .contact .contact-grid .contact-form .appointment-form .form-group .select-wrapper .select-arrow {
  left: auto;
  right: 1rem;
  pointer-events: none;
  transition: transform 0.3s ease;
}
main.home .contact .contact-grid .contact-form .appointment-form .form-group .select-wrapper select:focus + .select-arrow {
  transform: rotate(180deg);
}
main.home .contact .contact-grid .contact-form .appointment-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 599px) {
  main.home .contact .contact-grid .contact-form .appointment-form .form-row {
    grid-template-columns: 1fr;
  }
}
main.home .contact .contact-grid .contact-form .appointment-form .form-submit {
  position: relative;
  overflow: hidden;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.25rem 2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}
main.home .contact .contact-grid .contact-form .appointment-form .form-submit .button-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(var(--white-rgb), 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}
main.home .contact .contact-grid .contact-form .appointment-form .form-submit:hover .button-ripple {
  width: 300px;
  height: 300px;
}
main.home .contact .contact-grid .contact-form .appointment-form .form-submit:active {
  transform: scale(0.98);
}
main.home .contact .contact-grid .contact-form .appointment-form .form-footer {
  margin-top: 2rem;
  text-align: center;
}
main.home .contact .contact-grid .contact-form .appointment-form .form-footer .privacy-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(var(--text-rgb), 0.7);
  font-size: 0.9rem;
}
main.home .contact .contact-grid .contact-form .appointment-form .form-footer .privacy-note i {
  color: var(--secondary);
  font-size: 1rem;
}
@media (max-width: 999px) {
  main.home .contact .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  main.home .contact .contact-grid .contact-form .appointment-form {
    padding: 2rem;
  }
}
main.home .location {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}
main.home .location .content {
  position: relative;
  z-index: 2;
}
main.home .location .location-map-wrapper {
  margin-top: 3rem;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(var(--black-rgb), 0.1);
  border: 2px solid rgba(var(--primary-rgb), 0.1);
  transition: all 0.3s ease;
  height: 500px;
  width: 100%;
}
main.home .location .location-map-wrapper:hover {
  box-shadow: 0 15px 50px rgba(var(--primary-rgb), 0.15);
  border-color: var(--primary);
  transform: translateY(-3px);
}
main.home .location .location-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
@media (max-width: 999px) {
  main.home .location .location-map-wrapper {
    height: 400px;
    border-radius: 1.5rem;
  }
}
@media (max-width: 599px) {
  main.home .location .location-map-wrapper {
    height: 350px;
    border-radius: 1rem;
    margin-top: 2rem;
  }
}
main.home .form-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 10000;
  background: transparent;
}
main.home .form-progress .progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #195a70, #8fb9a2);
  transition: width 0.25s ease;
}
main.home .appointment-form .error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15) !important;
}
main.home .appointment-form .error-message {
  display: block;
  margin-top: 6px;
  color: #dc3545;
  font-size: 0.85rem;
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}
main.home .notification.success {
  background: #28a745;
}
main.home .notification.info {
  background: #007bff;
}
main.home .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
main.home .section-header .section-tag {
  display: inline-block;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}
main.home .section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (max-width: 999px) {
  main.home .section-header h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 599px) {
  main.home .section-header h2 {
    font-size: 2rem;
  }
}
main.home .section-header p {
  font-size: 1.125rem;
  color: var(--text);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
main.home .timeline {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafb 0%, #eef2f5 100%);
  position: relative;
}
main.home .timeline .content {
  position: relative;
  z-index: 2;
}
main.home .timeline .timeline-slider {
  position: relative;
  margin-top: 4rem;
}
main.home .timeline .timeline-slider .swiper-container {
  padding: 2rem 0 4rem;
  overflow: hidden;
}
main.home .timeline .timeline-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
main.home .timeline .timeline-slider .swiper-slide {
  height: auto;
  display: flex;
}
main.home .timeline .timeline-slider .timeline-card {
  width: 100%;
  background: var(--white);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 8px 25px rgba(var(--black-rgb), 0.08);
  border: 2px solid rgba(var(--primary-rgb), 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-height: 500px;
}
main.home .timeline .timeline-slider .timeline-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
main.home .timeline .timeline-slider .timeline-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(var(--black-rgb), 0.12);
  border-color: var(--primary);
}
main.home .timeline .timeline-slider .timeline-card:hover:before {
  transform: scaleX(1);
}
main.home .timeline .timeline-slider .timeline-card:hover .timeline-date {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
}
main.home .timeline .timeline-slider .timeline-card:hover .timeline-image {
  transform: scale(1.05);
}
main.home .timeline .timeline-slider .timeline-card:hover .timeline-image img {
  transform: scale(1.1);
}
main.home .timeline .timeline-slider .timeline-card:hover .timeline-image .image-overlay {
  opacity: 1;
  transform: scale(1);
}
main.home .timeline .timeline-slider .timeline-card:hover .timeline-content h3 {
  color: var(--secondary);
  transform: translateX(5px);
}
main.home .timeline .timeline-slider .timeline-card:hover .timeline-tags span {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
main.home .timeline .timeline-slider .timeline-card .timeline-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}
main.home .timeline .timeline-slider .timeline-card .timeline-header .timeline-date {
  width: 120px;
  height: 120px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  border: 3px solid rgba(var(--primary-rgb), 0.2);
  transition: all 0.4s ease;
  flex-shrink: 0;
}
main.home .timeline .timeline-slider .timeline-card .timeline-header .timeline-image {
  width: 320px;
  height: 270px;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(var(--black-rgb), 0.12);
}
main.home .timeline .timeline-slider .timeline-card .timeline-header .timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}
main.home .timeline .timeline-slider .timeline-card .timeline-header .timeline-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.8), rgba(var(--secondary-rgb), 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}
main.home .timeline .timeline-slider .timeline-card .timeline-header .timeline-image .image-overlay i {
  font-size: 2.5rem;
  color: var(--white);
}
main.home .timeline .timeline-slider .timeline-card .timeline-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
main.home .timeline .timeline-slider .timeline-card .timeline-content h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  line-height: 1.3;
}
main.home .timeline .timeline-slider .timeline-card .timeline-content p {
  color: var(--text);
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
main.home .timeline .timeline-slider .timeline-card .timeline-content .timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}
main.home .timeline .timeline-slider .timeline-card .timeline-content .timeline-tags span {
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
}
@media (max-width: 999px) {
  main.home .timeline .timeline-slider .timeline-card {
    padding: 2.5rem;
    min-height: 450px;
  }
  main.home .timeline .timeline-slider .timeline-card .timeline-header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
  }
  main.home .timeline .timeline-slider .timeline-card .timeline-date {
    width: 100px;
    height: 100px;
    font-size: 1.25rem;
  }
  main.home .timeline .timeline-slider .timeline-card .timeline-image {
    width: 180px;
    height: 120px;
  }
}
@media (max-width: 599px) {
  main.home .timeline .timeline-slider .timeline-card {
    padding: 2rem;
    min-height: 400px;
  }
  main.home .timeline .timeline-slider .timeline-card .timeline-date {
    width: 80px;
    height: 80px;
    font-size: 1.1rem;
  }
  main.home .timeline .timeline-slider .timeline-card .timeline-image {
    width: 150px;
    height: 100px;
  }
  main.home .timeline .timeline-slider .timeline-card .timeline-content h3 {
    font-size: 1.5rem;
  }
  main.home .timeline .timeline-slider .timeline-card .timeline-content p {
    font-size: 1rem;
  }
}
main.home .timeline .timeline-slider .swiper-button-next,
main.home .timeline .timeline-slider .swiper-button-prev {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
  transition: all 0.3s ease;
  top: 50%;
  margin-top: -1.75rem;
}
main.home .timeline .timeline-slider .swiper-button-next:after,
main.home .timeline .timeline-slider .swiper-button-prev:after {
  font-size: 0.875rem;
  font-weight: 700;
}
main.home .timeline .timeline-slider .swiper-button-next svg,
main.home .timeline .timeline-slider .swiper-button-prev svg {
  width: 0.625rem;
  height: 1rem;
}
main.home .timeline .timeline-slider .swiper-button-next {
  right: -1rem;
  top: 20%;
}
main.home .timeline .timeline-slider .swiper-button-prev {
  left: -1rem;
  top: 20%;
}
main.home .timeline .timeline-slider .swiper-pagination {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
main.home .timeline .timeline-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--primary);
  margin: 0 5px;
  border-radius: 50%;
  opacity: 0.3;
  transition: all 0.3s ease;
  cursor: pointer;
}
main.home .timeline .timeline-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}
@media (max-width: 999px) {
  main.home .timeline .timeline-slider .swiper-button-next {
    right: -0.5rem;
  }
  main.home .timeline .timeline-slider .swiper-button-prev {
    left: -0.5rem;
  }
  main.home .timeline .timeline-slider .swiper-pagination {
    margin-top: 2.5rem;
  }
}
main.home .faq {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f9fbfc 0%, #eef2f5 100%);
  position: relative;
  overflow: hidden;
}
main.home .faq:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="faqPattern" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="1.5" fill="rgba(25,90,112,0.04)"/><circle cx="20" cy="20" r="0.8" fill="rgba(46,139,87,0.03)"/><circle cx="60" cy="60" r="1" fill="rgba(25,90,112,0.03)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23faqPattern)"/></svg>') repeat;
  animation: faqPatternFloat 45s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
main.home .faq .content {
  position: relative;
  z-index: 2;
}
main.home .faq .faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
main.home .faq .faq-item {
  background: var(--white);
  border-radius: 1.25rem;
  border: 2px solid rgba(var(--primary-rgb), 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(var(--black-rgb), 0.05);
}
main.home .faq .faq-item:hover {
  border-color: rgba(var(--primary-rgb), 0.3);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.1);
  transform: translateY(-2px);
}
main.home .faq .faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.15);
}
main.home .faq .faq-item.active .faq-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
}
main.home .faq .faq-item.active .faq-header h4 {
  color: var(--white);
}
main.home .faq .faq-item.active .faq-header .toggle-icon {
  background: rgba(var(--white-rgb), 0.2);
  color: var(--white);
  transform: rotate(180deg);
}
main.home .faq .faq-item.active .faq-content {
  max-height: 200px;
  opacity: 1;
  padding: 1.5rem 2rem;
}
main.home .faq .faq-item .faq-header {
  padding: 1.75rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  background: var(--white);
}
main.home .faq .faq-item .faq-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}
main.home .faq .faq-item .faq-header .toggle-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
main.home .faq .faq-item .faq-header .toggle-icon:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}
main.home .faq .faq-item .faq-header .toggle-icon i {
  transition: transform 0.3s ease;
}
main.home .faq .faq-item .faq-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 2rem;
  background: rgba(var(--primary-rgb), 0.02);
}
main.home .faq .faq-item .faq-content p {
  color: var(--text);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}
main.home .faq .faq-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(var(--primary-rgb), 0.1);
}
main.home .faq .faq-cta p {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
main.home .faq .faq-cta .button {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
}
@media (max-width: 999px) {
  main.home .faq .faq-item .faq-header {
    padding: 1.5rem;
    gap: 1rem;
  }
  main.home .faq .faq-item .faq-header h4 {
    font-size: 1rem;
  }
  main.home .faq .faq-item .faq-header .toggle-icon {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
  }
  main.home .faq .faq-item.active .faq-content {
    padding: 1.25rem 1.5rem;
  }
}
@media (max-width: 599px) {
  main.home .faq .faq-item .faq-header {
    padding: 1.25rem;
  }
  main.home .faq .faq-item .faq-header h4 {
    font-size: 0.95rem;
  }
  main.home .faq .faq-item .faq-header .toggle-icon {
    width: 2rem;
    height: 2rem;
    font-size: 0.9rem;
  }
  main.home .faq .faq-item.active .faq-content {
    padding: 1rem 1.25rem;
  }
}
main.home .testimonials {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f9fbfc 0%, #eef2f5 100%);
  position: relative;
  overflow: hidden;
}
main.home .testimonials:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="testimonialsPattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="rgba(25,90,112,0.06)"/><circle cx="15" cy="15" r="0.8" fill="rgba(46,139,87,0.04)"/><circle cx="45" cy="45" r="1" fill="rgba(25,90,112,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23testimonialsPattern)"/></svg>') repeat;
  animation: testimonialsPatternFloat 50s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
main.home .testimonials .content {
  position: relative;
  z-index: 2;
}
main.home .testimonials .testimonials-container {
  position: relative;
  margin-top: 4rem;
}
main.home .testimonials .testimonials-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
main.home .testimonials .testimonials-background .floating-shapes {
  position: relative;
  width: 100%;
  height: 100%;
}
main.home .testimonials .testimonials-background .floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: floatingShapes 20s ease-in-out infinite;
}
main.home .testimonials .testimonials-background .floating-shapes .shape.shape-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}
main.home .testimonials .testimonials-background .floating-shapes .shape.shape-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  top: 20%;
  right: 10%;
  animation-delay: 5s;
}
main.home .testimonials .testimonials-background .floating-shapes .shape.shape-3 {
  width: 100px;
  height: 100px;
  background: linear-gradient(225deg, #74b9ff, #0984e3);
  bottom: 15%;
  left: 8%;
  animation-delay: 10s;
}
main.home .testimonials .testimonials-background .floating-shapes .shape.shape-4 {
  width: 90px;
  height: 90px;
  background: linear-gradient(315deg, #a29bfe, #6c5ce7);
  bottom: 25%;
  right: 15%;
  animation-delay: 15s;
}
main.home .testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
}
@media (max-width: 1200px) {
  main.home .testimonials .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  main.home .testimonials .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
main.home .testimonials .testimonials-grid .testimonial-card {
  background: var(--white);
  border-radius: 2rem;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(var(--black-rgb), 0.1);
  border: 2px solid rgba(var(--primary-rgb), 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
main.home .testimonials .testimonials-grid .testimonial-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.02), rgba(var(--secondary-rgb), 0.01));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}
main.home .testimonials .testimonials-grid .testimonial-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(var(--primary-rgb), 0.15);
  border-color: var(--primary);
}
main.home .testimonials .testimonials-grid .testimonial-card:hover:before {
  opacity: 1;
}
main.home .testimonials .testimonials-grid .testimonial-card:hover .patient-avatar {
  transform: scale(1.1);
}
main.home .testimonials .testimonials-grid .testimonial-card:hover .patient-avatar .avatar-overlay {
  opacity: 1;
  transform: scale(1);
}
main.home .testimonials .testimonials-grid .testimonial-card:hover .quote-icon {
  transform: scale(1.2) rotate(10deg);
  color: var(--secondary);
}
main.home .testimonials .testimonials-grid .testimonial-card:hover .result-metrics .metric {
  transform: translateY(-5px);
}
main.home .testimonials .testimonials-grid .testimonial-card:hover .result-metrics .metric .metric-value {
  color: var(--primary);
}
main.home .testimonials .testimonials-grid .testimonial-card.featured {
  grid-column: 1/-1;
  grid-template-columns: 1fr 2fr;
  display: grid;
  gap: 3rem;
  padding: 3rem;
  border: 3px solid var(--primary);
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.03), rgba(var(--secondary-rgb), 0.02));
}
@media (max-width: 768px) {
  main.home .testimonials .testimonials-grid .testimonial-card.featured {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
main.home .testimonials .testimonials-grid .testimonial-card.featured .card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
main.home .testimonials .testimonials-grid .testimonial-card.featured .card-header .patient-avatar {
  width: 120px;
  height: 120px;
}
main.home .testimonials .testimonials-grid .testimonial-card.featured .card-header .patient-info h4 {
  font-size: 1.5rem;
}
main.home .testimonials .testimonials-grid .testimonial-card.featured .card-header .treatment-tag {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}
main.home .testimonials .testimonials-grid .testimonial-card.featured .card-content .quote-icon {
  font-size: 3rem;
}
main.home .testimonials .testimonials-grid .testimonial-card.featured .card-content p {
  font-size: 1.25rem;
  line-height: 1.7;
}
main.home .testimonials .testimonials-grid .testimonial-card.featured .card-content .result-metrics {
  grid-template-columns: repeat(2, 1fr);
}
main.home .testimonials .testimonials-grid .testimonial-card .card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}
main.home .testimonials .testimonials-grid .testimonial-card .card-header .patient-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  transition: all 0.4s ease;
  border: 3px solid rgba(var(--primary-rgb), 0.2);
}
main.home .testimonials .testimonials-grid .testimonial-card .card-header .patient-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
main.home .testimonials .testimonials-grid .testimonial-card .card-header .patient-avatar .avatar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--primary-rgb), 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}
main.home .testimonials .testimonials-grid .testimonial-card .card-header .patient-avatar .avatar-overlay i {
  font-size: 1.5rem;
  color: var(--white);
}
main.home .testimonials .testimonials-grid .testimonial-card .card-header .patient-info {
  flex: 1;
}
main.home .testimonials .testimonials-grid .testimonial-card .card-header .patient-info h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
main.home .testimonials .testimonials-grid .testimonial-card .card-header .patient-info .patient-age {
  display: block;
  color: rgba(var(--text-rgb), 0.7);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
main.home .testimonials .testimonials-grid .testimonial-card .card-header .patient-info .treatment-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(var(--primary-rgb), 0.2);
}
main.home .testimonials .testimonials-grid .testimonial-card .card-header .patient-info .treatment-tag i {
  font-size: 1rem;
}
main.home .testimonials .testimonials-grid .testimonial-card .card-header .rating .stars {
  display: flex;
  gap: 0.25rem;
}
main.home .testimonials .testimonials-grid .testimonial-card .card-header .rating .stars i {
  color: #ffd700;
  font-size: 1.1rem;
}
main.home .testimonials .testimonials-grid .testimonial-card .card-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
}
main.home .testimonials .testimonials-grid .testimonial-card .card-content .quote-icon {
  font-size: 2.5rem;
  color: rgba(var(--primary-rgb), 0.3);
  margin-bottom: 1rem;
  transition: all 0.4s ease;
}
main.home .testimonials .testimonials-grid .testimonial-card .card-content p {
  color: var(--text);
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  flex: 1;
  font-style: italic;
}
main.home .testimonials .testimonials-grid .testimonial-card .card-content .result-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: auto;
}
main.home .testimonials .testimonials-grid .testimonial-card .card-content .result-metrics .metric {
  text-align: center;
  padding: 1rem;
  background: rgba(var(--primary-rgb), 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  transition: all 0.3s ease;
}
main.home .testimonials .testimonials-grid .testimonial-card .card-content .result-metrics .metric .metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}
main.home .testimonials .testimonials-grid .testimonial-card .card-content .result-metrics .metric .metric-label {
  font-size: 0.875rem;
  color: rgba(var(--text-rgb), 0.8);
}
main.home .testimonials .testimonials-stats {
  background: var(--white);
  border-radius: 2rem;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 15px 50px rgba(var(--black-rgb), 0.1);
  border: 2px solid rgba(var(--primary-rgb), 0.1);
  position: relative;
  overflow: hidden;
}
main.home .testimonials .testimonials-stats:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
main.home .testimonials .testimonials-stats .stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  main.home .testimonials .testimonials-stats .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  main.home .testimonials .testimonials-stats .stats-container {
    grid-template-columns: 1fr;
  }
}
main.home .testimonials .testimonials-stats .stats-container .stat-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: rgba(var(--primary-rgb), 0.03);
  transition: all 0.3s ease;
}
main.home .testimonials .testimonials-stats .stats-container .stat-item:hover {
  background: rgba(var(--primary-rgb), 0.08);
  transform: translateY(-5px);
}
main.home .testimonials .testimonials-stats .stats-container .stat-item:hover .stat-icon {
  transform: scale(1.2);
  background: var(--primary);
}
main.home .testimonials .testimonials-stats .stats-container .stat-item:hover .stat-icon i {
  color: var(--white);
}
main.home .testimonials .testimonials-stats .stats-container .stat-item .stat-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}
main.home .testimonials .testimonials-stats .stats-container .stat-item .stat-icon i {
  font-size: 2rem;
  color: var(--primary);
  transition: color 0.3s ease;
}
main.home .testimonials .testimonials-stats .stats-container .stat-item .stat-content .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
main.home .testimonials .testimonials-stats .stats-container .stat-item .stat-content .stat-label {
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
}
main.home .testimonials .testimonials-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 2rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
main.home .testimonials .testimonials-cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ctaPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23ctaPattern)"/></svg>') repeat;
  animation: ctaPatternFloat 30s ease-in-out infinite;
  pointer-events: none;
}
main.home .testimonials .testimonials-cta .cta-content {
  position: relative;
  z-index: 2;
}
main.home .testimonials .testimonials-cta .cta-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(var(--black-rgb), 0.2);
}
@media (max-width: 768px) {
  main.home .testimonials .testimonials-cta .cta-content h3 {
    font-size: 2rem;
  }
}
main.home .testimonials .testimonials-cta .cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
main.home .testimonials .testimonials-cta .cta-content .button {
  background: var(--white);
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.25rem 2.5rem;
  border-radius: 3rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.2);
}
main.home .testimonials .testimonials-cta .cta-content .button:hover {
  background: rgba(var(--white-rgb), 0.95);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(var(--black-rgb), 0.3);
}
@keyframes testimonialsPatternFloat {
  0%, 100% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  25% {
    transform: translateX(20px) translateY(-10px) rotate(1deg);
  }
  50% {
    transform: translateX(0) translateY(-20px) rotate(0deg);
  }
  75% {
    transform: translateX(-15px) translateY(-5px) rotate(-1deg);
  }
}
@keyframes floatingShapes {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(30px, -20px) rotate(90deg) scale(1.1);
  }
  50% {
    transform: translate(0, -40px) rotate(180deg) scale(0.9);
  }
  75% {
    transform: translate(-30px, -20px) rotate(270deg) scale(1.05);
  }
}
@keyframes ctaPatternFloat {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(-20px) translateY(-10px);
  }
}
@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
@keyframes faqPatternFloat {
  0%, 100% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  25% {
    transform: translateX(15px) translateY(-8px) rotate(1deg);
  }
  50% {
    transform: translateX(0) translateY(-15px) rotate(0deg);
  }
  75% {
    transform: translateX(-10px) translateY(-5px) rotate(-1deg);
  }
}
@keyframes heroPatternFloat {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) translateX(5px) rotate(0.5deg);
  }
  50% {
    transform: translateY(-20px) translateX(0) rotate(1deg);
  }
  75% {
    transform: translateY(-10px) translateX(-5px) rotate(0.5deg);
  }
}
@keyframes gridFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}
@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulseIcon {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}
@keyframes blobAnimation {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(20px, -30px) scale(1.1);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  75% {
    transform: translate(30px, 10px) scale(1.05);
  }
}
@media (max-width: 1200px) {
  main.home .content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 999px) {
  main.home .hero .hero-content .hero-text h1 {
    font-size: 3rem;
  }
  main.home .hero .hero-content .hero-image .image-container .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1.5rem;
    display: inline-flex;
  }
  main.home .section-header h2 {
    font-size: 2.5rem;
  }
  main.home .about,
  main.home .credentials,
  main.home .services,
  main.home .timeline,
  main.home .testimonials,
  main.home .contact,
  main.home .location,
  main.home .faq,
  main.home .study-case {
    padding: 5rem 0;
  }
  main.home .about .about-grid {
    gap: 2.25rem;
  }
  main.home .credentials .credentials-grid {
    gap: 2rem;
  }
  main.home .testimonials .testimonial-card {
    padding: 2.25rem;
  }
  main.home .timeline .timeline-card {
    padding: 2.75rem;
  }
}
@media (max-width: 767px) {
  main.home .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  main.home .hero,
  main.home .about,
  main.home .credentials,
  main.home .services,
  main.home .contact {
    padding: 4rem 0;
  }
  main.home .hero .hero-content .hero-text h1 {
    font-size: 2.5rem;
  }
  main.home .section-header h2 {
    font-size: 2rem;
  }
  main.home .services-grid {
    grid-template-columns: 1fr;
  }
  main.home .hero-buttons {
    flex-direction: column;
  }
  main.home .hero-buttons .button {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 479px) {
  main.home .hero .hero-content .hero-text h1 {
    font-size: 2rem;
  }
  main.home .section-header h2 {
    font-size: 1.75rem;
  }
  main.home .contact-form {
    padding: 1.5rem;
  }
  main.home .service-card,
  main.home .credential-card {
    padding: 1.5rem;
  }
  main.home .floating-card {
    flex-direction: column;
    text-align: center;
  }
  main.home .floating-card .card-content .card-number {
    font-size: 1.25rem;
  }
}
@media print {
  main.home .hero,
  main.home .contact-form,
  main.home header,
  main.home footer {
    display: none !important;
  }
  main.home .about,
  main.home .credentials,
  main.home .services {
    page-break-inside: avoid;
    padding: 2rem 0;
  }
  main.home .section-header h2 {
    color: #000 !important;
  }
  main.home .service-card,
  main.home .credential-card {
    box-shadow: none;
    border: 1px solid #ccc;
    margin-bottom: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  main.home *,
  main.home *::before,
  main.home *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (prefers-contrast: high) {
  main.home .button.primary {
    background: #000;
    color: #fff;
    border: 2px solid #fff;
  }
  main.home .button.secondary {
    background: #fff;
    color: #000;
    border: 2px solid #000;
  }
  main.home .service-card,
  main.home .credential-card {
    border: 2px solid #000;
  }
}
main.home .section-header {
  margin-bottom: 3.5rem;
}
main.home .about,
main.home .credentials,
main.home .services,
main.home .timeline,
main.home .testimonials,
main.home .contact,
main.home .location,
main.home .faq {
  padding: 7rem 0;
}
main.home .credentials {
  background: linear-gradient(135deg, #f9fbfc 0%, #eef2f5 100%);
}
main.home .timeline {
  background: linear-gradient(135deg, #f9fbfc 0%, #eef2f5 100%);
}
main.home .faq {
  background: linear-gradient(135deg, #f9fbfc 0%, #eef2f5 100%);
}
main.home .testimonials {
  background: linear-gradient(135deg, #f9fbfc 0%, #eef2f5 100%);
}
main.home .about .about-grid {
  gap: 4.5rem;
}
main.home .credentials .credentials-grid {
  gap: 2.5rem;
}
main.home .testimonials .testimonials-grid {
  gap: 2.25rem;
}
main.home .services .services-slider {
  margin-top: 3.5rem;
}
main.home .services .service-card {
  padding: 2.75rem;
}
main.home .credentials .credential-card {
  padding: 2.75rem;
}
main.home .timeline .timeline-card {
  padding: 3.25rem;
}
main.home .testimonials .testimonial-card {
  padding: 2.75rem;
}
main.home .contact .contact-form .appointment-form {
  padding: 3.25rem;
}
main.home .service-card,
main.home .credential-card,
main.home .timeline-card,
main.home .testimonial-card,
main.home .contact .contact-item,
main.home .study-case .case-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: transform;
}
@media (max-width: 999px) {
  main.home .section-header {
    margin-bottom: 3rem;
  }
  main.home .about,
  main.home .credentials,
  main.home .services,
  main.home .timeline,
  main.home .testimonials,
  main.home .contact,
  main.home .location,
  main.home .faq {
    padding: 5rem 0;
  }
  main.home .about .about-grid {
    gap: 2.25rem;
  }
  main.home .credentials .credentials-grid {
    gap: 2rem;
  }
  main.home .testimonials .testimonial-card {
    padding: 2.25rem;
  }
  main.home .timeline .timeline-card {
    padding: 2.75rem;
  }
}
@media (max-width: 599px) {
  main.home .section-header {
    margin-bottom: 2.5rem;
  }
  main.home .about,
  main.home .credentials,
  main.home .services,
  main.home .timeline,
  main.home .testimonials,
  main.home .contact,
  main.home .location,
  main.home .faq {
    padding: 4rem 0;
  }
  main.home .services .service-card,
  main.home .credentials .credential-card {
    padding: 2rem;
  }
  main.home .timeline .timeline-card {
    padding: 2.25rem;
  }
  main.home .testimonials .testimonial-card {
    padding: 2rem;
  }
}
main.home .contact .appointment-form .form-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  line-height: 1;
}
main.home .contact .appointment-form .form-submit .button-icon {
  transition: opacity 0.2s ease;
}
main.home .contact .appointment-form .form-submit .button-text {
  white-space: nowrap;
}

/*# sourceMappingURL=base.css.map */
