@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');

:root {
  --themeColor: #BA427D;
  --primaryColor: #6E508E;
  --secondaryColor: #EDCF6F1A;
  --blackColor: #000;
  --whiteColor: #fff;
  --whiteLightColor: #D1D5DB;
  --textcolor: #111827;
  --textLightColor: #6B7280;
  --navBgColor: #F9FAFB;
}

/* CUSTOM CSS HERE */
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  line-height: normal !important;
}


body {
  margin: 0;
  padding: 0;
  height: 100dvh;
  font-weight: 400;
  box-sizing: border-box;
  line-height: normal !important;
  background: linear-gradient(to bottom,
      #E9E9E9 0%,
      #FFFFFF 5%) !important;
}

/* Custom Scrollbar */
.page-scroll-area {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.page-scroll-area::-webkit-scrollbar {
  width: 4px;
}

.page-scroll-area::-webkit-scrollbar-track {
  background: #b1b1b1c0;
  border-radius: 10px;
}

.page-scroll-area::-webkit-scrollbar-thumb {
  background: var(--themeColor);
  border-radius: 10px;
}

.container {
  max-width: 1260px !important;
}

body::-webkit-scrollbar {
  display: none;
}

a {
  text-decoration: none !important;
}

/* FONT SIZE */
.font-40 {
  font-size: clamp(1.875rem, 1.5rem + 1.5vw, 2.5rem) !important;
}

.font-36 {
  font-size: clamp(1.75rem, 1.5rem + 1vw, 2.25rem) !important;
}

.font-30 {
  font-size: clamp(1.375rem, 1.125rem + 1vw, 1.875rem) !important;
}

.font-24 {
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem) !important;
}

.font-20 {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem) !important;
}

.font-18 {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem) !important;
}

.font-16 {
  font-size: clamp(0.75rem, 0.6994rem + 0.2532vw, 1rem);
}

.font-14 {
  font-size: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem) !important;
}

.font-12 {
  font-size: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem) !important;
}

.font-10 {
  font-size: 10px;
}

.max-w-100 {
  max-width: 100% !important;
}

/* FONT WEIGHT */
.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

/* COLOR */
.primaryColor {
  color: var(--primaryColor);
}

.themeColor {
  color: var(--themeColor) !important;
}

.secondaryColor {
  color: var(--secondaryColor);
}

.textColor {
  color: var(--textcolor);
}

.textLightColor {
  color: var(--textLightColor);
}

.whiteLightColor {
  color: var(--whiteLightColor);
}

.grayColor {
  color: #4B5563;
}

.purpleColor {
  color: #6E508E;
}

.greenColor {
  color: #059669;
}

.skyColor {
  color: #9AD3FF;
}

.yellowColor {
  color: #F5BB5C;
}

.blueColor {
  color: #4318FF;
}

.bgYellowColor {
  background-color: #F5BB5C;
}

.bgGreenColor {
  background-color: #059669;
}

.bgBlueColor {
  background-color: #53A6E6;
}

.bgPinkColor {
  background-color: #ED6FAD;
}

.bgPurpleColor {
  background-color: #6E508E;
}

.bgThemeColor {
  background-color: var(--themeColor) !important;
}

.line-height-26 {
  line-height: 26px !important;
}

.line-height-28 {
  line-height: 28px !important;
}

.line-height-22 {
  line-height: 22px !important;
}

.cursor-pointer {
  cursor: pointer;
}


/* ---------------- NAVBAR GLOBAL ---------------- */
.navbar-container {
  width: 100%;
  padding: 24px 0;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 998;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom,
      #E9E9E9 0%,
      #FFFFFF 5%);
  ;
}

.nav-logo img {
  transition: all 0.3s ease;
  width:  clamp(5.625rem, 4.0625rem + 5vw, 6.875rem);
  scale: 1.2;
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-container {
  padding: 0;
}

.nav-toggle {
  width: 1.5rem;
  height: 1.125rem;
  display: flex;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}

.nav-toggle span {
  width: 100%;
  height: 0.1875rem;
  background: var(--textcolor);
  border-radius: 0.125rem;
  transition: all 0.4s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}

.nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 1rem;
  background: var(--whiteColor);
  width: 15rem;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.nav-link-item {
  color: #374151;
  text-decoration: none;
  padding: 0.625rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.nav-link-item:hover {
  color: var(--textcolor);
}

.nav-link-item.active {
  color: var(--themeColor);
}

.nav-login-btn {
  color: var(--themeColor);
  text-decoration: none;
  padding: 6px 24px;
  border: 1px solid var(--themeColor);
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-login-btn:hover {
  background: rgba(237, 111, 173, 0.05);
}

.nav-signup-btn {
  color: var(--whiteColor);
  text-decoration: none;
  padding: 6px 24px;
  background: var(--themeColor);
  border: 1.5px solid var(--themeColor);
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-signup-btn:hover {
  background: #D85E9A;
  border-color: #D85E9A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(237, 111, 173, 0.3);
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    background: none;
    box-shadow: none;
    padding: 0;
    width: auto;
    gap: 0.5rem;
    margin-top: 0;
  }

  .nav-link-item {
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 991px) {
  .nav-menu {
    align-items: flex-start;
  }
}


/* ---------------- LOGIN PAGE ---------------- */
.login-wrapper {
  background: #FFF6FB;
  overflow: hidden;
}

.login-bg-vector-left {
  left: -70px;
  transform: translateY(-50%);
  z-index: 1;
  bottom: 0;
  pointer-events: none;
}

.login-bg-vector-right {
  right: -70px;
  transform: translateY(-50%);
  z-index: 1;
  top: 100px;
  pointer-events: none;
}

.login-card {
  background: var(--whiteColor);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(237, 111, 173, 0.15);
  border: 1px solid #F3F4F6;
}

.login-logo img {
  width: 170px;
  height: auto;
}

.login-input {
  padding: 14px 18px;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  font-size: 14px;
  color: var(--textcolor);
  transition: all 0.3s ease;
  background: #F9FAFB;
}

.login-input:focus {
  border-color: var(--themeColor);
  box-shadow: 0 0 0 4px rgba(237, 111, 173, 0.1);
  background: var(--whiteColor);
  outline: none;
}

.login-input::placeholder {
  color: #9CA3AF;
}

.password-toggle-btn {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  padding: 4px;
  transition: all 0.3s ease;
}

.password-toggle-btn img {
  width: 20px;
  height: 20px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.password-toggle-btn:hover img {
  opacity: 0.8;
}

.form-check-input:checked {
  background-color: var(--themeColor);
  border-color: var(--themeColor);
}

.form-check-input:focus {
  box-shadow: 0 0 0 4px rgba(237, 111, 173, 0.1);
  border-color: var(--themeColor);
}

.cursor-pointer {
  cursor: pointer;
}

.forgot-password-link {
  text-decoration: none;
  transition: all 0.3s ease;
}

.forgot-password-link:hover {
  opacity: 0.8;
}

.login-btn {
  background: linear-gradient(135deg, var(--themeColor) 0%, #F48FB1 50%, var(--themeColor) 100%);
  background-size: 200% 200%;
  border-radius: 12px;
  padding: 14px 24px;
  font-weight: 600;
  animation: loginGradientShift 3s ease infinite, loginPulse 2s ease-in-out infinite;
  box-shadow: 0 8px 20px rgba(237, 111, 173, 0.35), 0 0 0 0 rgba(237, 111, 173, 0.45);
  transition: all 0.3s ease;
}

@keyframes loginGradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes loginPulse {

  0%,
  100% {
    box-shadow: 0 8px 20px rgba(237, 111, 173, 0.35), 0 0 0 0 rgba(237, 111, 173, 0.45);
  }

  50% {
    box-shadow: 0 12px 28px rgba(237, 111, 173, 0.55), 0 0 0 10px rgba(237, 111, 173, 0);
  }
}

.login-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: loginShine 2.2s ease-in-out infinite;
}

@keyframes loginShine {
  0% {
    left: -120%;
  }

  50%,
  100% {
    left: 120%;
  }
}

.login-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 35px rgba(237, 111, 173, 0.6), 0 0 0 0 rgba(237, 111, 173, 0);
  animation: none;
  background-position: 100% 50%;
  color: var(--whiteColor);
}

.login-btn:active {
  transform: translateY(-1px) scale(0.97);
}


.divider-line {
  height: 1px;
  background: #E5E7EB;
}

.divider-text {
  white-space: nowrap;
}

.google-btn {
  background: var(--whiteColor);
  border: 1px solid var(--themeColor);
  border-radius: 12px;
  padding: 14px 24px;
  color: var(--themeColor);
  transition: all 0.3s ease;
}

.google-btn img {
  width: 20px;
  height: 20px;
}

.google-btn:hover {
  border-color: var(--themeColor);
  background: rgba(237, 111, 173, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(237, 111, 173, 0.15);
}

.signup-link {
  text-decoration: none;
  transition: all 0.3s ease;
}

.signup-link:hover {
  opacity: 0.8;
}

.terms-link {
  color: var(--themeColor);
  text-decoration: none;
  transition: all 0.3s ease;
}

.terms-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.login-form {
  position: relative;
  z-index: 10;
}

.circle-points {
  background-color: #F3F4F6;
  border-radius: 50%;
  height: 12px;
  width: 12px;
}

.white-filter {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(138deg) brightness(103%) contrast(101%);
}

/* ---------------- HERO SECTION ---------------- */
.hero-section {
  padding: clamp(2rem, 5vw, 5rem) 0;
}

/* ---------------- COMMON SECTION STYLES ---------------- */
.section-title {
  color: var(--textcolor);
}

.hero-title {
  font-size: clamp(1.875rem, 1.5712rem + 1.519vw, 3.375rem);
  letter-spacing: 3px;
}

.hero-highlight {
  font-family: "Caveat", cursive;
  font-size: clamp(2.8125rem, 0.8594rem + 6.25vw, 4.375rem);
}

.section-title-highlight {
  font-family: "Caveat", cursive;
  font-size: clamp(2.5rem, 1.7188rem + 2.5vw, 3.125rem);
}

.hero-btn-primary {
  padding: clamp(0.625rem, 0.3125rem + 1vw, 0.875rem) clamp(1.125rem, 0.9545rem + 0.9091vw, 1.75rem);
  background: var(--primaryColor);
  color: var(--whiteColor);
  border: none;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.hero-btn-primary:hover {
  background: #442b5f;
  color: var(--whiteColor);
  transform: translateY(-2px);
}

.hero-btn-secondary {
  padding: clamp(0.625rem, 0.3125rem + 1vw, 0.875rem) clamp(1.125rem, 0.9545rem + 0.9091vw, 1.75rem);
  background: transparent;
  color: var(--primaryColor);
  border: 2px solid var(--primaryColor);
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  background: rgba(165, 111, 237, 0.05);
  color: var(--primaryColor);
}

.hero-trust {
  opacity: 0.8;
}

.hero-card {
  background: linear-gradient(135deg, #3BB2F6 0%, #9333EA 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(59, 178, 246, 0.3);
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-stat-card-purple {
  background: rgba(147, 51, 234, 0.3);
}

.hero-stat-label {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.hero-stat-value {
  color: var(--whiteColor);
}

.hero-placeholder-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  aspect-ratio: 1;
  width: 100%;
}

/* ---------------- PRICING SECTION ---------------- */
.billing-section {
  margin-bottom: 2rem;
  border-bottom: 1px solid #4B55634D;
  border-top: 1px solid #4B55634D;
  padding: 10px;
}


.billing-title {
  color: var(--textcolor);
}

.billing-subtitle {
  color: var(--textLightColor);
}

.billing-toggle {
  background: #FFFFFF4D;
  border-radius: 12px;
  display: inline-flex;
  border: 1px solid #ED6FAD;
  overflow: hidden;
}

.billing-tab {
  background: transparent;
  border: none;
  padding: clamp(0.5rem, 0.1875rem + 1vw, 0.75rem)  clamp(1.5rem, 0.875rem + 2vw, 2rem) !important;
  font-weight: 500;
  color: var(--themeColor) !important;
  transition: all 0.3s ease;
  position: relative;
}

.billing-tab.active {
  background: var(--themeColor);
  color: var(--whiteColor) !important;
  box-shadow: 0 2px 8px rgba(237, 111, 173, 0.3);
  border-radius: 8px !important;
}

.billing-tab:hover:not(.active) {
  color: var(--textcolor);
  background: rgba(237, 111, 173, 0.1);
}

.pricing-card {
  background: var(--whiteColor);
  border-radius: 12px;
  padding: 33px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--themeColor);
}

.pricing-card-featured {
  background: #059669;
  border: 1px solid #059669;
  position: relative;
}

.pricing-card-featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #FF6B35;
  color: var(--whiteColor);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.pricing-card-featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 20px 60px rgba(237, 111, 173, 0.25);
}

.pricing-header {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-card-featured .pricing-header {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-amount {
  line-height: 1;
}

.price-period {
  line-height: 1;
}

.price-annual {
  font-size: 12px;
  margin-top: 4px;
  opacity: 0.9;
}


.pricing-btn {
  border-radius: 12px;
  padding: 14px 24px;
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(65, 56, 60, 0.3);
}

.pricing-btn-featured {
  background: var(--whiteColor);
  color: var(--themeColor);
  border: 1px solid var(--whiteColor);
  border-radius: 12px;
  padding: 14px 24px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.pricing-btn-featured:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--themeColor);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.pricing-features {
  padding: 0;
}

.starter-list li {
  img {
    filter: brightness(0) saturate(100%) invert(87%) sepia(96%) saturate(6079%) hue-rotate(313deg) brightness(100%) contrast(92%);
  }
}

.enterprise-list li {
  img {
    filter: brightness(0) saturate(100%) invert(34%) sepia(17%) saturate(1403%) hue-rotate(226deg) brightness(95%) contrast(88%);
  }
}

.feature-item {
  align-items: flex-start;
  margin-bottom: 12px;
}

.feature-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;

}

.pricing-card-featured .feature-check {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(109deg) brightness(105%) contrast(105%);
}

@media (max-width: 768px) {
  .billing-tab {
    padding: 10px 24px;
    font-size: 14px;
  }

  .pricing-card {
    padding: 24px 20px;
  }

  .pricing-header {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

/* ---------------- SOCIAL CHANNELS SECTION ---------------- */
.social-channels-section {
  padding: 0px 0px clamp(3rem, 5vw, 4rem);
  overflow: hidden;
}

.social-slider-wrapper {
  overflow: hidden;
  padding: 20px 0;
}

.social-slider {
  display: flex;
  gap: 24px;
  animation: slideLeft 20s linear infinite;
  width: fit-content;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.social-slider:hover {
  animation-play-state: paused;
}

.social-card {
  background: var(--whiteColor);
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--themeColor);
}

.social-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.social-name {
  color: var(--textcolor);
  text-align: center;
}

/* ---------------- ANALYTICS SECTION ---------------- */
.analytics-section {
  padding: 0px 0px clamp(3rem, 5vw, 5rem);
}

.analytics-title {
  line-height: 1.2 !important;
}

.analytics-stat-card {
  padding: 16px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.analytics-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(116, 113, 114, 0.103);
}

.analytics-stat-label {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.analytics-stat-value {
  color: var(--whiteColor);
}

.analytics-visual-card {
  background: linear-gradient(to left, #DBEAFE, #DCFCE7);
  border-radius: 16px;
  height: 300px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* ---------------- INSTAGRAM SCHEDULING SECTION ---------------- */
.instagram-section {
  padding: 0px 0px clamp(3rem, 5vw, 5rem);
}

.instagram-dashboard-card {
  border-radius: 16px;
  overflow: hidden;
}

.instagram-dashboard-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------------- CTA SECTION ---------------- */
.cta-section {
  padding: clamp(4rem, 6vw, 6rem) 0;
  background-image: url('../images/png/social-media-bg-img.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70%;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0px 16px 16px rgba(0, 0, 0, 0.25);
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ED6FAD4D;
  z-index: 1;
}

.cta-section .container {
  z-index: 2;
}

.cta-title {
  position: relative;
  z-index: 2;
}

.cta-desc {
  z-index: 2;
  color: #F8FAFC;
}

/* ---------------- FEATURES SECTION ---------------- */
.features-section {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.feature-visual-card {
  height: 300px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-card-blue {
  background: linear-gradient(90deg, #DBEAFE 0%, #F3E8FF 100%);
}

.feature-card-gradient {
  background: linear-gradient(90deg, #E0E7FF 0%, #DBEAFE 100%);
}

.feature-card-pink {
  background: linear-gradient(90deg, #F3E8FF 0%, #FCE7F3 100%);
}

.feature-title {
  color: var(--textcolor);
}

.feature-desc {
  max-width: 500px;
}

.feature-check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-list li {
  transition: all 0.3s ease;
}

.feature-list li:hover {
  transform: translateX(5px);
}

/* ---------------- COLLABORATE SECTION ---------------- */
.collaborate-section {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.collaborate-card {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  padding: 10px;
  transition: all 0.3s ease;
  box-shadow: 0px 16px 16px rgba(0, 0, 0, 0.25);
}

.collaborate-card-1 {
  min-height: 180px;
}

.collaborate-card-2 {
  min-height: 220px;
  margin-bottom: 20px;
}

.collaborate-card-3 {
  min-height: 180px;
}

.collaborate-card-4 {
  min-height: 220px;
  margin-bottom: 20px;
}

.collaborate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--themeColor);
}

.collaborate-card-title {
  margin: 0;
}

/* ---------------- PACKAGE COMPARISON SECTION ---------------- */
.package-comparison-section {
  padding: clamp(3rem, 5vw, 5rem) 0;

}

.comparison-table-wrapper {
  overflow-x: auto;
  overflow-y: visible;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  border: none;
  position: relative;
}

.comparison-table {
  min-width: 800px;
  width: 100%;
  margin-top: 50px;
  position: relative;
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: var(--whiteColor);
  border-bottom: 2px solid #F3F4F6;
}

.comparison-header-cell {
  padding: 24px 20px;
  border-right: 1px solid #E5E7EB;
}

.comparison-header-cell:last-child {
  border-right: none;
}

.feature-name-header {
  background: #F9FAFB;
}

.plan-header {
  text-align: center;
  background: var(--whiteColor);
}

.comparison-btn {
  background: transparent;
  color: #4B5563;
  border: 1px solid #70707080;
  border-radius: clamp(0.625rem, 0.5744rem + 0.2532vw, 0.875rem);
  padding: 8px 26px;
  transition: all 0.3s ease;
}

.comparison-btn:hover {
  background: var(--themeColor);
  color: var(--whiteColor);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(237, 111, 173, 0.3);
}

.comparison-section-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  margin-top: 0;
}

.content-creation-header {
  background: #059669;
  border-radius: 12px 12px 0px 0px;
}

.publishing-header {
  background: #F59E0B;
}

.engagement-header {
  background: #9AD3FF;
}

.analytics-header {
  background: #ED6FAD;
}

.collaboration-header {
  background: #6E508E;
}

.support-header {
  background: #374151;
}

.section-title-cell {
  padding: 16px 20px;
}


.section-empty-cell:last-child {
  border-right: none;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 2px solid #4B556366;
  border-left: 2px solid #4B556366;
  border-right: 2px solid #4B556366;
  transition: all 0.3s ease;
}

.comparison-row:hover {
  background: rgba(237, 111, 173, 0.02);
}


.feature-cell {
  padding: 20px;
  border-right: 2px solid #4B556366;
  background: #fff;
}

.value-cell {
  padding: 20px;
  text-align: center;
  border-right: 2px solid #4B556366;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--whiteColor);
}

.value-cell span {
  color: #374151;
}

.value-cell:last-child {
  border-right: none;
}

.comparison-check {
  width: 20px;
  height: 20px;
}

.green-filter {
  filter: brightness(0) saturate(100%) invert(42%) sepia(15%) saturate(4410%) hue-rotate(125deg) brightness(93%) contrast(96%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .comparison-table-wrapper {
    margin: 0;
    border-radius: 0;
  }

  .comparison-header-cell,
  .feature-cell,
  .value-cell,
  .section-title-cell {
    padding: 16px 12px;
  }

  .comparison-btn {
    padding: 6px 16px;
    font-size: 12px;
  }

  .feature-cell h5 {
    font-size: 14px;
  }

  .feature-cell p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .comparison-table {
    min-width: 600px;
  }
}

/* ---------------- TESTIMONIALS SECTION ---------------- */
.testimonials-section {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: var(--secondaryColor);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow: hidden;
}

.testimonials-slider-wrapper {
  overflow: hidden;
  padding: 20px 0;
}

.testimonials-slider {
  display: flex;
  gap: 24px;
  animation: slideTestimonials 25s linear infinite;
  width: fit-content;
}

@keyframes slideTestimonials {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.testimonials-slider:hover {
  animation-play-state: paused;
}

.testimonial-card {
  background: var(--whiteColor);
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 28px;
  min-width: 350px;
  max-width: 350px;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
  font-style: italic;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--themeColor);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  line-height: 1.4;
}

.testimonial-role {
  line-height: 1.4;
}

/* ---------------- FINAL CTA SECTION ---------------- */
.final-cta-section {
  padding: clamp(4rem, 6vw, 6rem) 0;
  background: linear-gradient(to top, #54544CBF 0%, #EDCF6F1A 100%);
  position: relative;
}

.final-cta-title {
  color: var(--textcolor);
}

.final-cta-desc {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


.final-cta-btn-secondary {
  background: transparent;
  color: var(--whiteColor);
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 1px solid var(--whiteColor);
}

.final-cta-btn-secondary:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}

/* ---------------- SCROLL ANIMATIONS ---------------- */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.scroll-animate-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate-left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate-right.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate-scale.animate-in {
  opacity: 1;
  transform: scale(1);
}

.scroll-animate-delay-1 {
  transition-delay: 0.1s;
}

.scroll-animate-delay-2 {
  transition-delay: 0.2s;
}

.scroll-animate-delay-3 {
  transition-delay: 0.3s;
}

.scroll-animate-delay-4 {
  transition-delay: 0.4s;
}


/* ---------------- FAQ SECTION ---------------- */
.faq-section {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: linear-gradient(to bottom, #F9FAFB 0%, #FFFFFF 100%);
}

.faq-accordion {
  border: none;
}

.faq-item {
  background: var(--whiteColor);
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(237, 111, 173, 0.15);
  border-color: var(--themeColor);
}

.faq-button {
  background: transparent;
  border: none;
  padding: 24px 28px;
  width: 100%;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: none;
}

.faq-button:not(.collapsed) {
  background: #ed6fad12 !important;
  border-bottom: 1px solid #F3F4F6 !important;
  box-shadow: none !important;
}

.faq-button:focus {
  box-shadow: none;
  border: none;
}

.faq-button::after {
  content: '+';
  position: absolute;
  right: 28px;
}


.faq-button span {
  padding-right: 60px;
  display: block;
  line-height: 1.4 !important;
}

.faq-body {
  padding: 0 28px 28px 28px;
  background: var(--whiteColor);
}

.accordion-collapse {
  border: none;
}

/* FAQ Animation */
.faq-item.scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.faq-item.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.faq-item:nth-child(1) {
  transition-delay: 0.1s;
}

.faq-item:nth-child(2) {
  transition-delay: 0.2s;
}

.faq-item:nth-child(3) {
  transition-delay: 0.3s;
}

.faq-item:nth-child(4) {
  transition-delay: 0.4s;
}

.faq-item:nth-child(5) {
  transition-delay: 0.5s;
}

.faq-item:nth-child(6) {
  transition-delay: 0.6s;
}

.faq-item:nth-child(7) {
  transition-delay: 0.7s;
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-button {
    padding: 20px 24px;
  }

  .faq-button::after {
    right: 24px;
  }

  .faq-button span {
    padding-right: 50px;
  }

  .faq-body {
    padding: 0 24px 24px 24px;
  }
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: var(--whiteColor);
  padding: clamp(3.75rem, 3rem + 3vw, 5rem) 0 0;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--themeColor) 50%, transparent 100%);
  opacity: 0.6;
}

.footer-logo {
  width: clamp(8.75rem, 8rem + 3vw, 10rem);
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-desc {
  color: rgba(244, 244, 244, 0.75);
  line-height: 1.7;
}

.footer-title {
  margin-bottom: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  color: var(--whiteColor);
  letter-spacing: 0.5px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: clamp(2.5rem, 2rem + 2vw, 3.125rem);
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor) 0%, transparent 100%);
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 5px;
}

.footer-links {
  gap: 12px;
}

.footer-links a {
  color: rgba(244, 244, 244, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  color: var(--themeColor);
  transition: all 0.3s ease;
  font-weight: bold;
}

.footer-links a:hover {
  color: var(--themeColor);
  padding-left: 20px;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  left: 0;
  opacity: 1;
}

.footer-contact p {
  color: rgba(244, 244, 244, 0.7);
  line-height: 1.6;
}

.footer-contact a {
  color: rgba(244, 244, 244, 0.7);
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: var(--whiteColor);
  transform: translateX(5px);
}

.footer-contact a svg {
  stroke: rgba(244, 244, 244, 0.7);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.footer-contact a:hover svg {
  stroke: var(--themeColor);
}

.footer-contact-link {
  color: rgba(244, 244, 244, 0.7);
  transition: color 0.3s ease;
}

.footer-contact a:hover .footer-contact-link {
  color: var(--whiteColor);
}

.footer-contact .semibold {
  color: var(--whiteColor);
}

.footer-social-link {
  color: #9CA3AF;
  font-size: clamp(0.75rem, 0.4375rem + 1vw, 1rem);
}

.footer-icon {
  width: clamp(2.5rem, 2.25rem + 1vw, 2.875rem);
  height: clamp(2.5rem, 2.25rem + 1vw, 2.875rem);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  aspect-ratio: 1;
}

.footer-icon img {
  filter: brightness(0) invert(1);
  width: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  height: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  object-fit: contain;
  transition: all 0.3s ease;
}

.footer-icon:hover {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-color: var(--themeColor);
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 8px 20px rgba(133, 194, 38, 0.4);
}

.footer-icon:hover img {
  transform: scale(1.1);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.1) 80%, transparent 100%);
}

.footer-legal-link {
  color: rgba(244, 244, 244, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.footer-legal-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--themeColor);
  transition: width 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--whiteColor);
}

.footer-legal-link:hover::after {
  width: 100%;
}

.footer-separator {
  color: rgba(244, 244, 244, 0.3);
}

.borderTop {
  border-top: 1px solid #6F7987;
}

.footer-bottom p {
  color: #9CA3AF;
}


/* Country Code Dropdown Styles */
.flag-img {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}

.country-code-wrapper {
  position: relative;
  flex: 0 0 auto;
  width: 110px;
}

.country-code-display {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}

.country-code-display:hover {
  border-color: var(--themeColor);
}

.country-code-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  z-index: 1000;
  background: var(--whiteColor);
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 4px;
  display: none;
}

.country-code-dropdown.show {
  display: block;
}

.country-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.country-option:hover {
  background-color: #f0f0f0;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  font-size: 12px;
}

.dropdown-arrow.open {
  transform: rotate(180deg);
}

/* ---------------- FEATURES TABS SECTION ---------------- */

.features-tabs-nav {
  border: none;
  gap: 12px;
  flex-wrap: wrap;
}

.tab-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.features-tab-btn:hover .tab-icon {
  filter: brightness(0) saturate(100%) invert(17%) sepia(8%) saturate(1037%) hue-rotate(202deg) brightness(95%) contrast(88%);
}

.features-tab-btn.active .tab-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(109deg) brightness(105%) contrast(105%);
}

.features-tabs {
  .features-tab-btn {
    background: #E1E1E180;
    border: none;
    border-radius: 12px !important;
    padding: 8px 30px;
    color: #111827;
    transition: all 0.3s ease;
    box-shadow: none;
    min-width: 160px;
  }
}

.features-tab-btn:hover {
  background: #D1D5DB;
  color: var(--textcolor);
  transform: translateY(-1px);
}

.features-tab-btn.active {
  background: var(--primaryColor);
  color: var(--whiteColor);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(110, 80, 142, 0.3);
}


.features-tab-content {
  margin-top: 60px;
}

.tab-content-text {
  padding-right: 20px;
}

.tab-title {
  color: var(--textcolor);
  margin-bottom: 20px;
  line-height: 1.3;
}

.tab-desc {
  color: var(--textLightColor);
  line-height: 1.6;
  margin-bottom: 32px;
}

.tab-features-list {
  margin-bottom: 32px;
}

.tab-features-list li {
  padding: 8px 0;
  transition: all 0.3s ease;
}

.tab-features-list li:hover {
  transform: translateX(5px);
}

.tab-features-list img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(42%) sepia(15%) saturate(4410%) hue-rotate(125deg) brightness(93%) contrast(96%);
}

.tab-cta-btn {
  background: transparent;
  color: var(--themeColor);
  border: 2px solid var(--themeColor);
  border-radius: 12px;
  padding: 12px 28px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  z-index: 1;
}

.tab-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--themeColor);
  transition: all 0.3s ease;
  z-index: -1;
}

.tab-cta-btn:hover {
  color: var(--whiteColor);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(237, 111, 173, 0.3);
}

.tab-cta-btn:hover::before {
  left: 0;
}

.tab-image-container {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.tab-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.tab-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* Tab Animation */
.tab-pane {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-pane.show.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design for Tabs */
@media (max-width: 992px) {
  .tab-content-text {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .tab-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .features-tabs-nav {
    justify-content: center;
    gap: 8px;
  }

  .features-tab-btn {
    padding: 12px 20px;
    font-size: 14px;
    min-width: 140px;
  }

  .tab-icon {
    width: 16px;
    height: 16px;
    font-size: 12px;
  }

  .features-tab-content {
    margin-top: 40px;
  }

  .tab-title {
    font-size: 24px;
    text-align: center;
  }

  .tab-desc {
    text-align: center;
  }

  .tab-features-list {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .features-tabs-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .features-tab-btn {
    width: 100%;
    justify-content: center;
    min-width: auto;
  }
}

/* ---------------- FEATURES GRID SECTION ---------------- */

.features-item {
  background: var(--whiteColor);
  border: 1px solid #E5E7EB;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  border-radius: 16px;
}

.features-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.features-icon-bg {
  width: clamp(3rem, 3rem + 0.5vw, 3.5rem);
  height: clamp(3rem, 3rem + 0.5vw, 3.5rem);
  background: var(--whiteColor);
  border-radius: 12px;
  border: 2px solid;
  transition: all 0.3s ease;
}

.features-icon-green {
  border-color: #059669;
}

.features-icon-yellow {
  border-color: #F5BB5C;
}

.features-icon-sky {
  border-color: #9AD3FF;
}

.features-icon-purple {
  border-color: #6E508E;
}

.features-icon-gray {
  border-color: #D82D7E;
}

.features-icon-blue {
  border-color: #4318FF;
}

.features-item:hover .features-icon-bg {
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .features-icon-bg {
    width: 50px;
    height: 50px;
  }

  .features-item .features-item-body {
    padding: 1.5rem !important;
  }
}

/* ---------------- COMPARISON SECTION ---------------- */
.comparison-section {
  background: var(--whiteColor);
}

.feature-comparison-wrapper {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.feature-comparison-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
}

.feature-comparison-header {
  background: transparent;
  border-bottom: 2px solid #E5E7EB;
}

.feature-comparison-row {
  background: transparent;
  border-bottom: 1px solid #F3F4F6;
  transition: none;
}

.feature-comparison-row:hover {
  background: transparent;
}

.feature-comparison-row:last-child {
  border-bottom: none;
}

.feature-comparison-item {
  padding: 16px 24px;
}



.feature-cross-text {
  font-weight: 300;
  color: #9CA3AF;
}

/* Responsive Design */
@media (max-width: 768px) {
  .feature-comparison-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .feature-comparison-item {
    padding: 12px 16px;
    font-size: 14px;
  }

  .feature-check-green,
  .feature-check-gray {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 576px) {
  .feature-comparison-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-comparison-item {
    padding: 12px;
    border-bottom: 1px solid #F3F4F6;
  }

  .feature-comparison-item:last-child {
    border-bottom: none;
  }
}


@media (max-width: 576px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .comparison-cell {
    padding: 12px;
    border-bottom: 1px solid #F3F4F6;
  }

  .comparison-cell:last-child {
    border-bottom: none;
  }
}

/* ---------------- SOCIAL MEDIA INTEGRATION CARDS ---------------- */
.connect-btn {
  background: transparent;
  color: var(--themeColor);
  border: 1px solid var(--themeColor);
  border-radius: 8px;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.connect-btn:hover {
  background: var(--themeColor);
  color: var(--whiteColor);
  transform: translateY(-1px);
}

.coming-soon-btn {
  background: #F3F4F6;
  color: #9CA3AF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: not-allowed;
}

.coming-soon-btn:disabled {
  background: #F3F4F6;
  color: #9CA3AF;
  border: 1px solid #E5E7EB;
}

/* ---------------- CONNECT STEPS SECTION ---------------- */

.connect-step-item {
  transition: all 0.3s ease;
}

.connect-step-item:hover {
  transform: translateY(-3px);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 10px #00000038;
}

.step-number-purple {
  background: #6E508E;
}

.step-number-yellow {
  background: #F5BB5C;
}

.step-number-green {
  background: #059669;
}

.connect-step-item:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.step-content h5 {
  line-height: 1.3;
}

.step-content p {
  line-height: 1.5;
}

/* Responsive adjustments for connect steps */
@media (max-width: 992px) {
  .connect-step-item {
    justify-content: center;
    text-align: center;
    gap: 1rem !important;
  }

  .step-content {
    text-align: center;
  }
}

@media (max-width: 768px) {

  .step-content {
    text-align: left;
  }

  .step-number {
    width: 35px;
    height: 35px;
  }
}

.borderBottom {
  border-bottom: 1px solid #E1E1E1;
}

/* ---------------- INTEGRATION CARDS SECTION ---------------- */
.integration-card {
  background: var(--whiteColor);
  border: 1px solid #E5E7EB;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.integration-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.integration-card-green {
  border: 1px solid #059669;

}

.integration-card-yellow {
  border: 1px solid #F5BB5C;
}

.integration-card-pink {
  border: 1px solid #D82D7E;
}

.integration-card-blue {
  border: 1px solid #6E508E;
}

.integration-icon-bg {
  width: clamp(3rem, 3rem + 0.5vw, 3.5rem);
  height: clamp(3rem, 3rem + 0.5vw, 3.5rem);
  background: var(--whiteColor);
  border-radius: 12px;
  border: 2px solid #E5E7EB;
  transition: all 0.3s ease;
}

.integration-card-green .integration-icon-bg {
  background: #059669;
}

.integration-card-yellow .integration-icon-bg {
  background: #F5BB5C;
}

.integration-card-pink .integration-icon-bg {
  background: #ED6FAD;
}

.integration-card-gray .integration-icon-bg {
  background: #4B5563;
}

.integration-card:hover .integration-icon-bg {
  transform: scale(1.1);
}

/* Responsive adjustments for integration cards */
@media (max-width: 768px) {
  .integration-icon-bg {
    width: 50px;
    height: 50px;
  }

  .integration-card .integration-card-body {
    padding: 1.5rem !important;
  }
}

/* ---------------- FILTER CLASSES ---------------- */
.gray-filter {
  filter: brightness(0) saturate(100%) invert(60%) sepia(8%) saturate(872%) hue-rotate(202deg) brightness(90%) contrast(85%);
}

.blue-filter {
  filter: brightness(0) saturate(100%) invert(37%) sepia(55%) saturate(419%) hue-rotate(226deg) brightness(84%) contrast(96%);
}

.yellow-filter {
  filter: brightness(0) saturate(100%) invert(67%) sepia(74%) saturate(385%) hue-rotate(344deg) brightness(107%) contrast(92%);
}

.instagram-theme {
  background: linear-gradient(190deg, #FE238B, #FA8F21);
}

.instagram-theme:hover {
  background: linear-gradient(90deg, #FE238B, #FA8F21);
}

.connect-btn {
  border-radius: 8px;
  border: 1px solid #E1E1E1;
  padding: 10px;
  color: #707070;
  background-color: #fff;
}

.webinars-card {
  border-radius: 16px;
  border: 1px solid #E1E1E1;
  padding: 16px;
}

/* ---------------- VIDEO TUTORIALS SECTION ---------------- */
.video-tutorial-card {
  background: var(--whiteColor);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #E5E7EB;
}

.video-tutorial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.video-thumbnail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition: background 0.3s ease;
}

.video-tutorial-card:hover .video-thumbnail::before {
  background: rgba(0, 0, 0, 0.3);
}

.video-thumbnail img {
  transition: transform 0.3s ease;
}

.video-tutorial-card:hover .video-thumbnail img {
  transform: scale(1.05);
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  transition: all 0.3s ease;
  animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

.video-play-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent var(--themeColor);
  transition: all 0.3s ease;
}

.video-tutorial-card:hover .video-play-icon {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--whiteColor);
  animation: none;
}

.video-tutorial-card:hover .video-play-icon::before {
  border-color: transparent transparent transparent var(--primaryColor);
}

.video-card-body {
  padding: 20px;
}

.video-watch-link {
  text-decoration: none;
  transition: all 0.3s ease;
}

.video-watch-link:hover {
  color: var(--themeColor) !important;
  gap: 8px;
}

.video-watch-link span {
  transition: transform 0.3s ease;
}

.video-watch-link:hover span {
  transform: translateX(3px);
}

.video-watch-link:hover {
  color: var(--themeColor) !important;
  gap: 8px;
}

.video-watch-link span {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.video-watch-link:hover span {
  transform: translateX(3px);
}

/* ---------------- BLOG SECTION ---------------- */
.blog-sidebar-link {
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-sidebar-link:hover {
  color: var(--themeColor) !important;
  padding-left: 8px;
}

.blog-card {
  background: var(--whiteColor);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid #E5E7EB;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-thumbnail img {
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-thumbnail img {
  transform: scale(1.05);
}

.blog-badge {
  top: 12px;
  left: 12px;
  background: var(--primaryColor);
  color: var(--whiteColor);
  padding: 6px 16px;
  border-radius: 20px;
}

.blog-card-body {
  padding: 16px;
}

.blog-read-link {
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-read-link:hover {
  color: var(--themeColor) !important;
  gap: 8px;
}

.blog-read-link span {
  transition: transform 0.3s ease;
}

.blog-read-link:hover span {
  transform: translateX(3px);
}

.blog-card-body p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------------- CHANNEL COUNTER ---------------- */
.channel-counter {
  background: var(--whiteColor);
  border: 1px solid #707070;
  border-radius: 12px;
  padding: 6px 12px;
}

.channel-btn {
  width:clamp(1.25rem, 0.4688rem + 2.5vw, 1.875rem);
  height: clamp(1.25rem, 0.4688rem + 2.5vw, 1.875rem);
  border-radius: 6px;
  border: none;
  background: #E1E1E1;
  color: #707070;
  transition: all 0.3s ease;
}

.channel-btn:hover {
  background: #E5E7EB;
  color: var(--textcolor);
}

.channel-btn:active {
  transform: scale(0.95);
}

/* ---------------- OTP INPUT ---------------- */
.otp-container {
  max-width: 100%;
}

.otp-input {
  width: clamp(2.5rem, 4vw + 1rem, 4rem);
  height: clamp(2.5rem, 4vw + 1rem, 4rem);
  border: 1px solid #707070;
  border-radius: 12px;
  background: #F9FAFB;
  transition: all 0.3s ease;
  outline: none;
}

.otp-input:focus {
  border-color: var(--themeColor);
  background: var(--whiteColor);
  box-shadow: 0 0 0 4px rgba(237, 111, 173, 0.1);
}

.otp-input:not(:placeholder-shown) {
  background: var(--whiteColor);
}
