/* ========================================
   ENHANCED HERO SECTION STYLES
======================================== */

/* Enhanced Hero Section Background and Layout */
.enhanced-hero-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 100vh;
}

.enhanced-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(249, 115, 22, 0.05) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(139, 69, 19, 0.03) 0%,
      transparent 40%
    );
  pointer-events: none;
  animation: gradientShift 15s ease-in-out infinite;
}

.enhanced-hero-swiper {
  width: 100%;
  height: 100vh;
  position: relative;
}

.enhanced-hero-slide {
  display: flex;
  align-items: center;
  min-height: 100vh;
  /* padding: 120px 0 80px; */
}

/* Hero Content Styles */
.enhanced-hero-content {
  position: relative;
  z-index: 2;
  padding-right: 2rem;
}

.hero-eyebrow {
  margin-bottom: 1.5rem;
}

.hero-eyebrow .eyebrow-text {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.hero-eyebrow .eyebrow-text::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, #f59e0b, transparent);
  border-radius: 1px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.title-highlight {
  background: linear-gradient(135deg, #dc2626 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 2rem;
  max-width: 90%;
}

.text-highlight {
  color: #dc2626;
  font-weight: 600;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.25);
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.35);
  color: white;
}

.hero-btn-outline {
  background: transparent;
  border: 2px solid #3b82f6;
  padding: 0.875rem 1.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  color: #3b82f6;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-btn-outline:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
}

/* Hero Awards Section */
.hero-awards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.award-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.award-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.award-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.award-text {
  display: flex;
  flex-direction: column;
}

.award-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.2;
}

.award-subtitle {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.3;
}

/* Hero Visual Section */
.enhanced-hero-visual {
  position: relative;
  z-index: 2;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  height: 700px;
  /* border: 1px solid black; */
  position: relative;
}

.hero-main-image {
  width: 100%;
  height: 700px;
  position: absolute;

  /* border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

/* Floating Stats */
.floating-stat {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 0.5rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  animation: floatUpDown 3s ease-in-out infinite;
  z-index: 3;
}

.legacy-stat {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.clients-stat {
  bottom: 40%;
  left: -15%;
  animation-delay: -1s;
}

.retention-stat {
  bottom: 10%;
  right: 10%;
  animation-delay: -2s;
}

.modules-stat {
  top: 15%;
  right: -10%;
  animation-delay: 0s;
}

.reviews-stat {
  bottom: 35%;
  left: -15%;
  animation-delay: -1s;
}

.professionals-stat {
  bottom: 15%;
  right: 5%;
  animation-delay: -2s;
}

.stat-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  /* font-size: 1.25rem; */
  flex-shrink: 0;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 0.2rem;
  color: #64748b;
  font-weight: 500;
  line-height: 1.2;
}

.stat-number {
  /* font-size: 0.5rem;
  font-weight: 700; */
  color: #1e293b;
  line-height: 1;
}

/* Navigation Styles */
.enhanced-hero-next,
.enhanced-hero-prev {
  width: 60px !important;
  height: 60px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 50% !important;
  color: #3b82f6 !important;
  font-size: 20px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  z-index: 10 !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.enhanced-hero-next:hover,
.enhanced-hero-prev:hover {
  background: #3b82f6 !important;
  color: white !important;
  transform: scale(1.1) !important;
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.25) !important;
}

.enhanced-hero-next::after,
.enhanced-hero-prev::after {
  content: "" !important;
}

/* Pagination Styles */
.enhanced-hero-pagination {
  bottom: 30px !important;
  position: absolute !important;
}

.enhanced-hero-pagination .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: rgba(59, 130, 246, 0.3) !important;
  border: 2px solid rgba(59, 130, 246, 0.5) !important;
  opacity: 1 !important;
  margin: 0 8px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.enhanced-hero-pagination .swiper-pagination-bullet-active {
  background: #3b82f6 !important;
  border-color: #3b82f6 !important;
  transform: scale(1.3) !important;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4) !important;
}

/* Animations */
@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes gradientShift {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* Responsive Design */

/* Laptop/Desktop Large (1200px - 1399px) */
@media (max-width: 1399px) {
  .hero-title {
    font-size: 3.25rem;
  }

  .hero-description {
    font-size: 1.2rem;
  }

  .enhanced-hero-content {
    padding-right: 1.5rem;
  }
}

/* Laptop/Desktop (992px - 1199px) */
@media (max-width: 1199px) {
  .enhanced-hero-slide {
    padding: 90px 0 70px;
  }

  .hero-title {
    font-size: 3rem;
    line-height: 1.15;
  }

  .hero-description {
    font-size: 1.125rem;
    margin-bottom: 1.75rem;
  }

  .hero-buttons {
    margin-bottom: 2.5rem;
  }

  .hero-btn-primary,
  .hero-btn-outline {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }

  .award-item {
    padding: 0.875rem;
    gap: 0.625rem;
  }

  .award-icon {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .award-title {
    font-size: 0.8rem;
  }

  .award-subtitle {
    font-size: 0.7rem;
  }

  .floating-stat {
    padding: 0.875rem 1rem;
  }

  .stat-icon {
    width: 44px;
    height: 44px;
    font-size: 1.125rem;
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .enhanced-hero-next,
  .enhanced-hero-prev {
    width: 55px !important;
    height: 55px !important;
    font-size: 18px !important;
  }
}

/* Tablet Large (768px - 991px) */
@media (max-width: 991px) {
  .enhanced-hero-slide {
    padding: 80px 0 60px;
    min-height: 85vh;
    flex-direction: column;
    text-align: center;
  }

  .enhanced-hero-swiper {
    height: 85vh;
  }

  .hero-title {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
  }

  .hero-description {
    font-size: 1.125rem;
    max-width: 100%;
    margin-bottom: 1.75rem;
  }

  .enhanced-hero-content {
    padding-right: 0;
    margin-bottom: 2.5rem;
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
    margin-bottom: 2rem;
  }

  .hero-btn-primary,
  .hero-btn-outline {
    padding: 0.875rem 1.5rem;
    min-width: 160px;
  }

  .hero-awards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    max-width: 400px;
    margin: 0 auto;
  }

  .award-item {
    padding: 0.75rem;
    text-align: left;
  }

  .floating-stat {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin-bottom: 1rem;
    animation: none;
  }

  .hero-image-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: start;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-main-image {
    grid-column: span 3;
    margin-bottom: 1rem;
    max-height: 350px;
    object-fit: contain;
  }

  .enhanced-hero-next,
  .enhanced-hero-prev {
    width: 50px !important;
    height: 50px !important;
    font-size: 16px !important;
  }
}

/* Tablet Small/Large Mobile (576px - 767px) */
@media (max-width: 767px) {
  .enhanced-hero-slide {
    padding: 70px 0 50px;
    min-height: 80vh;
  }

  .enhanced-hero-swiper {
    height: 80vh;
  }

  .hero-title {
    font-size: 2.25rem;
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .enhanced-hero-content {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .hero-btn-primary,
  .hero-btn-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.975rem;
  }

  .hero-awards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 320px;
  }

  .award-item {
    padding: 0.625rem 0.75rem;
    gap: 0.5rem;
  }

  .award-icon {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }

  .award-title {
    font-size: 0.775rem;
  }

  .award-subtitle {
    font-size: 0.675rem;
  }

  .floating-stat {
    padding: 0.625rem 0.75rem;
    margin-bottom: 0.75rem;
  }

  .stat-icon {
    width: 38px;
    height: 38px;
    font-size: 0.975rem;
  }

  .stat-number {
    font-size: 1rem;
  }

  .stat-label {
    font-size: 0.775rem;
  }

  .hero-image-container {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 100%;
  }

  .hero-main-image {
    max-height: 280px;
    width: 100%;
  }

  .enhanced-hero-next,
  .enhanced-hero-prev {
    width: 45px !important;
    height: 45px !important;
    font-size: 14px !important;
  }

  .enhanced-hero-pagination {
    bottom: 25px !important;
  }
}

/* Mobile Small (below 576px) */
@media (max-width: 575px) {
  .enhanced-hero-slide {
    padding: 60px 0 40px;
    min-height: 75vh;
  }

  .enhanced-hero-swiper {
    height: 75vh;
  }

  .hero-title {
    font-size: 1.875rem;
    line-height: 1.3;
  }

  .enhanced-hero-content {
    padding: 0 0.75rem;
    margin-bottom: 1.5rem;
  }

  .hero-eyebrow .eyebrow-text {
    font-size: 0.825rem;
  }

  .hero-description {
    font-size: 0.925rem;
    line-height: 1.4;
  }

  .hero-buttons {
    gap: 0.5rem;
  }

  .hero-btn-primary,
  .hero-btn-outline {
    max-width: 260px;
    padding: 0.675rem 1rem;
    font-size: 0.9rem;
  }

  .hero-awards {
    max-width: 290px;
    gap: 0.625rem;
  }

  .award-title {
    font-size: 0.725rem;
  }

  .award-subtitle {
    font-size: 0.625rem;
  }

  .stat-label {
    font-size: 0.725rem;
  }

  .stat-number {
    font-size: 0.925rem;
  }

  .hero-main-image {
    max-height: 240px;
  }

  .enhanced-hero-pagination {
    bottom: 20px !important;
  }

  .enhanced-hero-next,
  .enhanced-hero-prev {
    width: 40px !important;
    height: 40px !important;
    font-size: 12px !important;
  }
}

/* Extra Small Mobile (below 480px) */
@media (max-width: 479px) {
  .enhanced-hero-slide {
    padding: 50px 0 35px;
    min-height: 70vh;
  }

  .enhanced-hero-swiper {
    height: 70vh;
  }

  .hero-title {
    font-size: 1.625rem;
    line-height: 1.35;
  }

  .enhanced-hero-content {
    padding: 0 0.5rem;
  }

  .hero-description {
    font-size: 0.875rem;
  }

  .hero-btn-primary,
  .hero-btn-outline {
    max-width: 240px;
    padding: 0.625rem 0.875rem;
    font-size: 0.85rem;
  }

  .hero-awards {
    max-width: 260px;
  }

  .award-item {
    padding: 0.5rem 0.625rem;
  }

  .award-icon {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }

  .hero-main-image {
    max-height: 200px;
  }

  .enhanced-hero-next,
  .enhanced-hero-prev {
    width: 35px !important;
    height: 35px !important;
    font-size: 10px !important;
  }
}

/* ========================================
   END ENHANCED HERO SECTION STYLES
======================================== */

/* Header enhancements: responsive layout, hover effects, shrink-on-scroll, demo button */
.header.navbar-area {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: padding 0.25s ease, box-shadow 0.25s ease,
    background-color 0.25s ease;
  background: var(--thm-menu-bg);
}

/* Community stats section (cards under Our Growing Community) */
.community-stats {
  padding: 100px 0 120px;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(248, 250, 252, 0.95) 0%,
    rgba(241, 245, 249, 0.98) 30%,
    rgba(255, 255, 255, 0.95) 60%,
    rgba(248, 250, 252, 0.95) 100%
  );
  overflow: hidden;
}

.community-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 15% 85%,
      rgba(37, 99, 235, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 85% 15%,
      rgba(249, 115, 22, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(139, 69, 19, 0.03) 0%,
      transparent 40%
    );
  pointer-events: none;
  animation: gradientShift 20s ease-in-out infinite;
}

.community-stats::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(37, 99, 235, 0.02) 2px,
    rgba(37, 99, 235, 0.02) 4px
  );
  animation: patternMove 30s linear infinite;
  pointer-events: none;
}

@keyframes gradientShift {
  0%,
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05) rotate(2deg);
  }
}

@keyframes patternMove {
  0% {
    transform: translateX(-50px) translateY(-50px);
  }
  100% {
    transform: translateX(50px) translateY(50px);
  }
}

.community-stats .container {
  position: relative;
  z-index: 2;
}

.community-stats .trusted-headline {
  margin-bottom: 4rem;
  position: relative;
  z-index: 3;
}

.community-stats .trusted-headline h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 800;
  position: relative;
}

.community-stats .trusted-headline h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--thm-primary), #f97316);
  border-radius: 2px;
  animation: underlineGrow 0.8s ease-out 0.5s both;
}

@keyframes underlineGrow {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 80px;
    opacity: 1;
  }
}

.community-stats .stats-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 0;
  font-weight: 500;
  max-width: 680px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes statsSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes counterAnimation {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

@keyframes iconBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) scale(1);
  }
  40% {
    transform: translateY(-8px) scale(1.1);
  }
  60% {
    transform: translateY(-4px) scale(1.05);
  }
}
.community-stats .cs-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 250, 252, 0.95) 50%,
    rgba(255, 255, 255, 0.98) 100%
  );
  border-radius: 24px;
  padding: 28px 24px;
  min-height: 140px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12),
    0 8px 16px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: statsSlideUp 0.8s ease-out;
  transform: translateY(0);
}

.community-stats .cs-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 100%
  );
  transition: left 0.8s ease;
  z-index: 1;
}

.community-stats .cs-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(37, 99, 235, 0.05) 50%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 24px;
  z-index: 1;
}

.community-stats .cs-card:hover::before {
  left: 100%;
}

.community-stats .cs-card:hover::after {
  opacity: 1;
}

.community-stats .cs-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15),
    0 12px 20px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(37, 99, 235, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(37, 99, 235, 0.3);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(248, 250, 252, 0.98) 50%,
    rgba(255, 255, 255, 1) 100%
  );
}

.community-stats .cs-card:nth-child(4n + 1) {
  animation-delay: 0.1s;
}

.community-stats .cs-card:nth-child(4n + 2) {
  animation-delay: 0.2s;
}

.community-stats .cs-card:nth-child(4n + 3) {
  animation-delay: 0.3s;
}

.community-stats .cs-card:nth-child(4n + 4) {
  animation-delay: 0.4s;
}
.community-stats .cs-icon {
  flex: 0 0 88px;
  height: 88px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    var(--thm-primary) 0%,
    rgba(59, 130, 246, 0.9) 40%,
    rgba(37, 99, 235, 0.95) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25),
    0 6px 12px rgba(37, 99, 235, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.community-stats .cs-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  border-radius: 20px;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.community-stats .cs-icon::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.4),
    transparent,
    rgba(255, 255, 255, 0.4)
  );
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
}

.community-stats .cs-card:hover .cs-icon {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.35),
    0 8px 16px rgba(37, 99, 235, 0.2), inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.community-stats .cs-card:hover .cs-icon::before {
  opacity: 0.6;
  animation-play-state: paused;
}

.community-stats .cs-card:hover .cs-icon::after {
  opacity: 1.5;
}

.community-stats .cs-icon img {
  max-width: 52px;
  max-height: 52px;
  display: block;
  filter: brightness(1.3) contrast(1.2)
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  z-index: 3;
  position: relative;
  transition: all 0.3s ease;
}

.community-stats .cs-icon i {
  font-size: 38px;
  color: #ffffff;
  display: inline-block;
  line-height: 1;
  z-index: 3;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.community-stats .cs-card:hover .cs-icon i {
  animation: iconBounce 0.8s ease;
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.community-stats .cs-card:hover .cs-icon img {
  transform: scale(1.1) rotate(-3deg);
  filter: brightness(1.4) contrast(1.3)
    drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}
.community-stats .cs-body {
  flex: 1;
  min-width: 0;
  z-index: 2;
  position: relative;
}

.community-stats .cs-body h3 {
  margin: 0 0 8px;
  font-size: 2rem;
  color: #0f172a;
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(
    135deg,
    #0f172a 0%,
    var(--thm-primary) 60%,
    #1e40af 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.02em;
}

.community-stats .cs-card:hover .cs-body h3 {
  animation: counterAnimation 0.5s ease;
  background: linear-gradient(
    135deg,
    var(--thm-primary) 0%,
    #1e40af 50%,
    #0f172a 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: scale(1.05);
}

.community-stats .cs-body p {
  margin: 0;
  color: #64748b;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}

.community-stats .cs-card:hover .cs-body p {
  color: #475569;
  transform: translateY(-1px);
}

/* Large Tablet and Desktop (992px - 1199px) */
@media (max-width: 1199px) {
  .community-stats {
    padding: 70px 0 80px;
  }

  .community-stats .trusted-headline h3 {
    font-size: 2.2rem;
  }

  .community-stats .stats-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
  }

  .community-stats .cs-card {
    padding: 22px 18px;
    gap: 18px;
    min-height: 125px;
    border-radius: 20px;
  }

  .community-stats .cs-icon {
    flex: 0 0 75px;
    height: 75px;
    border-radius: 18px;
  }

  .community-stats .cs-icon i {
    font-size: 32px;
  }

  .community-stats .cs-body h3 {
    font-size: 1.7rem;
  }

  .community-stats .cs-body p {
    font-size: 0.98rem;
  }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .community-stats {
    padding: 60px 0 70px;
  }

  .community-stats .trusted-headline {
    margin-bottom: 3rem;
  }

  .community-stats .trusted-headline h3 {
    font-size: 2rem;
  }

  .community-stats .stats-subtitle {
    font-size: 1.05rem;
    max-width: 550px;
  }

  .community-stats .cs-card {
    padding: 20px 16px;
    gap: 16px;
    min-height: 115px;
    border-radius: 18px;
  }

  .community-stats .cs-icon {
    flex: 0 0 70px;
    height: 70px;
    border-radius: 16px;
  }

  .community-stats .cs-icon img {
    max-width: 44px;
    max-height: 44px;
  }

  .community-stats .cs-icon i {
    font-size: 28px;
  }

  .community-stats .cs-body h3 {
    font-size: 1.6rem;
  }

  .community-stats .cs-body p {
    font-size: 0.95rem;
  }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) {
  .community-stats {
    padding: 50px 0 60px;
  }

  .community-stats .trusted-headline {
    margin-bottom: 2.5rem;
    padding: 0 15px;
  }

  .community-stats .trusted-headline h3 {
    font-size: 1.8rem;
    line-height: 1.4;
  }

  .community-stats .stats-subtitle {
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto 2.5rem;
  }

  .community-stats .cs-card {
    padding: 18px 14px;
    gap: 14px;
    min-height: 105px;
    border-radius: 16px;
    margin-bottom: 10px;
  }

  .community-stats .cs-icon {
    flex: 0 0 65px;
    height: 65px;
    border-radius: 14px;
  }

  .community-stats .cs-icon i {
    font-size: 26px;
  }

  .community-stats .cs-body h3 {
    font-size: 1.5rem;
  }

  .community-stats .cs-body p {
    font-size: 0.9rem;
  }
}

/* Mobile (480px - 575px) */
@media (max-width: 575px) {
  .community-stats {
    padding: 40px 0 50px;
  }

  .community-stats .trusted-headline h3 {
    font-size: 1.6rem;
  }

  .community-stats .stats-subtitle {
    font-size: 0.95rem;
    max-width: 400px;
  }

  .community-stats .cs-card {
    padding: 16px 12px;
    gap: 12px;
    min-height: 95px;
    border-radius: 14px;
  }

  .community-stats .cs-icon {
    flex: 0 0 58px;
    height: 58px;
    border-radius: 12px;
  }

  .community-stats .cs-icon i {
    font-size: 24px;
  }

  .community-stats .cs-body h3 {
    font-size: 1.35rem;
  }

  .community-stats .cs-body p {
    font-size: 0.85rem;
  }
}

/* Small Mobile (below 480px) */
@media (max-width: 479px) {
  .community-stats {
    padding: 35px 0 45px;
  }

  .community-stats .trusted-headline {
    margin-bottom: 2rem;
  }

  .community-stats .trusted-headline h3 {
    font-size: 1.4rem;
    padding: 0 10px;
  }

  .community-stats .stats-subtitle {
    font-size: 0.9rem;
    max-width: 320px;
    margin: 0 auto 2rem;
  }

  .community-stats .cs-card {
    padding: 14px 10px;
    gap: 10px;
    min-height: 85px;
    border-radius: 12px;
  }

  .community-stats .cs-icon {
    flex: 0 0 52px;
    height: 52px;
    border-radius: 10px;
  }

  .community-stats .cs-icon i {
    font-size: 20px;
  }

  .community-stats .cs-body h3 {
    font-size: 1.2rem;
  }

  .community-stats .cs-body p {
    font-size: 0.8rem;
  }

  .community-stats .cs-card:hover {
    transform: translateY(-6px) scale(1.02);
  }

  .community-stats .cs-body p {
    font-size: 0.85rem;
  }
}

/* Mobile (480px - 575px) */
@media (max-width: 575px) {
  .community-stats {
    padding: 35px 0 45px;
  }

  .community-stats .trusted-headline h3 {
    font-size: 1.4rem;
  }

  .community-stats .cs-card {
    padding: 14px 10px;
    gap: 10px;
    min-height: 90px;
    border-radius: 12px;
  }

  .community-stats .cs-icon {
    flex: 0 0 55px;
    height: 55px;
    border-radius: 10px;
  }

  .community-stats .cs-icon i {
    font-size: 20px;
  }

  .community-stats .cs-body h3 {
    font-size: 1.2rem;
  }

  .community-stats .cs-body p {
    font-size: 0.8rem;
  }
}

/* Small Mobile (below 480px) */
@media (max-width: 479px) {
  .community-stats {
    padding: 30px 0 40px;
  }

  .community-stats .trusted-headline {
    margin-bottom: 1.5rem;
  }

  .community-stats .trusted-headline h3 {
    font-size: 1.25rem;
    padding: 0 10px;
  }

  .community-stats .cs-card {
    padding: 12px 8px;
    gap: 8px;
    min-height: 80px;
    border-radius: 10px;
    margin-bottom: 8px;
  }

  .community-stats .cs-icon {
    flex: 0 0 50px;
    height: 50px;
    border-radius: 8px;
  }

  .community-stats .cs-icon i {
    font-size: 18px;
  }

  .community-stats .cs-body h3 {
    font-size: 1.1rem;
  }

  .community-stats .cs-body p {
    font-size: 0.75rem;
  }

  .community-stats .cs-card:hover {
    transform: translateY(-4px) scale(1.01);
  }
}

/* Community Stats Grid Enhancements */
.community-stats .row {
  row-gap: 1.5rem;
}

.community-stats [class*="col-"] {
  display: flex;
}

.community-stats .cs-card {
  width: 100%;
}

/* Stagger animation for cards */
.community-stats [class*="col-"]:nth-child(1) .cs-card {
  animation-delay: 0.1s;
}
.community-stats [class*="col-"]:nth-child(2) .cs-card {
  animation-delay: 0.2s;
}
.community-stats [class*="col-"]:nth-child(3) .cs-card {
  animation-delay: 0.3s;
}
.community-stats [class*="col-"]:nth-child(4) .cs-card {
  animation-delay: 0.4s;
}
.community-stats [class*="col-"]:nth-child(5) .cs-card {
  animation-delay: 0.5s;
}
.community-stats [class*="col-"]:nth-child(6) .cs-card {
  animation-delay: 0.6s;
}
.community-stats [class*="col-"]:nth-child(7) .cs-card {
  animation-delay: 0.7s;
}
.community-stats [class*="col-"]:nth-child(8) .cs-card {
  animation-delay: 0.8s;
}

/* Enhanced loading and interaction states */
@media (prefers-reduced-motion: no-preference) {
  .community-stats .cs-card {
    opacity: 0;
    animation: statsSlideUp 0.8s ease-out forwards;
  }
}

@media (prefers-reduced-motion: reduce) {
  .community-stats .cs-card {
    opacity: 1;
    animation: none;
  }

  .community-stats .cs-card:hover {
    transform: none;
  }
}

.header.navbar-area .nav-inner {
  padding: 14px 0;
  /* box-shadow: 0 6px 20px rgba(12, 18, 30, 0.06); */
}

/* Brand/logo */
.navbar-brand img {
  height: 48px;
  max-height: 48px;
  transition: transform 0.18s ease;
}
.navbar-brand img:hover {
  transform: scale(1.04);
}

/* Nav links styling and hover underline animation */
.navbar-nav .nav-item a {
  color: var(--thm-menu-color);
  padding: 0.5rem 1rem;
  display: inline-block;
  position: relative;
  transition: color 0.18s ease, background-color 0.18s ease;
}
.navbar-nav .nav-item a:focus {
  outline: 3px solid rgba(37, 99, 235, 0.15);
  outline-offset: 3px;
}
.navbar-nav .nav-item a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--thm-primary);
  border-radius: 2px;
  transition: width 0.22s ease, left 0.22s ease;
}
.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item a.active {
  color: var(--thm-primary);
}
.navbar-nav .nav-item a:hover::after,
.navbar-nav .nav-item a.active::after {
  width: 60%;
  left: 50%;
  transform: translateX(-50%);
}

/* Header buttons */
.header-btn .btn {
  border-radius: 6px;
  padding: 0.45rem 0.9rem;
}
/* Demo button styling */
.btn-demo {
  background: var(--thm-primary);
  color: #fff;
  border: 0;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.12);
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
}
.btn-demo:hover,
.btn-demo:focus {
  background: rgba(37, 99, 235, 0.95);
  transform: translateY(-1px);
  opacity: 0.98;
}
.btn-demo:active {
  transform: translateY(0);
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .navbar-brand img {
    height: 44px;
  }
  .header.navbar-area .nav-inner {
    padding: 8px 0;
  }
  .navbar-nav {
    background: var(--thm-menu-bg);
  }
  .navbar-nav .nav-item a {
    padding: 0.65rem 1rem;
  }
}
@media (max-width: 575px) {
  .navbar-brand img {
    height: 40px;
  }
  .navbar-nav .nav-item a {
    padding: 0.6rem 0.8rem;
  }
  .header-btn {
    display: flex;
    gap: 0.5rem;
  }
}

/* Two-color headline styles used in the community area */
:root {
  --thm-accent: #f97316; /* warm orange */
}
.trusted-headline h3 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--thm-header-text);
}
.trusted-headline h3 .accent {
  color: var(--thm-accent);
}
.trusted-headline h3 .brand {
  color: var(--thm-primary);
}

@media (max-width: 767px) {
  .trusted-headline h3 {
    font-size: 1.4rem;
  }
}

/* Why Choose Us Section - Modern Responsive Design */
.why-choose-section {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.why-choose-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.02) 0%,
    rgba(249, 115, 22, 0.02) 100%
  );
  pointer-events: none;
}

.why-intro {
  position: relative;
  z-index: 2;
}

.why-eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, var(--thm-primary), var(--thm-accent));
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--thm-header-text);
}

.why-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 32px;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  display: flex;
  align-items: center;
  padding: 12px 0;
  font-size: 1rem;
  color: #374151;
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.why-list li:last-child {
  border-bottom: none;
}

.why-list li i {
  color: var(--thm-primary);
  font-size: 1.2rem;
  margin-right: 16px;
  flex-shrink: 0;
}

/* Media Container */
.why-media {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative Shapes */
.why-shape {
  position: absolute;
  border-radius: 20px;
  z-index: 1;
}

.why-shape--primary {
  width: 100px;
  height: 100px;
  top: 15%;
  left: 8%;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;

  animation: float 6s ease-in-out infinite, glow 4s ease-in-out infinite;
  backdrop-filter: blur(10px);

  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-shape--primary:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.35),
    0 12px 24px rgba(37, 99, 235, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  animation-play-state: paused;
}

.why-shape--primary img {
  width: 80px;
  height: auto;
  max-width: 100%;
  filter: brightness(1.1) contrast(1.1)
    drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.why-shape--primary:hover img {
  transform: scale(1.1) rotate(5deg);
  filter: brightness(1.2) contrast(1.2)
    drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25),
      0 8px 16px rgba(37, 99, 235, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3),
      0 0 0 0 rgba(37, 99, 235, 0);
  }
  50% {
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.35),
      0 8px 16px rgba(37, 99, 235, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.4),
      0 0 30px 5px rgba(37, 99, 235, 0.2);
  }
}

.why-shape--teal {
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    #f97316 0%,
    rgba(249, 115, 22, 0.9) 50%,
    rgba(251, 146, 60, 0.8) 100%
  );
  bottom: 18%;
  right: 12%;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.25),
    0 6px 12px rgba(249, 115, 22, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: float 6s ease-in-out infinite 2s,
    glow-orange 4s ease-in-out infinite 1s;
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-shape--teal:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.35),
    0 8px 16px rgba(249, 115, 22, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  animation-play-state: paused;
}

.why-shape--teal::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s ease;
}

.why-shape--teal:hover::after {
  transform: translate(-50%, -50%) rotate(225deg) scale(1.1);
  background: rgba(255, 255, 255, 0.4);
}

@keyframes glow-orange {
  0%,
  100% {
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.25),
      0 6px 12px rgba(249, 115, 22, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 0 0 rgba(249, 115, 22, 0);
  }
  50% {
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.35),
      0 6px 12px rgba(249, 115, 22, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      0 0 25px 3px rgba(249, 115, 22, 0.2);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-15px) rotate(2deg) scale(1.02);
  }
  50% {
    transform: translateY(-25px) rotate(5deg) scale(1.05);
  }
  75% {
    transform: translateY(-15px) rotate(3deg) scale(1.02);
  }
}

/* Hero Image */
.why-hero {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.why-hero img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.why-hero img:hover {
  transform: scale(1.02);
}

/* Icon Photos */
.why-photo {
  position: absolute;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  z-index: 4;
  transition: transform 0.3s ease;
}

.why-photo:hover {
  transform: scale(1.1);
}

.why-photo i {
  font-size: 24px;
  color: var(--thm-primary);
}

.why-photo--top {
  top: 15%;
  right: -10px;
  animation: bounce 2s infinite 0.5s;
}

.why-photo--middle {
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  animation: bounce 2s infinite 1s;
}

.why-photo--bottom {
  bottom: 20%;
  right: 20%;
  animation: bounce 2s infinite 1.5s;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Tablet Responsive (768px - 1199px) */
@media (max-width: 1199px) {
  .why-intro h2 {
    font-size: 2.2rem;
  }

  .why-media {
    min-height: 420px;
  }

  .why-shape--primary {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    padding: 16px;
  }

  .why-shape--primary img {
    width: 70px;
  }

  .why-shape--teal {
    width: 85px;
    height: 85px;
    border-radius: 20px;
  }

  .why-photo {
    width: 55px;
    height: 55px;
  }

  .why-photo i {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .why-choose-section {
    padding: 60px 0;
  }

  .why-intro {
    text-align: center;
    margin-bottom: 40px;
  }

  .why-intro h2 {
    font-size: 2rem;
  }

  .why-media {
    min-height: 380px;
  }

  .why-hero {
    max-width: 420px;
  }
}

/* Mobile Responsive (below 768px) */
@media (max-width: 767px) {
  .why-choose-section {
    padding: 40px 0;
  }

  .why-intro h2 {
    font-size: 1.8rem;
  }

  .why-intro p {
    font-size: 1rem;
  }

  .why-media {
    min-height: 320px;
    margin-top: 30px;
  }

  .why-hero {
    max-width: 320px;
  }

  .why-shape--primary {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    padding: 12px;
    top: 8%;
    left: 3%;
  }

  .why-shape--primary img {
    width: 60px;
  }

  .why-shape--teal {
    width: 75px;
    height: 75px;
    border-radius: 18px;
    bottom: 12%;
    right: 6%;
  }

  .why-photo {
    width: 45px;
    height: 45px;
  }

  .why-photo i {
    font-size: 18px;
  }

  .why-photo--top {
    top: 5%;
    right: -5px;
  }

  .why-photo--middle {
    left: -10px;
  }

  .why-photo--bottom {
    bottom: 15%;
    right: 15%;
  }
}

/* Small Mobile (below 480px) */
@media (max-width: 479px) {
  .why-eyebrow {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .why-intro h2 {
    font-size: 1.6rem;
  }

  .why-list li {
    font-size: 0.9rem;
  }

  .why-hero {
    max-width: 280px;
  }

  .why-shape--primary {
    width: 90px;
    height: 90px;
    border-radius: 18px;
    padding: 10px;
    top: 5%;
    left: 2%;
    display: flex; /* Override the display: none */
  }

  .why-shape--primary img {
    width: 50px;
  }

  .why-shape--teal {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    bottom: 10%;
    right: 4%;
    display: flex; /* Override the display: none */
  }

  .why-photo {
    width: 40px;
    height: 40px;
  }

  .why-photo i {
    font-size: 16px;
  }
}

/* ========================================
   TESTIMONIALS SECTION STYLES
======================================== */

/* Testimonials Section Background and Layout */
.testimonials-section {
  background: linear-gradient(
    135deg,
    rgba(248, 250, 252, 0.98) 0%,
    rgba(241, 245, 249, 0.95) 30%,
    rgba(255, 255, 255, 0.97) 60%,
    rgba(248, 250, 252, 0.98) 100%
  );
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  color: #1e293b;
}

/* Background patterns and overlays */
.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(37, 99, 235, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(249, 115, 22, 0.04) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
  animation: gradientShift 20s ease-in-out infinite;
}

.testimonials-section::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(37, 99, 235, 0.02) 2px,
    rgba(37, 99, 235, 0.02) 4px
  );
  animation: backgroundFlow 20s ease-in-out infinite;
  pointer-events: none;
}

/* Testimonials Header Styles */
.testimonials-header {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.testimonials-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(37, 99, 235, 0.08);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #2563eb;
}

.testimonials-eyebrow .eyebrow-icon {
  color: #f97316;
  font-size: 16px;
}

.testimonials-header h2 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #1e293b 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-header .brand-highlight {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Testimonials Grid Layout - Updated for Slider */
.testimonials-slider-container {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.testimonials-swiper {
  width: 100%;
  height: auto;
  overflow: visible;
}

.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.testimonials-swiper .testimonial-card {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.testimonials-swiper .testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.testimonials-swiper .testimonial-content blockquote {
  flex: 1;
  display: flex;
  align-items: center;
  margin: 20px 0 0 0;
}

.testimonials-swiper .testimonial-author {
  margin-top: auto;
}

/* Ensure featured testimonial doesn't break layout in slider */
.testimonials-swiper .featured-testimonial {
  grid-column: unset;
  min-height: 320px;
}

/* Testimonials Grid Layout - Legacy (keep for fallback) */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

/* Testimonial Card Base Styles */
.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  cursor: pointer;
  box-shadow: 0 4px 25px rgba(37, 99, 235, 0.08);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.05) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-12px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15),
    0 0 0 1px rgba(37, 99, 235, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.testimonial-card:hover::before {
  opacity: 1;
}

/* Featured Testimonial */
.featured-testimonial {
  grid-column: span 2;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(37, 99, 235, 0.2);
  position: relative;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
}

.featured-testimonial::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(
    135deg,
    #2563eb,
    #3b82f6,
    transparent,
    transparent
  );
  border-radius: 24px;
  z-index: -1;
  opacity: 0.15;
}

/* Testimonial Content */
.testimonial-content {
  margin-bottom: 32px;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-rating .fas.fa-star {
  color: #f97316;
  font-size: 18px;
  filter: drop-shadow(0 0 4px rgba(249, 115, 22, 0.4));
}

.testimonial-card blockquote {
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 400;
  color: #374151;
  margin: 0;
  font-style: italic;
  position: relative;
  padding-left: 24px;
}

.testimonial-card blockquote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 3rem;
  color: rgba(37, 99, 235, 0.3);
  font-family: Georgia, serif;
  line-height: 1;
}

.featured-testimonial blockquote {
  font-size: 1.25rem;
  line-height: 1.6;
}

/* Testimonial Author */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-avatar {
  position: relative;
  flex-shrink: 0;
}

.author-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(37, 99, 235, 0.15);
  filter: brightness(1.1) contrast(1.1);
}

.avatar-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.avatar-badge i {
  font-size: 10px;
  color: white;
}

.author-info h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 4px 0;
}

.author-info p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0 0 8px 0;
}

.author-school {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #2563eb;
  font-weight: 500;
}

.author-school i {
  font-size: 12px;
}

/* Testimonials Stats */
.testimonials-stats {
  position: relative;
  z-index: 2;
}

/* Swiper Navigation Styles */
.testimonials-next,
.testimonials-prev {
  width: 56px !important;
  height: 56px !important;
  background: rgba(37, 99, 235, 0.1) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(37, 99, 235, 0.2) !important;
  border-radius: 50% !important;
  color: #2563eb !important;
  font-size: 18px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  margin-top: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.testimonials-next:hover,
.testimonials-prev:hover {
  background: rgba(37, 99, 235, 0.15) !important;
  border-color: rgba(37, 99, 235, 0.4) !important;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.2) !important;
  color: #1d4ed8 !important;
}

.testimonials-next {
  right: -28px !important;
}

.testimonials-prev {
  left: -28px !important;
}

.testimonials-next::after,
.testimonials-prev::after {
  content: "" !important;
}

.testimonials-next i,
.testimonials-prev i {
  font-size: 16px;
  line-height: 1;
}

/* Swiper Pagination Styles */
.testimonials-pagination {
  position: relative !important;
  bottom: 0 !important;
  margin-top: 40px !important;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: rgba(37, 99, 235, 0.2) !important;
  border: 2px solid rgba(37, 99, 235, 0.3) !important;
  opacity: 1 !important;
  margin: 0 8px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%) !important;
  border-color: #2563eb !important;
  transform: scale(1.2) !important;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.4) !important;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 4px 25px rgba(37, 99, 235, 0.08);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  line-height: 1.05;
}

.stat-label {
  font-size: 1rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 8px;
}

.stat-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
}

.stat-stars .fas.fa-star {
  color: #f97316;
  font-size: 14px;
  filter: drop-shadow(0 0 4px rgba(249, 115, 22, 0.4));
}

/* Responsive Design */
@media (max-width: 1199px) {
  .testimonials-header h2 {
    font-size: 3rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
  }

  .featured-testimonial {
    grid-column: span 1;
  }

  .testimonials-next {
    right: -20px !important;
  }

  .testimonials-prev {
    left: -20px !important;
  }
}

@media (max-width: 991px) {
  .testimonials-section {
    padding: 100px 0 80px;
  }

  .testimonials-header {
    margin-bottom: 60px;
  }

  .testimonials-header h2 {
    font-size: 2.5rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
  }

  .testimonial-card {
    padding: 32px 24px;
  }
}

@media (max-width: 767px) {
  .testimonials-section {
    padding: 80px 0 60px;
  }

  .testimonials-header {
    margin-bottom: 50px;
  }

  .testimonials-header h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .testimonials-subtitle {
    font-size: 1.125rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }

  .testimonial-card {
    padding: 28px 20px;
  }

  .testimonial-card blockquote {
    font-size: 1rem;
    padding-left: 20px;
  }

  .featured-testimonial blockquote {
    font-size: 1.125rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px 15px;
  }

  .stat-number {
    font-size: 2rem;
  }

  /* Slider specific mobile styles */
  .testimonials-slider-container {
    margin-bottom: 50px;
  }

  .testimonials-swiper .testimonial-card {
    min-height: 280px;
  }

  .testimonials-next,
  .testimonials-prev {
    width: 48px !important;
    height: 48px !important;
    font-size: 14px !important;
  }

  .testimonials-next {
    right: 10px !important;
  }

  .testimonials-prev {
    left: 10px !important;
  }

  .testimonials-pagination {
    margin-top: 30px !important;
  }

  .testimonials-pagination .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    margin: 0 6px !important;
  }
}

@media (max-width: 575px) {
  .testimonials-section {
    padding: 60px 0 50px;
  }

  .testimonials-header h2 {
    font-size: 1.75rem;
  }

  .testimonials-eyebrow {
    padding: 10px 20px;
    font-size: 12px;
  }

  .testimonial-card {
    padding: 24px 16px;
  }

  .testimonial-author {
    gap: 16px;
  }

  .author-avatar img {
    width: 56px;
    height: 56px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 25px 10px;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  /* Smaller screens slider adjustments */
  .testimonials-swiper .testimonial-card {
    min-height: 260px;
  }

  .testimonials-next,
  .testimonials-prev {
    width: 44px !important;
    height: 44px !important;
    font-size: 12px !important;
  }

  .testimonials-next {
    right: 5px !important;
  }

  .testimonials-prev {
    left: 5px !important;
  }

  .testimonials-swiper {
    padding: 15px 0 50px;
  }
}

@media (max-width: 479px) {
  .testimonials-header h2 {
    font-size: 1.5rem;
  }

  .testimonials-subtitle {
    font-size: 1rem;
  }

  .testimonial-card blockquote {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .author-info h4 {
    font-size: 1rem;
  }

  .author-info p {
    font-size: 0.875rem;
  }

  /* Ultra-small screens slider adjustments */
  .testimonials-swiper .testimonial-card {
    min-height: 240px;
  }
}

/* Animation for floating effect */
@keyframes backgroundFlow {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(-1%) translateY(-0.5%);
  }
  50% {
    transform: translateX(1%) translateY(0.5%);
  }
  75% {
    transform: translateX(-0.5%) translateY(-1%);
  }
}

/* Hover animation for testimonial cards */
.testimonial-card {
  animation: subtleFloat 6s ease-in-out infinite;
}

.testimonial-card:nth-child(2n) {
  animation-delay: -2s;
}

.testimonial-card:nth-child(3n) {
  animation-delay: -4s;
}

@keyframes subtleFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Accessibility and Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  .testimonial-card,
  .testimonials-section::after {
    animation: none;
  }

  .testimonial-card:hover {
    transform: translateY(-4px);
  }
}

/* ========================================
   END TESTIMONIALS SECTION STYLES
======================================== */

/* ========================================
   MODERN CONTACT SECTION DESIGN
======================================== */

/* Contact Section Layout */
.section.call-action {
  background: linear-gradient(
    135deg,
    rgba(248, 250, 252, 0.95) 0%,
    rgba(241, 245, 249, 0.98) 30%,
    rgba(255, 255, 255, 0.95) 60%,
    rgba(248, 250, 252, 0.95) 100%
  );
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.section.call-action::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 15% 85%,
      rgba(37, 99, 235, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 85% 15%,
      rgba(249, 115, 22, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(139, 69, 19, 0.03) 0%,
      transparent 40%
    );
  pointer-events: none;
  animation: gradientShift 20s ease-in-out infinite;
}

.contact-container {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  min-height: 600px;
}

/* Contact Information Panel (Dark Side) */
.contact-info-panel {
  background: linear-gradient(
    160deg,
    rgba(37, 99, 235, 0.95) 0%,
    rgba(14, 165, 233, 0.85) 60%,
    rgba(37, 99, 235, 0.78) 100%
  );
  color: white;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 600px;
  position: relative;
}

.contact-info-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* 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.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>')
    repeat; */
  opacity: 0.3;
  pointer-events: none;
}

.contact-info-content {
  position: relative;
  z-index: 2;
}

.contact-info-panel h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.contact-info-panel .subtitle {
  font-size: 1rem;
  color: white;
  line-height: 1.6;
  margin-bottom: 3rem;
}

/* Contact Details */
.contact-details {
  margin-bottom: 3rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 0;
  background: none;
  border: none;
}

.contact-detail-item:last-child {
  margin-bottom: 0;
}

.contact-detail-icon {
  width: 20px;
  height: 20px;
  margin-right: 1rem;
  color: white;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.contact-detail-text {
  color: #e2e8f0;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-detail-text a {
  color: white !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Social Media Icons */
.contact-social {
  position: relative;
  z-index: 2;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e2e8f0;
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.25);
}

/* Contact Form Panel (Light Side) */
.contact-form-panel {
  padding: 3rem;
  background: #ffffff;
  display: flex;
  align-items: center;
  min-height: 600px;
}

.contact-form-content {
  width: 100%;
}

.contact-form-panel h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.contact-form-panel .subtitle {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* Form Styling */
.modern-form-grid {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group.grid-col-2 {
  grid-column: span 2;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  line-height: 1.5;
  color: #1e293b;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control::placeholder {
  color: #94a3b8;
}

.form-control:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
  transform: translateY(-1px);
}

.form-control:hover:not(:focus) {
  border-color: #cbd5e1;
}

/* Textarea */
textarea.form-control {
  resize: vertical;
  min-height: 120px;
  grid-column: span 2;
}

/* Submit Button */
.submit-button {
  background: #0d6ef0;
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.submit-button:hover {
  transform: translateY(-2px);
}

.submit-button:active {
  transform: translateY(-1px);
}

/* Alert Messages */
.alert {
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border: none;
  font-weight: 500;
}

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
  border-left: 4px solid #22c55e;
}

.alert-danger {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border-left: 4px solid #ef4444;
}

/* Error Messages */
.error {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.error:not(:empty) {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Large Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
  .section.call-action {
    padding: 100px 0;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 2.5rem;
  }

  .contact-info-panel h3,
  .contact-form-panel h2 {
    font-size: 1.875rem;
  }
}

/* Laptop/Desktop (992px - 1199px) */
@media (max-width: 1199px) {
  .section.call-action {
    padding: 90px 0;
  }

  .contact-container {
    border-radius: 20px;
    min-height: 550px;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 2.25rem;
    min-height: 550px;
  }

  .contact-info-panel h3,
  .contact-form-panel h2 {
    font-size: 1.75rem;
  }
}

/* Tablet Large (768px - 991px) */
@media (max-width: 991px) {
  .section.call-action {
    padding: 80px 0;
  }

  .contact-container {
    min-height: auto;
    border-radius: 18px;
  }

  .contact-row {
    flex-direction: column;
  }

  .contact-info-panel {
    min-height: auto;
    padding: 2rem;
    border-radius: 18px 18px 0 0;
  }

  .contact-form-panel {
    min-height: auto;
    padding: 2rem;
    border-radius: 0 0 18px 18px;
  }

  .contact-info-panel h3,
  .contact-form-panel h2 {
    font-size: 1.625rem;
    text-align: center;
  }

  .contact-details {
    margin-bottom: 2rem;
  }

  .social-icons {
    justify-content: center;
  }
}

/* Tablet Small/Large Mobile (576px - 767px) */
@media (max-width: 767px) {
  .section.call-action {
    padding: 70px 0;
  }

  .contact-container {
    margin: 0 1rem;
    border-radius: 16px;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 1.75rem;
  }

  .contact-info-panel h3,
  .contact-form-panel h2 {
    font-size: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .modern-form-grid {
    gap: 1.25rem;
  }

  .form-control {
    padding: 0.875rem 1rem;
    border-radius: 10px;
  }

  .submit-button {
    width: 100%;
    justify-content: center;
  }

  .social-icons {
    gap: 0.75rem;
  }

  .social-icon {
    width: 44px;
    height: 44px;
    font-size: 1.125rem;
  }
}

/* Mobile Small (below 576px) */
@media (max-width: 575px) {
  .section.call-action {
    padding: 60px 0;
  }

  .contact-container {
    margin: 0 0.75rem;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 1.5rem;
  }

  .contact-info-panel h3,
  .contact-form-panel h2 {
    font-size: 1.375rem;
  }

  .contact-detail-item {
    margin-bottom: 1.5rem;
  }

  .form-control {
    padding: 0.75rem 0.875rem;
    font-size: 0.925rem;
  }

  textarea.form-control {
    min-height: 100px;
  }

  .submit-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Extra Small Mobile (below 480px) */
@media (max-width: 479px) {
  .section.call-action {
    padding: 50px 0;
  }

  .contact-container {
    margin: 0 0.5rem;
    border-radius: 14px;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 1.25rem;
  }

  .contact-info-panel h3,
  .contact-form-panel h2 {
    font-size: 1.25rem;
  }

  .contact-info-panel .subtitle,
  .contact-form-panel .subtitle {
    font-size: 0.9rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .contact-detail-text {
    font-size: 0.9rem;
  }
}

/* ========================================
   END MODERN CONTACT SECTION DESIGN
======================================== */

/* ========================================
   MOKUP IMAGE ENHANCEMENT
======================================== */

/* Mobile App Mockup Styling */
.mokup {
  max-width: 600px !important;
  width: 65% !important;
  height: auto !important;
  min-height: 500px !important;
  object-fit: contain;
  transform: scale(1.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.mokup:hover {
  transform: scale(1.25);
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.2));
}

/* Mobile App Visual Container */
.mobile-app-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 2rem;
}

/* Responsive Mokup Sizing */
@media (max-width: 1399px) {
  .mokup {
    max-width: 550px !important;
    min-height: 450px !important;
    transform: scale(1.15);
  }

  .mokup:hover {
    transform: scale(1.2);
  }
}

@media (max-width: 1199px) {
  .mokup {
    max-width: 500px !important;
    min-height: 400px !important;
    transform: scale(1.1);
  }

  .mokup:hover {
    transform: scale(1.15);
  }
}

@media (max-width: 991px) {
  .mokup {
    max-width: 450px !important;
    min-height: 350px !important;
    transform: scale(1.05);
  }

  .mokup:hover {
    transform: scale(1.1);
  }

  .mobile-app-visual {
    text-align: center;
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {
  .mokup {
    max-width: 400px !important;
    min-height: 300px !important;
    transform: scale(1);
  }

  .mokup:hover {
    transform: scale(1.05);
  }
}

@media (max-width: 575px) {
  .mokup {
    max-width: 350px !important;
    min-height: 250px !important;
    transform: scale(0.95);
  }

  .mokup:hover {
    transform: scale(1);
  }
}

@media (max-width: 479px) {
  .mokup {
    max-width: 300px !important;
    min-height: 200px !important;
    transform: scale(0.9);
  }

  .mokup:hover {
    transform: scale(0.95);
  }

  .mobile-app-visual {
    padding: 1rem;
  }
}

/* ========================================
   END MOKUP IMAGE ENHANCEMENT
======================================== */
