/* ========================================
   About Page Styles
   ======================================== */





/* Adjust divider diamond for About page */
.about-hero-section .products-hero__divider {
  display: flex;
  align-items: center;
  margin-left: 1rem;
  flex: 1;
}

.about-hero-section .products-hero__divider-diamond {
  width: 22.63px;
  height: 22.63px;
  border-width: 3px;
  background: #ffffff;
  border-color: #2970ff;
  transform: rotate(45deg);
  margin-right: -1px;
}

.about-hero-section .products-hero__divider-line {
  flex: 1;
  max-width: 900px;
  height: 1px;
  background: linear-gradient(to right, #2970FF 0%, rgba(41, 112, 255, 0) 100%);
}




/* ========================================
   Responsive Design
   ======================================== */

/* Tablet */
@media (max-width: 991px) {
  .about-hero-section {
    min-height: 400px;
    padding: 3rem 0;
  }

  .about-hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
  }

  .about-hero-content {
    gap: 1.5rem;
    padding-top: 3rem;
    padding: 0;
  }

  .about-hero-section .products-hero__gradient {
    width: 600px;
    height: 600px;
  }

  .about-hero-section .products-hero__divider-line {
    max-width: 500px;
  }

  .about-hero-section .products-hero__breadcrumb-text {
    font-size: 22px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .about-hero-section {
    min-height: 350px;
    padding: 2rem 0;
  }

  .about-hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .about-hero-content {
    gap: 1.25rem;
    padding-top: 2rem;
    padding: 0;
  }

  .about-hero-section .products-hero__breadcrumb-text {
    font-size: 18px;
  }

  .about-hero-section .products-hero__divider-diamond {
    width: 16px;
    height: 16px;
    border-width: 2px;
  }

  .about-hero-section .products-hero__divider-line {
    max-width: 300px;
  }

  .about-hero-section .products-hero__gradient {
    width: 400px;
    height: 400px;
    filter: blur(100px);
  }

  .about-hero-section .products-hero__gradient--left {
    left: -100px;
  }

  .about-hero-section .products-hero__gradient--right {
/*right: -100px;*/
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-hero-section {
    min-height: 300px;
  }

  .about-hero-title {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }



  .about-hero-section .products-hero__breadcrumb-text {
    font-size: 16px;
  }

  .about-hero-section .products-hero__divider-line {
    max-width: 150px;
  }
}

/* ========================================
   Who We Are Section
   ======================================== */

.about-who {
  position: relative;
  width: 100%;
  padding: 4rem 0;
  overflow: hidden;
}

/* ========================================
   Animation Keyframes
   ======================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-who .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-who__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Quote Section */
.about-who__quote {
  width: 100%;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-who__quote.animate-in {
  animation: fadeInUp 0.8s ease forwards;
}

.about-who__quote-text {
  font-family: 'Clash Display', sans-serif;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.5vw, 1.8125rem);
  line-height: 1.414;
  text-align: left;
  color: #0d0d12;
  margin: 0;
}

/* Content Wrapper - Two Column Layout */
.about-who__content-wrapper {
  display: grid;
  grid-template-columns: 575px 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

/* Image Section */
.about-who__image {
  width: 100%;
  max-width: 575px;
  height: 476px;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-who__image.animate-in {
  animation: slideInLeft 0.8s ease 0.2s forwards;
}

.about-who__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content Section */
.about-who__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 693px;
  margin-left: auto;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-who__content.animate-in {
  animation: slideInRight 0.8s ease 0.4s forwards;
}

.about-who__title {
  font-family: 'Clash Display', sans-serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 0.733;
  text-transform: uppercase;
  text-align: left;
  color: #2970ff;
  margin: 0;
}

.about-who__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-who__text p {
  font-family: DM Sans, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.588;
  text-align: left;
  color: #666d80;
  margin: 0;
}

/* ========================================
   Who We Are - Responsive Design
   ======================================== */

/* Tablet */
@media (max-width: 991px) {
  .about-who {
    padding: 3rem 0;
  }

  .about-who__quote-text {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  }

  .about-who__content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-who__image {
    max-width: 100%;
    height: auto;
    min-height: 400px;
  }

  .about-who__content {
    max-width: 100%;
    margin-left: 0;
  }

  .about-who__title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .about-who {
    padding: 2.5rem 0;
  }

  .about-who__container {
    gap: 2rem;
  }

  .about-who__quote {
    margin-bottom: 1rem;
  }

  .about-who__quote-text {
    font-size: clamp(1rem, 4vw, 1.25rem);
  }

  .about-who__content-wrapper {
    gap: 1.5rem;
  }

  .about-who__image {
    min-height: 300px;
    height: auto;
  }

  .about-who__content {
    gap: 25px;
  }

  .about-who__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .about-who__text {
    gap: 1rem;
  }

  .about-who__text p {
    font-size: 16px;
  }

  /* Reduce animation distances on mobile */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-40px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(40px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-who {
    padding: 2rem 0;
  }

  .about-who__quote-text {
    font-size: 1rem;
  }

  .about-who__image {
    min-height: 250px;
  }

  .about-who__title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1;
  }

  .about-who__content {
    gap: 20px;
  }

  .about-who__text p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* ========================================
   CTA Banner Section
   ======================================== */

.about-cta {
  position: relative;
  width: 100%;
  padding: 1rem 0;
  overflow: hidden;
}

.about-cta .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-cta__banner {
  background: url(../assets/pages/about/cta.jpg) no-repeat center center;
  position: relative;
  width: 100%;
  max-width: 1320px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Image */
.about-cta__background {
  position: absolute;
  top: -232.64px;
  left: -15px;
  width: 1350px;
  height: 841px;
  z-index: 1;
  pointer-events: none;
}

.about-cta__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content */
.about-cta__content {
 
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 27px;
  width: 100%;
  max-width: 1019px;
  padding: 36px 20px;
}

.about-cta__title {
  font-family: 'Clash Display', sans-serif;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 0.804;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  margin: 0;
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-cta__title.animate-in {
  animation: ctaZoomIn 0.8s ease forwards;
}

@keyframes ctaZoomIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.about-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 23px;
  background: #79efb3;
  border: 1px solid #79efb3;
  border-radius: 4px;
  font-family: 'Clash Display', sans-serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.23;
  text-align: center;
  color: #0d0d12;
  text-decoration: none;
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.about-cta__button.animate-in {
  animation: ctaZoomIn 0.8s ease 0.2s forwards;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.about-cta__button:hover {
  background: #64d99e;
  border-color: #64d99e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(121, 239, 179, 0.3);
}

.about-cta__button:active {
  transform: translateY(0);
}

/* ========================================
   CTA Banner - Responsive Design
   ======================================== */

/* Tablet */
@media (max-width: 991px) {
  .about-cta {
    padding: 3rem 0;
  }

  .about-cta__banner {
    height: 180px;
  }

  .about-cta__title {
    font-size: clamp(1.75rem, 5vw, 3rem);
  }

  .about-cta__content {
    gap: 20px;
    padding: 30px 20px;
  }

  .about-cta__background {
    top: -150px;
    left: -10px;
    width: 100%;
    height: auto;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .about-cta {
    padding: 2.5rem 0;
  }

  .about-cta__banner {
    height: 160px;
    border-radius: 8px;
  }

  .about-cta__title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .about-cta__content {
    gap: 18px;
    padding: 25px 15px;
  }

  .about-cta__button {
    padding: 10px 20px;
    font-size: 17px;
  }

  .about-cta__background {
    top: -100px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-cta {
    padding: 1rem 0;
  }

  .about-cta__banner {
    height: 140px;
  }

  .about-cta__title {
    font-size: clamp(1.25rem, 7vw, 2rem);
    line-height: 1;
  }

  .about-cta__content {
    gap: 15px;
    padding: 20px 15px;
  }

  .about-cta__button {
    padding: 10px 18px;
    font-size: 16px;
  }
}

/* ========================================
   Stats Section
   ======================================== */

.about-stats {
  position: relative;
  width: 100%;
  padding: 2.5rem 0;
}

.about-stats .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  width: 100%;
}

/* Stat Card */
.about-stats__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  min-height: 249px;
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 15px;
  background-image: linear-gradient(#ffffff, #ffffff), 
                    linear-gradient(90deg, #79efb3 0%, #064dfa 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 5px 5px 32px 0px rgba(121, 239, 179, 1), 
              -1px -2px 8px 0px rgba(6, 77, 250, 0.7), 
              inset 0px 0px 32px 8px rgba(255, 255, 255, 1);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
}

.about-stats__card.animate-in {
  animation: statCardReveal 0.6s ease forwards;
}

@keyframes statCardReveal {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.about-stats__card:hover {
  transform: translateY(-5px);
  box-shadow: 5px 10px 40px 0px rgba(121, 239, 179, 1.2), 
              -1px -2px 12px 0px rgba(6, 77, 250, 0.8), 
              inset 0px 0px 32px 8px rgba(255, 255, 255, 1);
}

/* Tall variant for cards with longer text */
.about-stats__card--tall {
  min-height: auto;
}

.about-stats__icon {
  width: 79px;
  height: 79px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.about-stats__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.about-stats__number {
  font-family: 'Clash Display', sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.364;
  text-align: center;
  color: #0d0d12;
  margin: 0;
}

.about-stats__label {
  font-family: DM Sans, sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.588;
  text-align: center;
  color: #0d0d12;
  height: 54px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
}

.about-stats__card--tall .about-stats__label {
  height: auto;
  align-items: center;
}

/* ========================================
   Stats Section - Responsive Design
   ======================================== */

/* Large Desktop */
@media (max-width: 1400px) {
  .about-stats__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .about-stats {
    padding: 2rem 0;
  }

  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .about-stats__card {
    min-height: 220px;
  }

  .about-stats__icon {
    width: 70px;
    height: 70px;
  }

  .about-stats__number {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }

  .about-stats__label {
    font-size: clamp(13px, 1.5vw, 16px);
    height: auto;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .about-stats {
    padding: 1.5rem 0;
  }

 

  .about-stats__card {
    min-height: 200px;
    padding: 18px;
  }

  .about-stats__icon {
    width: 65px;
    height: 65px;
  }

  .about-stats__number {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
  }

  .about-stats__label {
    font-size: 15px;
    height: auto;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-stats__card {
    min-height: 180px;
    padding: 16px;
    border-radius: 12px;
  }

  .about-stats__icon {
    width: 60px;
    height: 60px;
  }

  .about-stats__number {
    font-size: 2rem;
  }

  .about-stats__label {
    font-size: 14px;
  }
}

/* ========================================
   History & Achievement Section
   ======================================== */

.about-history {
  position: relative;
  width: 100%;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f5f8;
  padding: 4rem 0;
  overflow: hidden;
}

.about-history .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-history__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
  max-width: 1320px;
}

.about-history__title {
  font-family: 'Clash Display', sans-serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.23;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(90deg, #79efb3 0%, #064dfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-history__title.animate-in {
  animation: fadeInUp 0.8s ease forwards;
}

.about-history__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-history__text.animate-in {
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.about-history__text p {
  font-family: DM Sans, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.684;
  text-align: center;
  color: #0d0d12;
  margin: 0;
}

/* ========================================
   History Section - Responsive Design
   ======================================== */

/* Tablet */
@media (max-width: 991px) {
  .about-history {
    min-height: 500px;
    padding: 3rem 0;
  }

  .about-history__content {
    gap: 25px;
  }

  .about-history__title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .about-history__text {
    gap: 1.25rem;
  }

  .about-history__text p {
    font-size: clamp(15px, 2vw, 18px);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .about-history {
    min-height: auto;
    padding: 2.5rem 0;
  }

  .about-history__content {
    gap: 20px;
  }

  .about-history__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .about-history__text {
    gap: 1rem;
  }

  .about-history__text p {
    font-size: 16px;
    line-height: 1.65;
    text-align: left;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-history {
    padding: 2rem 0;
  }

  .about-history__title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1.2;
  }

  .about-history__text p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* ========================================
   Vision & Mission Section
   ======================================== */

.about-vision-mission {
  position: relative;
  width: 100%;
  min-height: 500px;
  background: #ffffff;
  padding: 3.125rem 0 0;
  overflow: hidden;
}

.about-vision-mission .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-vision-mission__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  width: 100%;
  padding-top: 3.125rem;
}

/* Card */
.about-vision-mission__card {
  position: relative;
  width: 100%;
  max-width: 640px;
  min-height: 413px;
  border-radius: 10px;
  overflow: visible;
  margin: 0 auto;
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-vision-mission__card:nth-child(1).animate-in {
  animation: slideInLeft 0.8s ease forwards;
}

.about-vision-mission__card:nth-child(2) {
  transform: translateX(60px);
}

.about-vision-mission__card:nth-child(2).animate-in {
  animation: slideInRight 0.8s ease 0.2s forwards;
}

/* Background Gradient */
.about-vision-mission__background {
  position: absolute;
  top: 65.5px;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, rgba(192, 255, 235, 0.15) 0%, rgba(195, 242, 218, 0.4) 20%, rgba(41, 112, 255, 0.05) 100%);
  border-radius: 10px;
  z-index: 1;
}

/* Image Overlay */
.about-vision-mission__image {
  position: absolute;
  top: 0.5px;
  right: 0;
  width: 240px;
  height: 240px;
  z-index: 2;
  pointer-events: none;
}

.about-vision-mission__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Content */
.about-vision-mission__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 125.5px 50px 40px;
  width: 100%;
  min-height: 300px;
}

.about-vision-mission__title {
  font-family: 'Clash Display', sans-serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.23;
  text-transform: uppercase;
  text-align: left;
  background: linear-gradient(90deg, #79efb3 0%, #064dfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.about-vision-mission__text {
  font-family: DM Sans, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.636;
  text-align: left;
  color: #0d0d12;
  margin: 0;
}

/* ========================================
   Vision & Mission - Responsive Design
   ======================================== */

/* Tablet */
@media (max-width: 991px) {
  .about-vision-mission {
    min-height: auto;
    padding: 2.5rem 0 0;
  }

  .about-vision-mission__wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 2rem;
  }

  .about-vision-mission__card {
    max-width: 100%;
    min-height: 380px;
  }

  .about-vision-mission__background {
    top: 60px;
    height: 280px;
  }

  .about-vision-mission__image {
    width: 200px;
    height: 200px;
  }

  .about-vision-mission__content {
    padding: 120px 40px 35px;
    min-height: 280px;
  }

  .about-vision-mission__title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .about-vision-mission__text {
    font-size: clamp(15px, 2vw, 20px);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .about-vision-mission {
    padding: 2rem 0 0;
  }

  .about-vision-mission__wrapper {
    gap: 2.5rem;
    padding-top: 1.5rem;
  }

  .about-vision-mission__card {
    min-height: 350px;
  }

  .about-vision-mission__background {
    top: 50px;
    height: 260px;
  }

  .about-vision-mission__image {
    width: 160px;
    height: 160px;
  }

  .about-vision-mission__content {
    padding: 100px 30px 30px;
    gap: 15px;
    min-height: 260px;
  }

  .about-vision-mission__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .about-vision-mission__text {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Reduce animation distances on mobile */
  .about-vision-mission__card {
    transform: translateX(-40px);
  }

  .about-vision-mission__card:nth-child(2) {
    transform: translateX(40px);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-vision-mission {
    padding: 1.5rem 0 0;
  }

  .about-vision-mission__wrapper {
    gap: 0;
  }

  .about-vision-mission__card {
    min-height: 320px;
  }

  .about-vision-mission__background {
    top: 40px;
    height: 240px;
  }

  .about-vision-mission__image {
    width: 140px;
    height: 140px;
  }

  .about-vision-mission__content {
    padding: 85px 25px 25px;
    min-height: 240px;
  }

  .about-vision-mission__title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1.2;
  }

  .about-vision-mission__text {
    font-size: 15px;
    line-height: 1.55;
  }
}

/* ========================================
   Contact Us Section
   ======================================== */

.about-contact {
  position: relative;
  width: 100%;
  min-height: 650px;
  background: url(../assets/pages/about/contact.jpg) no-repeat center center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-contact__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.about-contact__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-contact .container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-contact__wrapper {
  width: 100%;
  max-width: 1320px;
  padding: 3rem 0;
}

.about-contact__heading {
  margin-bottom: 3.125rem;
}

.about-contact__title {
  font-family: 'Clash Display', sans-serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.23;
  text-align: left;
  color: #79efb3;
  margin: 0;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-contact__title.animate-in {
  animation: slideInLeft 0.8s ease forwards;
}

/* Form Wrapper */
.about-contact__form-wrapper {
  width: 100%;
  max-width: 839px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-contact__form-wrapper.animate-in {
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.about-contact__form {
  width: 100%;
  background: #c0ffeb;
  border-radius: 6px;
  padding: 32px 32px 17px;
  box-shadow: 0px 2px 10px 0px rgba(13, 13, 18, 0.2);
}

.about-contact__form-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.about-contact__form-row {
  display: flex;
  gap: 16px;
  width: 100%;
}

.about-contact__form-group {
  flex: 1;
}

.about-contact__form-group--full {
  width: 100%;
}

/* Input Fields */
.about-contact__input {
  width: 100%;
  height: 52px;
  padding: 0 25px;
  background: #ffffff;
  border: 1px solid #79efb3;
  border-radius: 6px;
  font-family: DM Sans, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: #0d0d12;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-contact__input::placeholder {
  color: #666d80;
}

.about-contact__input:focus {
  outline: none;
  border-color: #064dfa;
  box-shadow: 0 0 0 3px rgba(121, 239, 179, 0.2);
}

/* Textarea */
.about-contact__textarea {
  width: 100%;
  min-height: 185px;
  padding: 12px 25px;
  background: #ffffff;
  border: 1px solid #79efb3;
  border-radius: 6px;
  font-family: DM Sans, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: #0d0d12;
  resize: vertical;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-contact__textarea::placeholder {
  color: #666d80;
}

.about-contact__textarea:focus {
  outline: none;
  border-color: #064dfa;
  box-shadow: 0 0 0 3px rgba(121, 239, 179, 0.2);
}

/* Submit Button */
.about-contact__form-submit {
  width: 100%;
  margin-top: 1.5rem;
}

.about-contact__button {
  width: 100%;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 23px;
  background: #79efb3;
  border: none;
  border-radius: 4px;
  font-family: 'Clash Display', sans-serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.23;
  text-align: center;
  color: #0d0d12;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-contact__button:hover {
  background: #64d99e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(121, 239, 179, 0.4);
}

.about-contact__button:active {
  transform: translateY(0);
}

/* ========================================
   Contact Section - Responsive Design
   ======================================== */

/* Tablet */
@media (max-width: 991px) {
  .about-contact {
    min-height: 600px;
  }

  .about-contact__wrapper {
    padding: 2.5rem 0;
  }

  .about-contact__heading {
    margin-bottom: 2.5rem;
  }

  .about-contact__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }

  .about-contact__form-wrapper {
    max-width: 100%;
  }

  .about-contact__form {
    padding: 28px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .about-contact {
    min-height: auto;
  }

  .about-contact__wrapper {
    padding: 2rem 0;
  }

  .about-contact__heading {
    margin-bottom: 2rem;
  }

  .about-contact__title {
    font-size: clamp(1.75rem, 6vw, 3rem);
  }

  .about-contact__form {
    padding: 24px 20px;
  }

  .about-contact__form-row {
    flex-direction: column;
    gap: 12px;
  }

  .about-contact__input {
    height: 48px;
    font-size: 16px;
  }

  .about-contact__textarea {
    min-height: 150px;
    font-size: 16px;
  }

  .about-contact__button {
    height: 44px;
    font-size: 18px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-contact__wrapper {
    padding: 1.5rem 0;
  }

  .about-contact__title {
    font-size: clamp(1.5rem, 7vw, 2.5rem);
  }

  .about-contact__form {
    padding: 20px 16px;
  }

  .about-contact__form-container {
    gap: 12px;
  }

  .about-contact__input {
    height: 46px;
    padding: 0 20px;
    font-size: 15px;
  }

  .about-contact__textarea {
    min-height: 130px;
    padding: 10px 20px;
    font-size: 15px;
  }

  .about-contact__button {
    height: 42px;
    font-size: 17px;
  }

  .about-contact__form-submit {
    margin-top: 1rem;
  }
}
