/* #region hero*/
.hero {
  background: linear-gradient(145deg, #004d47 0%, #00847d 50%, #006d66 100%);
  color: white;
}

.about-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 203, 189, 0.25);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 2px solid rgba(45, 203, 189, 0.5);
  box-shadow: 0 4px 15px rgba(45, 203, 189, 0.2);
}

@media (min-width: 768px) {
  .about-hero__tag {
    font-size: 16px;
    padding: 10px 24px;
  }
}

.about-hero__tag i {
  color: #2dcbbd;
  animation: heartbeat 1.5s ease-in-out infinite;
}

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

.about-hero__title {
  color: #ffffff;
  text-shadow:
    0 4px 30px rgba(0, 0, 0, 0.4),
    0 2px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
  font-size: 2.1rem;
}

@media (min-width: 768px) {
  .about-hero__title {
    font-size: 3rem;
  }
}

@media (min-width: 1200px) {
  .about-hero__title {
    font-size: 3.5rem;
  }
}

.about-hero__subtitle {
  color: #fff;
  margin-bottom: 0;
  text-align: center;
}

.about-hero__actions {
  display: flex;
  flex-direction: column;
  width: 95%;
  gap: 12px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .about-hero__actions {
    flex-direction: row;
    width: auto;
    gap: 16px;
  }
}

/* Hero Buttons - Extend base .button class */
.button--hero-primary,
.button--hero-outline {
  gap: 10px;
  width: 100%;
}

@media (min-width: 768px) {
  .button--hero-primary,
  .button--hero-outline {
    width: auto;
  }
}

.button--hero-primary {
  background: #2dcbbd;
  color: #00423d;
  border: 2px solid #2dcbbd;
  box-shadow: 0 4px 20px rgba(45, 203, 189, 0.4);
}

.button--hero-primary:hover {
  transform: translateY(-2px);
  background: #3dd4c6;
  border-color: #3dd4c6;
  box-shadow: 0 6px 25px rgba(45, 203, 189, 0.5);
}

.button--hero-outline {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.button--hero-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  transform: translateY(-2px);
}
/* #endregion */
/* #region intro */
.company-intro__image {
  width: 100%;
  margin-bottom: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .company-intro__image {
    float: right;
    width: 55%;
    margin-left: 30px;
    margin-bottom: 30px;
  }
}

.company-intro__image img {
  width: 100%;
  height: auto;
  display: block;
}

.company-intro__text strong {
  color: var(--primary-color);
  font-weight: 800;
}

/* Clearfix for floating image */
.company-intro__text::after {
  content: "";
  display: table;
  clear: both;
}
/* #endregion */
/* #region values*/
.values-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafa 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.values-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(45, 203, 189, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.values-section__header {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .values-section__header {
    margin-bottom: 40px;
  }
}
.values-section__tag {
  display: inline-block;
  padding: 5px 14px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--pure-white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(45, 203, 189, 0.3);
}
@media (min-width: 768px) {
  .values-section__tag {
    padding: 8px 24px;
    font-size: 14px;
  }
}

.values-section__title {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Two Grid for Mission & Vision */
.two-grid {
  display: grid;
  grid-template-columns: 1fr;
  padding-bottom: 0px;
}

@media (min-width: 768px) {
  .two-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mission & Vision Cards */

.mission-card {
  background: transparent;
  border-radius: 50px;
  padding: 0px 16px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@media (min-width: 768px) {
  .mission-card {
    padding: 0px 6px;
  }
}

.mission-card:hover {
  transform: translateY(-4px);
}

.mission-card:hover .mission-card__icon {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(0, 132, 125, 0.25);
}

.mission-card__header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mission-card__icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 16px;
  background: var(--pure-white);
  border: 3px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-color);
  box-shadow:
    0 6px 20px rgba(45, 203, 189, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .mission-card__icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
  }
}

@media (min-width: 1200px) {
  .mission-card__icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
  }
}

.mission-card--vision .mission-card__icon {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.mission-card__content {
  text-align: justify;
  text-align-last: center;
  max-width: 350px;
}

.mission-card__title {
  margin: 0px;
}

.mission-card--vision .mission-card__title {
  color: var(--secondary-color);
}

/* Divider */
.values-section__divider {
  text-align: center;
  margin: px 0 48px;
  position: relative;
}

@media (min-width: 768px) {
  .values-section__divider {
    margin: 60px 0;
  }
}

.values-section__divider::before,
.values-section__divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 100px);
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
}

.values-section__divider::before {
  left: 0;
}

.values-section__divider::after {
  right: 0;
}

.values-section__divider-text {
  display: inline-block;
  padding: 12px 40px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--pure-white);
  border-radius: 50px;
  letter-spacing: 2px;
  position: relative;
  box-shadow: 0 4px 20px rgba(45, 203, 189, 0.4);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.value-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem 0.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #e0f2f4;
  box-shadow: 0 2px 8px rgba(18, 138, 157, 0.08);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #128a9d 0%, #0d6b7a 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 138, 157, 0.03) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(18, 138, 157, 0.2);
  border-color: #128a9d;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover::after {
  opacity: 1;
}

.value-card__icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #128a9d 0%, #0d6b7a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(18, 138, 157, 0.25);
  position: relative;
  z-index: 1;
}

.value-card__icon::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #128a9d, #0d6b7a);
  opacity: 0;
  filter: blur(6px);
  transition: opacity 0.4s ease;
}

.value-card:hover .value-card__icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 8px 20px rgba(18, 138, 157, 0.4);
}

.value-card:hover .value-card__icon::before {
  opacity: 0.6;
}

.value-card__icon i {
  font-size: 1.5rem;
  color: #ffffff;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.value-card:hover .value-card__icon i {
  transform: scale(1.1);
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.value-card:hover h3 {
  color: #128a9d;
  transform: scale(1.05);
}

/* Tablet - increase spacing and sizes */
@media (min-width: 576px) {
  .values-grid {
    gap: 1.25rem;
  }

  .value-card {
    padding: 2rem 1rem;
    border-radius: 16px;
  }

  .value-card__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
  }

  .value-card__icon i {
    font-size: 2rem;
  }

  .value-card h3 {
    font-size: 1.25rem;
  }
}

/* Desktop - larger spacing and enhanced effects */
@media (min-width: 992px) {
  .values-grid {
    gap: 2rem;
    margin-top: 3rem;
  }

  .value-card {
    padding: 3rem 1.5rem;
    border-radius: 20px;
  }

  .value-card:hover {
    transform: translateY(-12px);
  }

  .value-card__icon {
    width: 90px;
    height: 90px;
    margin-bottom: 1.75rem;
  }

  .value-card__icon i {
    font-size: 2.5rem;
  }

  .value-card h3 {
    font-size: 1.65rem;
  }
}

/* Large Desktop - maximum visual impact */
@media (min-width: 1200px) {
  .values-grid {
    gap: 2.5rem;
  }

  .value-card {
    padding: 3.5rem 2rem;
  }

  .value-card__icon {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
  }

  .value-card__icon i {
    font-size: 2.75rem;
  }

  .value-card h3 {
    font-size: 1.85rem;
  }
}
/* #endregion */

/* ============================================================================
   Founder's Message
   ========================================================================== */
.founder-message {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 50%, #f9fafb 100%);
  position: relative;
  overflow: hidden;
}

.founder-message::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(156, 163, 175, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.founder-message::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(107, 114, 128, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.founder-message .section-title {
  text-align: center;
}

@media (min-width: 768px) {
  .founder-message .section-title {
    margin-bottom: 80px;
  }
}

/* Founder Quote */
.founder-quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}
.founder-quote--right {
  flex-direction: column-reverse;
}
@media (min-width: 1200px) {
  .founder-quote {
    flex-direction: row;
    gap: 64px;
    margin-bottom: 80px;
  }
  .founder-quote--right {
    flex-direction: row;
  }
}

.founder-quote:last-of-type {
  margin-bottom: 0;
}

/* Photo Area */
.founder-quote__photo {
  flex-shrink: 0;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .founder-quote__photo {
    width: 280px;
    max-width: 320px;
  }
}

.founder-quote__photo-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(107, 114, 128, 0.12);
  margin-bottom: 20px;
  transition: all 0.4s ease;
  border: 3px solid rgba(229, 231, 235, 0.6);
}

@media (min-width: 1200px) {
  .founder-quote__photo-wrapper {
    padding-bottom: 120%;
  }
}

.founder-quote:hover .founder-quote__photo-wrapper {
  transform: translateY(-8px);
  box-shadow: 0 24px 72px rgba(107, 114, 128, 0.18);
  border-color: rgba(209, 213, 219, 0.9);
}

.founder-quote__photo-wrapper picture {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.founder-quote__photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.founder-quote__info {
  text-align: center;
}

.founder-quote__role {
  font-size: 14px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* Quote Content */
.founder-quote__content {
  flex: 1;
  background: rgba(255, 255, 255, 0.9);
  padding: 48px 24px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  position: relative;
  border-left: 5px solid #6b7280;
  transition: all 0.4s ease;
}

@media (min-width: 1200px) {
  .founder-quote__content {
    padding: 48px 56px;
  }
}

.founder-quote--right .founder-quote__content {
  border-left: none;
  border-right: 5px solid #9ca3af;
}

.founder-quote:hover .founder-quote__content {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

/* Quote Mark */
.founder-quote__mark {
  position: absolute;
  top: -16px;
  left: 40px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #6b7280, #9ca3af);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  box-shadow: 0 4px 16px rgba(107, 114, 128, 0.25);
}

@media (min-width: 1200px) {
  .founder-quote__mark {
    width: 64px;
    height: 64px;
    font-size: 28px;
    top: -20px;
  }
}

.founder-quote--right .founder-quote__mark {
  left: auto;
  right: 40px;
  background: linear-gradient(135deg, #9ca3af, #d1d5db);
}

/* Quote Text */
.founder-quote__text {
  font-family: Georgia, serif;
  line-height: 1.9;
  margin: 0 0 32px 0;
  font-style: italic;
  position: relative;
  padding-left: 16px;
}

.founder-quote__text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: linear-gradient(180deg, #6b7280, #d1d5db);
  border-radius: 2px;
  opacity: 0.4;
}

.founder-quote--right .founder-quote__text::before {
  background: linear-gradient(180deg, #9ca3af, #d1d5db);
}

/* Toggle Button */
.founder-quote__toggle {
  display: flex; /* Changed from inline-flex to flex */
  width: 100%; /* Take full width */
  justify-content: flex-end; /* Align to the right (optional) */
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;

  /* Add spacing from the text */
  margin-top: 12px;
  margin-left: 0;

  transition: all 0.3s ease;
}

.founder-quote__toggle:hover {
  color: #374151;
  transform: translateX(4px);
}

.founder-quote__toggle i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.founder-quote__preview,
.founder-quote__full {
  display: inline;
}

/* Signature */
.founder-quote__signature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 2px solid rgba(107, 114, 128, 0.15);
}

.founder-quote--right .founder-quote__signature {
  border-top-color: rgba(156, 163, 175, 0.15);
}

/* #endregion */

/* #region team */
.team-section {
  background: var(--bg-light);
  padding: 60px 0;
}

@media (min-width: 768px) {
  .team-section {
    padding: 80px 0;
  }
}

.team-section__intro {
  text-align: center;
  max-width: 800px;
  margin: -32px auto 48px;
  line-height: 1.8;
}

.team-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 1200px) {
  .team-section__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

.team-card {
  background: var(--pure-white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.team-card__icon {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
}
/* #endregion */
