/* ===== ABOUT US PAGE STYLES ===== */

/* Hero Section */
.about-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(111deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 100%, rgba(237, 221, 83, 1) 100%);
  padding: 100px 0 80px;
}

.hero-gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1), transparent 60%);
  animation: pulse-bg 8s ease-in-out infinite alternate;
}

@keyframes pulse-bg {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: float-shapes 20s ease-in-out infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.2);
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(34, 193, 195, 0.3);
  top: 50%;
  right: -5%;
  animation-delay: 2s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: rgba(253, 187, 45, 0.3);
  bottom: 10%;
  left: 30%;
  animation-delay: 4s;
}

@keyframes float-shapes {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }

  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: left;
}

.stat-item .stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.3rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.stat-item p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.95rem;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.morphing-blob {
  position: absolute;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(40px);
  opacity: 0.6;
  animation: morph 8s ease-in-out infinite;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(34, 193, 195, 0.4));
  animation-delay: 0s;
}

.blob-2 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, rgba(253, 187, 45, 0.4), rgba(255, 255, 255, 0.3));
  animation-delay: 4s;
}

@keyframes morph {

  0%,
  100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: translate(20px, -20px) rotate(90deg);
  }

  50% {
    border-radius: 30% 70% 70% 30% / 30% 60% 40% 70%;
    transform: translate(-20px, 20px) rotate(180deg);
  }

  75% {
    border-radius: 70% 30% 40% 60% / 70% 40% 60% 30%;
    transform: translate(20px, 20px) rotate(270deg);
  }
}

.hero-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: float-img 6s ease-in-out infinite;
}

@keyframes float-img {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Our Story Section */
.our-story-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #ffffff, #f7fafc);
}

.story-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.story-img {
  width: 100%;
  max-width: 500px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: float-img 6s ease-in-out infinite;
}

.timeline-wrapper {
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #22C1C3, #FDBB2D);
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: attr(data-year);
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(111deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 100%, rgba(237, 221, 83, 1) 100%);
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-weight: 700;
  font-size: 0.875rem;
  color: white;
  box-shadow: 0 4px 20px rgba(34, 193, 195, 0.4);
  z-index: 1;
}

.timeline-content h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.timeline-content p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.timeline-emoji-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(111deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 100%, rgba(237, 221, 83, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(34, 193, 195, 0.3);
  animation: pulse-emoji-circle 2s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.timeline-emoji-circle:hover {
  transform: scale(1.1) rotate(10deg);
}

@keyframes pulse-emoji-circle {

  0%,
  100% {
    box-shadow: 0 8px 20px rgba(34, 193, 195, 0.3);
  }

  50% {
    box-shadow: 0 8px 30px rgba(253, 187, 45, 0.5);
  }
}

.story-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
}

.highlight-item i {
  color: var(--primary-color);
  font-size: 1.3rem;
}

/* Values Section */
.values-section {
  padding: 100px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.values-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.05), transparent 50%);
}

.value-card {
  background: linear-gradient(135deg, rgba(34, 193, 195, 0.05), rgba(253, 187, 45, 0.05));
  border: 2px solid transparent;
  background-clip: padding-box;
  padding: 2.5rem 2rem;
  border-radius: 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(111deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 100%, rgba(237, 221, 83, 1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.value-card:hover::before {
  opacity: 1;
}

.value-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 50px rgba(34, 193, 195, 0.3);
  border-color: #22C1C3;
}

.value-card>* {
  position: relative;
  z-index: 1;
}

.value-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: bounce-icon 2s ease-in-out infinite;
}

@keyframes bounce-icon {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.value-card:hover .value-icon {
  animation: rotate-scale 0.6s ease-in-out;
}

@keyframes rotate-scale {
  0% {
    transform: rotate(0) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.2);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

.value-card h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.value-card:hover h4,
.value-card:hover p {
  color: white;
}

.value-card p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
  transition: color 0.3s ease;
}

/* Why Choose Section */
.why-choose-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f7fafc, #ffffff);
}

.choose-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.choose-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.choose-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.choose-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(111deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 100%, rgba(237, 221, 83, 1) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(34, 193, 195, 0.3);
  transition: all 0.3s ease;
}

.choose-item:hover .choose-icon {
  transform: rotate(360deg) scale(1.1);
}

.choose-content h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.choose-content p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.choose-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.choose-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.floating-badge {
  position: absolute;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  animation: float-badge 3s ease-in-out infinite;
}

.floating-badge i {
  font-size: 1.5rem;
  background: linear-gradient(111deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 100%, rgba(237, 221, 83, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge-1 {
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 15%;
  right: -5%;
  animation-delay: 1.5s;
}

@keyframes float-badge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.cta-card {
  background: linear-gradient(111deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 100%, rgba(237, 221, 83, 1) 100%);
  padding: 4rem 3rem;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(34, 193, 195, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
  animation: pulse-cta 4s ease-in-out infinite;
}

@keyframes pulse-cta {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.cta-card h2 {
  color: white;
  font-weight: 800;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  margin: 0;
}

.cta-card .btn-gradient {
  background: white;
  color: #22C1C3;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: none;
  font-size: 1.125rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.cta-card .btn-gradient:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-3px) scale(1.05);
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero-stats {
    gap: 2rem;
  }

  .timeline-item {
    padding-left: 70px;
  }

  .choose-grid {
    gap: 1.5rem;
  }

  .cta-card {
    padding: 3rem 2rem;
    text-align: center;
  }

  .cta-card h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-item .stat-number {
    font-size: 2.5rem;
  }

  .timeline-line {
    left: 20px;
  }

  .timeline-item {
    padding-left: 60px;
  }

  .timeline-item::before {
    width: 50px;
    height: 50px;
    font-size: 0.8rem;
  }
}

/* ========== FOOTER SECTION ========== */
.footer-section {
  background: #1a202c;
  color: white;
  padding: 60px 0 30px;
}

.footer-brand h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #22C1C3;
  color: white;
  transform: translateY(-3px);
}

.footer-contact h6,
.footer-links h6 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.footer-contact i {
  color: #22C1C3;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  color: white;
  padding-left: 5px;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  padding-top: 1rem;
  text-align: center;
}

.animate-fadeup {
  animation: fadeUp 0.6s ease-out;
}


/* Liquid Glass Booking Section */
.booking-trigger-section {
  padding: 100px 0;
  position: relative;
  background: url('https://images.unsplash.com/photo-1549480017-d76466a4b7e8?auto=format&fit=crop&w=2000&q=80') no-repeat center center/cover;
  background-attachment: fixed;
}

.booking-trigger-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}

.glass-trigger-card {
  position: relative;
  display: inline-block;
  padding: 4rem 5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  color: white;
  max-width: 800px;
  width: 90%;
}

.glass-trigger-card h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-trigger-card p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.btn-gradient-glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 600;
  padding: 1rem 3rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.btn-gradient-glass:hover {
  background: white;
  color: #2a7b9b;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: white;
}

/* Liquid Glass Modal */
.glass-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.glass-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.glass-modal-content {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-modal-overlay.active .glass-modal-content {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #555;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close-btn:hover {
  color: #000;
}

.modal-header-glass {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-header-glass h3 {
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.modal-header-glass p {
  color: #666;
  margin: 0;
}

.glass-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #444;
}

.glass-input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  font-size: 1rem;
  color: #333;
  outline: none;
  transition: all 0.3s ease;
  position: relative;
  cursor: text;
}

/* Ensure calendar icon is visible, clicking it works natively */
.glass-input::-webkit-calendar-picker-indicator {
  display: block;
  background: transparent;
  cursor: pointer;
  color: #333;
  opacity: 0.6;
  padding: 5px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.glass-input::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.glass-input:focus {
  background: rgba(255, 255, 255, 0.9);
  border-color: #2a7b9b;
  box-shadow: 0 0 0 4px rgba(42, 123, 155, 0.1);
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.time-slot {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.6rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.time-slot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.time-slot.selected {
  background: #2a7b9b;
  color: white;
  border-color: #2a7b9b;
  box-shadow: 0 4px 10px rgba(42, 123, 155, 0.3);
}

.glass-submit-btn {
  background: linear-gradient(135deg, #2a7b9b, #57c785);
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.glass-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(42, 123, 155, 0.2);
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Process Section */
.process-steps-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.process-step-card {
  flex: 1;
  text-align: center;
  min-width: 200px;
  position: relative;
  transition: transform 0.3s ease;
}

.process-step-card:hover {
  transform: translateY(-10px);
}

.step-img-holder {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  aspect-ratio: 1/1;
  /* Makes images square */
}

.step-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.process-step-card:hover .step-img-holder img {
  transform: scale(1.05);
}

.step-count {
  position: absolute;
  top: 15px;
  left: 15px;
  background: white;
  color: var(--primary);
  /* Assuming primary color var exists or fallback */
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.step-meta {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: #adafbb;
  text-transform: uppercase;
}

.step-text-content h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-text-content p {
  color: #6c757d;
  font-size: 0.95rem;
  margin: 0;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ddd;
  padding-top: 100px;
  /* Align arrow with image roughly */
}

/* Response */
@media (max-width: 991px) {
  .process-steps-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .process-step-card {
    width: 100%;
    max-width: 400px;
  }

  .process-arrow {
    transform: rotate(90deg);
    padding: 0;
    margin: -20px 0;
  }
}