/* ============================================
   TECHICEE LANDING PAGE STYLES
   CreatedBy: Mohammad Arshad
   Organization:Object Square
   ============================================ */

/* ============================================
   1. CSS VARIABLES & RESET
   ============================================ */
:root {
  --primary-purple: #8b5cf6;
  --primary-purple-light: #a78bfa;
  --primary-yellow: #fcd34d;
  --primary-yellow-light: #fde68a;
  --primary-blue: #3b82f6;
  --primary-blue-light: #60a5fa;
  --primary-teal: #14b8a6;
  --primary-orange: #f97316;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --border-color: #e2e8f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--bg-white);
}

/* ============================================
   2. NAVIGATION BAR
   ============================================ */
.navbar {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-purple);
}

.nav-buttons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.btn-nav-outline {
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--primary-purple);
  border-radius: 8px;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-nav-outline:hover {
  border-color: var(--primary-purple);
  color: var(--primary-purple);
  background: rgba(139, 92, 246, 0.05);
}

.btn-nav-primary {
  padding: 0.5rem 1.25rem;
  background: var(--primary-purple);
  border-radius: 8px;
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
}

.btn-nav-primary:hover {
  background: var(--primary-blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
  color: white;
}

/* ============================================
   3. HERO/BANNER SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-wrapper video,
.hero-bg-wrapper img,
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.92), rgba(59, 130, 246, 0.88));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding-right: 2rem;
}

.badge-custom {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 1.5rem 0 1rem;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-yellow), var(--primary-yellow-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-hero-primary {
  padding: 0.875rem 1.75rem;
  background: var(--primary-yellow);
  color: var(--text-primary);
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: none;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(252, 211, 77, 0.4);
  color: var(--text-primary);
}

.btn-hero-outline {
  padding: 0.875rem 1.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.stats-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
}

.stat-box {
  text-align: left;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-yellow);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.85;
  margin: 0;
}

.form-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.form-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  text-align: center;
  color: #1e3a8a;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.form-input-wrapper {
  position: relative;
  margin-bottom: 0.75rem;
}

.form-input-wrapper .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-size: 1.1rem;
  z-index: 2;
  pointer-events: none;
}

.form-control-modern {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text-primary);
  background: white;
  transition: all 0.2s ease;
  font-family: "Inter", sans-serif;
}

.form-control-modern:focus {
  outline: none;
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-control-modern::placeholder {
  color: var(--text-secondary);
}

.form-check-wrapper {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.form-check-input-modern {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-color);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

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

.form-check-label-modern {
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1.4;
}

.form-privacy-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 1rem;
}

.form-privacy-text a {
  color: var(--primary-purple);
  text-decoration: underline;
}

.btn-submit-orange {
  width: 100%;
  padding: 0.875rem;
  background: linear-gradient(135deg, var(--primary-orange), #ea580c);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

/* ============================================
   5. FEATURES SECTION
   ============================================ */
.features-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.feature-box {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-icon-wrapper.purple {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-light));
  color: white;
}

.feature-icon-wrapper.blue {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
  color: white;
}

.feature-icon-wrapper.teal {
  background: linear-gradient(135deg, var(--primary-teal), #0d9488);
  color: white;
}

.feature-icon-wrapper.yellow {
  background: linear-gradient(135deg, var(--primary-yellow), var(--primary-yellow-light));
  color: var(--text-primary);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.feature-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   6. PRICING SECTION
   ============================================ */
.pricing-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.pricing-carousel {
  margin-top: 2.5rem;
  padding: 0 40px 50px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 0;
  margin: 0 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: auto;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue), var(--primary-teal));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card.highlighted {
  background: linear-gradient(145deg, #ffffff 0%, #faf5ff 100%);
  border: 2px solid var(--primary-purple);
}

.pricing-card.highlighted::before {
  opacity: 1;
  background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue));
  height: 5px;
}

.pricing-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-header {
  text-align: center;
  padding: 1rem ;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(59, 130, 246, 0.05));
  position: relative;
  border-radius: 8px;
}

.pricing-card.highlighted .pricing-header {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.1));
}

.pricing-header h5 {
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-header p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}

.pricing-body {
  flex: 1;
  padding: 1.5rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
}

.price {
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--text-primary), var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 0.5rem;
  /*line-height: 1;*/
  letter-spacing: -0.5px;
}

.pricing-card.highlighted .price {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex: 1;
  max-height: 350px;
  overflow-y: auto;
  padding-right: 8px;
}

.pricing-features::-webkit-scrollbar {
  width: 4px;
}

.pricing-features::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.pricing-features::-webkit-scrollbar-thumb {
  background: var(--primary-purple);
  border-radius: 10px;
}

.pricing-features li {
  padding: 0.6rem 0;
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-weight: 500;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pricing-features .available {
  color: #10b981;
}

.pricing-features .unavailable {
  color: #cbd5e1;
  opacity: 0.6;
}

.pricing-footer {
  padding: 0 1.5rem 1.75rem;
}

.pricing-footer .btn {
  width: 100%;
  padding: 0.85rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.pricing-footer .btn-primary {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
  border: none;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.pricing-footer .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4);
}

.pricing-footer .btn-outline-primary {
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  background: transparent;
}

.pricing-footer .btn-outline-primary:hover {
  background: var(--primary-purple);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}


/* ============================================
   7. SCREENSHOTS SLIDER SECTION
   ============================================ */
/* Redesigned Screenshots Section with Keka-style layout */
.screenshots-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
  overflow: hidden;
}

.screenshots-showcase {
  margin-top: 40px;
}

/* Feature Navigation (Left Side) */
.screenshot-features-nav {
  padding-right: 20px;
}

.feature-nav-item {
  display: flex;
  gap: 20px;
  padding: 24px 20px;
  margin-bottom: 12px;
  border-radius: 16px;
  background: white;
  border: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.feature-nav-item:hover {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  border-color: rgba(139, 92, 246, 0.2);
  transform: translateX(8px);
}

.feature-nav-item.active {
  background: linear-gradient(135deg, #faf5ff 0%, #f3f4ff 100%);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
  transform: translateX(8px);
}

.feature-nav-item.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-purple), var(--primary-blue));
  border-radius: 4px 0 0 4px;
}

.feature-nav-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-nav-item:hover .feature-nav-icon,
.feature-nav-item.active .feature-nav-icon {
  transform: scale(1.1);
}

.feature-nav-icon.purple {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-light));
  color: white;
}

.feature-nav-icon.blue {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
  color: white;
}

.feature-nav-icon.teal {
  background: linear-gradient(135deg, var(--primary-teal), #0d9488);
  color: white;
}

.feature-nav-icon.yellow {
  background: linear-gradient(135deg, var(--primary-yellow), var(--primary-yellow-light));
  color: var(--text-primary);
}

.feature-nav-content {
  flex: 1;
}

.feature-nav-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.feature-nav-item.active .feature-nav-content h4 {
  color: var(--primary-purple);
}

.feature-nav-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Screenshot Display (Right Side) */
.screenshot-display {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.screenshot-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  /* Changed from scale/translateY to translateX for slide effect */
  transform: translateX(100%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-wrapper.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  /* Slide in from right to center */
  transform: translateX(0);
}

.screenshot-wrapper.slide-out-left {
  /* Slide out to left when switching */
  transform: translateX(-100%);
}

.screenshot-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  /* Minimal box-shadow */
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Updated animation for slide effect */
.screenshot-wrapper.active img {
  animation: slideInFromRight 0.6s ease-out;
}

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

.screenshot-wrapper img:hover {
  transform: translateY(-4px);
  /* Minimal hover shadow */
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.15);
}

/* Responsive Design */
@media (max-width: 991px) {
  .screenshots-showcase .row {
    flex-direction: column-reverse;
  }

  .screenshot-features-nav {
    padding-right: 0;
    margin-top: 40px;
  }

  .feature-nav-item {
    padding: 20px 16px;
  }

  .feature-nav-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .feature-nav-content h4 {
    font-size: 1.05rem;
  }

  .feature-nav-content p {
    font-size: 0.85rem;
  }

  .screenshot-display {
    min-height: 400px;
  }
}

/* Enhanced mobile UX with horizontal scroll and compact design */
@media (max-width: 768px) {
  .screenshots-section {
    padding: 60px 0;
  }

  .screenshots-showcase {
    margin-top: 30px;
  }

  /* Convert feature navigation to horizontal scroll on mobile */
  .screenshot-features-nav {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 8px 0;
    margin-top: 30px;
    margin-bottom: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-purple) transparent;
  }

  .screenshot-features-nav::-webkit-scrollbar {
    height: 4px;
  }

  .screenshot-features-nav::-webkit-scrollbar-track {
    background: transparent;
  }

  .screenshot-features-nav::-webkit-scrollbar-thumb {
    background: var(--primary-purple);
    border-radius: 4px;
  }

  .feature-nav-item {
    flex-direction: row;
    min-width: 280px;
    flex-shrink: 0;
    gap: 14px;
    padding: 16px;
    text-align: left;
    align-items: flex-start;
    margin-bottom: 0;
    scroll-snap-align: start;
  }

  .feature-nav-item:hover {
    transform: none;
  }
}

/* ============================================
   8. FAQ SECTION
   ============================================ */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #fff5f7 100%);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.15);
  transform: translateY(-2px);
}

.faq-question {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: white;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #8b5cf6;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, #14b8a6 0%, #3b82f6 100%);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px 28px;
}

.faq-answer p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

/* ============================================
   9. CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-color);
}

.contact-info-card {
  padding-right: 2rem;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.contact-info-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-icon.purple {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-light));
  color: white;
}

.contact-icon.blue {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
  color: white;
}

.contact-icon.teal {
  background: linear-gradient(135deg, var(--primary-teal), #0d9488);
  color: white;
}

.contact-info-item p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}

.social-links-wrapper {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary-purple);
  color: white;
  transform: translateY(-2px);
}

.form-control-float {
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  padding: 1rem 0.75rem;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-control-float:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-floating label {
  color: var(--text-secondary);
}

.btn-contact-submit {
  padding: 0.875rem;
  background: var(--primary-purple);
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-contact-submit:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

/* ============================================
   10. FOOTER
   ============================================ */
.footer {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.footer-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-social-links a:hover {
  background: var(--primary-purple);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}
.footer_logo_{
    filter: brightness(10);
}

/* ============================================
   11. SLICK CAROUSEL STYLES
   ============================================ */
.slick-track {
  display: flex !important;
  align-items: stretch;
}

.slick-slide {
  height: inherit !important;
  display: flex !important;
  justify-content: center;
  padding: 0;
}

.slick-slide > div {
  width: 100%;
  display: flex !important;
  justify-content: center;
}

.slick-dots {
  bottom: -35px;
}

.slick-dots li button:before {
  color: var(--primary-purple);
  font-size: 10px;
}

.slick-dots li.slick-active button:before {
  color: var(--primary-purple);
}

.slick-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.slick-arrow:hover {
  background: var(--primary-purple) !important;
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.3);
}

.slick-prev {
  left: -10px;
}

.slick-next {
  right: -10px;
}

.slick-prev:before,
.slick-next:before {
  color: var(--primary-purple);
  font-size: 24px;
}

.slick-arrow:hover:before {
  color: white;
}

/* ============================================
   12. RESPONSIVE MEDIA QUERIES
   ============================================ */
@media (max-width: 1200px) {
  .pricing-carousel {
    padding: 0 20px 50px;
  }

  .slick-prev {
    left: -5px;
  }

  .slick-next {
    right: -5px;
  }

  .screenshots-slider-wrapper {
    padding: 0 40px;
  }

  .screenshots-slider .slick-prev {
    left: -40px;
  }

  .screenshots-slider .slick-next {
    right: -40px;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-content {
    padding-right: 0;
    text-align: center;
  }

  .stats-row {
    justify-content: center;
  }

  .form-card {
    margin-top: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .contact-info-card {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 500px;
  }

  .hero-title {
    font-size: 2rem;
  }

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

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .pricing-card {
    margin: 0 8px;
  }

  .slick-arrow {
    display: none !important;
  }

  .faq-section {
    padding: 60px 0;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 1rem;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 18px 20px;
  }

  .screenshots-slider-wrapper {
    padding: 0 20px;
  }

  .screenshots-slider .slick-prev,
  .screenshots-slider .slick-next {
    display: none !important;
  }
}

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

  .hero-title {
    font-size: 1.75rem;
  }

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

  .hero-stats {
    gap: 20px;
  }

  .stats-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .form-card {
    padding: 1.5rem;
  }

  .pricing-carousel {
    padding: 0 10px 50px;
  }

  .contact-grid {
    padding: 1.5rem;
  }

  .screenshot-caption h4 {
    font-size: 1.1rem;
  }

  .screenshot-caption p {
    font-size: 0.9rem;
  }
}
