.abt-hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  background: url(../images/about-hero.jpg) no-repeat center
    center/cover;
  background-color: #1a1a1a;
}

.abt-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: linear-gradient(to top, #fff 0%, transparent 100%);
}

.abt-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInAboutUp 1s ease forwards;
}

@keyframes fadeInAboutUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.abt-hero-left {
  max-width: 650px;
  flex: 1;
}

.abt-hero-left h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  opacity: 0;
  animation: fadeInAboutLeft 0.8s ease 0.3s forwards;
}

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

.abt-hero-left p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeInAboutLeft 0.8s ease 0.5s forwards;
}

.abt-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  opacity: 0;
  animation: fadeInAboutLeft 0.8s ease 0.7s forwards;
}

.btn-outline {
  border: 1px solid #ccc;
  background: #fff;
  color: #111;
}

.btn-outline:hover {
  background: #f3f3f3;
  border-color: #999;
}

.abt-hero-right {
  text-align: right;
  flex-shrink: 0;
  opacity: 0;
  animation: fadeInAboutRight 0.8s ease 0.6s forwards;
}

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

.small {
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.muted {
  color: #666;
}

.stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 8px;
}

.stars i {
  display: inline-block;
  animation: starPop 0.5s ease forwards;
  opacity: 0;
}

.stars i:nth-child(1) {
  animation-delay: 0.9s;
}
.stars i:nth-child(2) {
  animation-delay: 1s;
}
.stars i:nth-child(3) {
  animation-delay: 1.1s;
}
.stars i:nth-child(4) {
  animation-delay: 1.2s;
}
.stars i:nth-child(5) {
  animation-delay: 1.3s;
}

@keyframes starPop {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .abt-hero-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
    gap: 25px;
  }

  .abt-hero-left h1 {
    font-size: 2rem;
  }

  .abt-hero-left p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .abt-hero-right {
    text-align: left;
    width: 100%;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .abt-hero {
    min-height: 450px;
  }

  .abt-hero-content {
    padding: 25px 15px;
  }

  .abt-hero-left h1 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .abt-hero-left p {
    font-size: 0.9rem;
    margin-bottom: 18px;
    line-height: 1.5;
  }

  .abt-hero-buttons {
    gap: 10px;
    width: 100%;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
    flex: 1;
    min-width: 120px;
    text-align: center;
  }

  .small {
    font-size: 0.8rem;
  }

  .stars {
    font-size: 0.9rem;
  }

  .abt-hero-overlay {
    height: 60%;
  }
}

@media (max-width: 400px) {
  .abt-hero-left h1 {
    font-size: 1.3rem;
  }

  .abt-hero-left p {
    font-size: 0.85rem;
  }

  .abt-hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

.why {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-section {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: #10b981;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.2s;
}

.why-description {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.4s;
}

.why-grid {
  display: table;
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  max-width: 900px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.why-row {
  display: table-row;
}

.why-cell {
  display: table-cell;
  width: 50%;
  text-align: center;
  padding: 40px 20px;
  vertical-align: middle;
  border: none;
}

/* Only inner borders */
.why-row:not(:last-child) .why-cell {
  border-bottom: 1px solid #e0e0e0;
}

.why-cell:first-child {
  border-right: 1px solid #e0e0e0;
}

.why-icon-container {
  display: inline-block;
  margin-bottom: 15px;
}

.why-icon {
  font-size: 32px;
  color: #10b981;
}

.why-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
}

/* Responsive styles */
@media (max-width: 768px) {
  .why-title {
    font-size: 2rem;
  }

  .why-grid {
    display: block;
  }

  .why-row {
    display: block;
  }

  .why-cell {
    display: block;
    width: 100%;
    padding: 30px 15px;
  }

  .why-cell:first-child {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
}

@media (max-width: 576px) {
  .why-section {
    padding: 60px 15px;
  }

  .why-title {
    font-size: 1.8rem;
  }

  .why-description {
    font-size: 1rem;
  }

  .why-cell {
    padding: 25px 10px;
  }

  .why-icon {
    font-size: 28px;
  }

  .why-card-title {
    font-size: 1.1rem;
  }
}

.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.cta-section {
  background: #ffffff;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta-container.loaded {
  opacity: 1;
  transform: translateY(0);
}

.cta-title {
  font-size: 4rem;
  color: #000000;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.cta-container.loaded .cta-title {
  opacity: 1;
  transform: translateY(0);
}

.cta-subtitle {
  font-size: 1.125rem;
  color: #666666;
  margin-bottom: 50px;
  line-height: 1.7;
  font-weight: 400;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.cta-container.loaded .cta-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.cta-button-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.cta-container.loaded .cta-button-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #10b981;
  color: #fff;
  padding: 18px 35px;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn-primary:hover {
  background: #0e9e73;
  transform: translateY(-2px);
}

.cta-icon-arrow {
  width: 32px;
  height: 32px;
  background: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.cta-btn-primary:hover .cta-icon-arrow {
  transform: translateX(3px);
}

/* Decorative circles */
.cta-circle {
  position: absolute;
  border-radius: 50%;
  background: #e8ebe5;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.cta-circle-1 {
  width: 180px;
  height: 180px;
  top: 80px;
  left: 15%;
  animation: float 8s ease-in-out infinite;
}

.cta-circle-2 {
  width: 120px;
  height: 120px;
  top: 180px;
  left: 8%;
  animation: float 10s ease-in-out infinite 1s;
}

.cta-circle-3 {
  width: 90px;
  height: 90px;
  top: 50px;
  right: 12%;
  animation: float 7s ease-in-out infinite 2s;
}

.cta-circle-4 {
  width: 200px;
  height: 200px;
  top: 120px;
  right: 8%;
  animation: float 9s ease-in-out infinite 0.5s;
}

.cta-circle-5 {
  width: 250px;
  height: 250px;
  bottom: 60px;
  right: 10%;
  animation: float 11s ease-in-out infinite 1.5s;
}

.cta-circle-6 {
  width: 100px;
  height: 100px;
  bottom: 100px;
  left: 10%;
  animation: float 8.5s ease-in-out infinite 2.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(15px, -20px);
  }
  66% {
    transform: translate(-10px, 15px);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .cta-circle-1,
  .cta-circle-2,
  .cta-circle-3,
  .cta-circle-4,
  .cta-circle-5,
  .cta-circle-6 {
    opacity: 0.4;
  }

  .cta-circle-1 {
    width: 140px;
    height: 140px;
    left: 5%;
  }

  .cta-circle-2 {
    width: 100px;
    height: 100px;
    left: 2%;
  }

  .cta-circle-3 {
    width: 70px;
    height: 70px;
    right: 5%;
  }

  .cta-circle-4 {
    width: 160px;
    height: 160px;
    right: 3%;
  }

  .cta-circle-5 {
    width: 180px;
    height: 180px;
    right: 5%;
  }

  .cta-circle-6 {
    width: 80px;
    height: 80px;
    left: 5%;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 80px 20px;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .cta-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .cta-btn-primary {
    padding: 16px 30px;
    font-size: 1rem;
  }

  .cta-circle-1,
  .cta-circle-2,
  .cta-circle-3,
  .cta-circle-4,
  .cta-circle-5,
  .cta-circle-6 {
    opacity: 0.3;
  }

  .cta-circle-1 {
    width: 100px;
    height: 100px;
  }

  .cta-circle-2 {
    width: 70px;
    height: 70px;
  }

  .cta-circle-3 {
    width: 50px;
    height: 50px;
  }

  .cta-circle-4 {
    width: 120px;
    height: 120px;
  }

  .cta-circle-5 {
    width: 130px;
    height: 130px;
  }

  .cta-circle-6 {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 0.938rem;
  }
}

