/* Custom CSS for Azlo Website */

/* Root Variables */
:root {
  --primary-blue: #0b3558;
  --secondary-blue: #016bff;
  --light-blue: #54a0ff;
  --teal: #2dd4bf;
  --purple: #c084fc;
  --yellow: #fde047;
  --red: #ef4444;
  --gray: #476788;
  --light-gray: #f1f3f7;
  --white: #ffffff;
  --dark: #0b3558;
}

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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #476788;
  overflow-x: hidden;
  line-height: 2.5rem;
}

h4 {
  line-height: 3rem;
}

html {
  overflow-x: hidden;
}

/* Global Button Overrides - Make all buttons rectangular with small border radius */
.btn,
button,
[type="button"],
[type="submit"],
[type="reset"],
.btn-primary,
.btn-secondary,
.btn-outline-primary,
.btn-lg,
.btn-sm {
  border-radius: 4px !important;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  line-height: 4rem;
}

.t-lg {
  font-size: 78px;
  line-height: 100px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.t-s-lg{
  font-size: 20px;
  color: #476788;
  font-weight: 300;
  line-height: 40px;
}

/* Navigation */
.navbar {
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-brand .logo {
  height: 40px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-blue) !important;
}

.contact-btn {
  font-family: "Cabin", sans-serif !important;
  background-color: var(--primary-blue);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: var(--secondary-blue);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  background-color: #ffffff;
  position: relative;
  padding: 120px 0 40px;
  /* padding-top: 40px; */
  overflow: hidden;
}

.hero-title {
  font-size: 60px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  line-height: 84px;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
  line-height: 40px;
}

.hero-description {
  font-size: 1.3rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.hero-buttons .btn {
  font-family: "Cabin", sans-serif !important;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
  background-color: var(--secondary-blue);
  border: none;
}

.hero-buttons .btn-secondary {
  background-color: var(--primary-blue);
  border: none;
}

.hero-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-15px) rotate(2deg);
  }
  66% {
    transform: translateY(-10px) rotate(-2deg);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Hero Image Container */
.hero-image-container {
  position: relative;
  z-index: 2;
  transform: scale(1.05);
  margin-top: 20px;
}

.hero-background-circles {
  position: absolute;
  width: 150%;
  height: 150%;
  top: -20%;
  left: -20%;
  z-index: -1;
  overflow: visible;
  pointer-events: none;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
}

/* Teal/Indigo circle - top, only half visible */
.hero-circle-teal {
  width: 400px;
  height: 400px;
  background: #37CDC0;
  top: -250px;
  left: 15%;
  transform: translateX(-50%);
  opacity: 0.85;
  z-index: -3;
  animation: float 6s ease-in-out infinite;
}

/* Pink circle - right side, partially visible */
.hero-circle-pink {
  width: 400px;
  height: 400px;
  background: #E55CFF;
  top: 15%;
  right: -200px;
  transform: translateY(-50%);
  opacity: 0.8;
  z-index: -2;
  animation: float 8s ease-in-out infinite reverse;
}

/* Blue circle - bottom center */
.hero-circle-blue {
  width: 280px;
  height: 280px;
  background: #0298FD;
  bottom: 50px;
  left: 20%;
  transform: translateX(-50%);
  opacity: 0.85;
  z-index: -3;
  animation: float 7s ease-in-out infinite;
}

/* Background card container - behind the main dashboard */
.hero-background-card {
  position: absolute;
  top: -40px;
  right: 42px;
  width: 85%;
  height: 80%;
  background-color: #ffffff;
  border: 0px solid #e5e7eb;
  border-radius: 30px;
  z-index: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  background-color: #e5e7eb;
  padding: 0px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.8);
  animation: heroFloat 4s ease-in-out infinite;
}

.hero-image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.hero-dashboard-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* Floating Contact Button */
.floating-contact-btn {
  font-family: "Cabin", sans-serif !important;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary-blue);
  color: white;
  padding: 15px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(27, 54, 93, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideInRight 0.5s ease-out;
}

.floating-contact-btn i {
  font-size: 1.2rem;
}

.floating-contact-btn span {
  display: inline-block;
}

.floating-contact-btn:hover {
  background-color: var(--secondary-blue);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(27, 54, 93, 0.5);
}

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

.dashboard-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.dashboard-header h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.dashboard-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tab-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  background: var(--white);
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background-color: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.style-tabs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.style-label {
  font-size: 0.9rem;
  color: var(--gray);
}

.style-btn {
  width: 35px;
  height: 35px;
  border: 1px solid #d1d5db;
  background: var(--white);
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.style-btn.active {
  background-color: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.region-label {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.dashboard-metrics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.metric-row {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.metric-label {
  flex: 2;
  font-size: 0.9rem;
  color: var(--dark);
}

.metric-bar {
  flex: 3;
  height: 8px;
  border-radius: 4px;
  margin: 0 1rem;
}

.blue-bar {
  background-color: var(--secondary-blue);
}
.blue-bar-small {
  background-color: var(--secondary-blue);
  width: 30%;
}
.teal-bar {
  background-color: var(--teal);
}
.teal-bar-small {
  background-color: var(--teal);
  width: 40%;
}
.yellow-bar {
  background-color: var(--yellow);
}
.red-bar {
  background-color: var(--red);
  width: 15%;
}
.light-blue-bar {
  background-color: var(--light-blue);
}

.metric-value {
  flex: 1;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: right;
}

.metric-status {
  flex: 1;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  margin-left: 0.5rem;
}

.metric-status.achieved {
  background-color: var(--teal);
  color: var(--white);
}

.metric-status.warning {
  background-color: var(--yellow);
  color: var(--dark);
}

/* Features Section */
.features-section {
  background-color: var(--white);
}

.feature-card {
  padding: 2rem 1rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white);
}

.blue-icon {
  background-color: #016bff !important;
}

.purple-icon {
  /* background-color: var(--purple); */
  background-color: #e55cff;
}

.feature-card h4 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  max-width: 300px;
}

.feature-card p {
  color: #0b3558;
  font-size: 16px;
  font-weight: 300;
  line-height: 32px;
}

/* Product Section */
.product-section {
  /* background-color: var(--light-gray); */
  overflow: hidden;
}

.azlo-dashboard-section {
  margin-bottom: 2rem;
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dashboard-icon {
  width: 48px;
  height: 48px;
  background-color: #ff00ff;
  border-radius: 12px;
  padding: 10px;
}

.dashboard-header h5 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0;
}

.dashboard-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.dashboard-list li {
  padding: 0.5rem 0;
  color: var(--gray);
  position: relative;
  padding-left: 1.5rem;
}

.dashboard-list li:before {
  content: "•";
  color: var(--secondary-blue);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Feature Showcase Styles */
.feature-showcase {
  position: relative;
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(248, 250, 252, 0.8) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-showcase-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 2rem;
  position: relative;
  padding: 1.5rem 0;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.feature-showcase-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(46, 134, 222, 0.1) 50%,
    transparent 100%
  );
  transition: left 0.8s ease;
  z-index: 0;
}

.feature-showcase-item.active::before {
  left: 100%;
}

.feature-showcase-item.active {
  opacity: 1;
  transform: translateY(0);
}

.feature-showcase-item.highlight {
  background: linear-gradient(
    135deg,
    rgba(46, 134, 222, 0.05) 0%,
    rgba(45, 212, 191, 0.03) 100%
  );
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(46, 134, 222, 0.15);
  border-left: 4px solid var(--secondary-blue);
  transform: translateX(10px);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-showcase-item.active .feature-header {
  transform: scale(1.05);
}

.feature-icon {
  width: 84px;
  height: 84px;
  background-color: #ff00ff;
  border-radius: 12px;
  padding: 10px;
  transition: all 0.3s ease;
}

.feature-showcase-item.active .feature-icon {
  background: linear-gradient(
    135deg,
    var(--secondary-blue) 0%,
    var(--teal) 100%
  );
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 4px 15px rgba(46, 134, 222, 0.3);
}

.feature-header h5 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.feature-showcase-item.active .feature-header h5 {
  color: var(--secondary-blue);
  text-shadow: 0 2px 4px rgba(46, 134, 222, 0.2);
}

.feature-showcase-item.active .feature-header h5 {
  color: var(--secondary-blue);
}

.feature-content {
  margin-left: 64px;
  transition: all 0.3s ease;
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.feature-list li {
  padding: 0.5rem 0;
  color: var(--gray);
  position: relative;
  padding-left: 1.5rem;
  transition: all 0.3s ease;
}

.feature-list li:before {
  /* content: "•"; */
  /* color: var(--secondary-blue); */
  font-weight: bold;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.feature-showcase-item.active .feature-list li {
  color: var(--primary-blue);
  font-weight: 500;
}

.feature-showcase-item.active .feature-list li:before {
  color: var(--teal);
  transform: scale(1.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1.2);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.8;
  }
}

.feature-content p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
  transition: all 0.3s ease;
}

.feature-showcase-item.active .feature-content p {
  color: var(--primary-blue);
  font-weight: 500;
}

.progress-border {
  position: relative;
  height: 4px;
  background-color: #e5e7eb;
  border-radius: 2px;
  margin-top: 1.5rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(
    90deg,
    #ff00ff 0%,
    var(--secondary-blue) 30%,
    var(--teal) 70%,
    var(--secondary-blue) 100%
  );
  border-radius: 2px;
  transition: width 6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.progress-fill::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.feature-showcase-item.active .progress-fill {
  width: 100%;
}

.pink-border-bottom {
  height: 3px;
  background-color: #ff00ff;
  width: 100%;
  margin-top: 1rem;
}

/* Legacy product list styles - keeping for compatibility */
.product-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-item {
  padding: 1rem 0;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  color: var(--gray);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 0;
  border-top: 1px solid #e5e7eb;
}

.product-item:hover {
  background-color: transparent;
  color: var(--primary-blue);
  transform: translateX(0);
}

.product-item.expanded .product-name {
  background-color: transparent;
  color: var(--dark);
  transform: translateX(0);
  box-shadow: none;
  font-weight: 500;
  font-size: 24px;
}

.product-item:not(.expanded) {
  opacity: 0.5;
  background-color: transparent;
  color: var(--gray);
}

.product-item:not(.expanded):hover {
  opacity: 0.7;
  background-color: transparent;
  color: var(--primary-blue);
  transform: translateX(0);
}

.product-item.expanded:hover {
  transform: translateX(0);
}

.product-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-item .product-icon {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  background-color: transparent;
  padding: 20px;
  border: 3px solid rgb(209, 209, 209);
  border-radius: 10px;
}

.product-item.expanded .product-icon {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  background-color: #e55cff;
  padding: 20px;
  border: none;
  border-radius: 10px;
}

.product-details {
  margin-top: 1rem;
  padding-top: 1rem;
  padding-left: 0px;
}

.product-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.product-benefits li {
  padding: 0.5rem 0;
  color: var(--dark);
  position: relative;
  padding-left: 1.5rem;
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
}

.product-benefits li:before {
  content: "•";
  color: var(--secondary-blue);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.product-border-bottom {
  height: 3px;
  background-color: #e5e7eb;
  border-radius: 2px;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.product-progress-bar {
  height: 100%;
  width: 0;
  background-color: var(--purple);
  border-radius: 2px;
  transition: width 0.3s ease;
}

@keyframes fillProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

/* Product Image Container */
.product-image-container {
  position: relative;
  z-index: 2;
  margin-top: 20px;
}

.product-background-circles {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  z-index: -1;
  overflow: visible;
}

.product-circle {
  position: absolute;
  border-radius: 50%;
}

.product-circle-teal {
  width: 300px;
  height: 300px;
  background-color: #2dd4bf;
  top: -80px;
  right: -40px;
  opacity: 0.7;
}

.product-circle-pink {
  width: 250px;
  height: 250px;
  background-color: #ff00ff;
  bottom: -40px;
  right: -80px;
  opacity: 0.7;
}

.product-circle-blue {
  width: 200px;
  height: 200px;
  background-color: #2e86de;
  bottom: 40px;
  left: -60px;
  opacity: 0.7;
}

.product-image-wrapper {
  position: relative;
  z-index: 1;
  background-color: #e5e7eb;
  padding: 20px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.product-image-wrapper:hover {
  transform: translateY(-5px);
}

.product-dashboard-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.image-placeholder {
  background-color: #e5e7eb;
  border-radius: 12px;
  padding-bottom: 75%;
  position: relative;
  overflow: hidden;
}

.placeholder-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

/* Problems Section */
.problems-section {
  background-color: var(--white);
}

.problems-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.problems-carousel {
  overflow: hidden;
  padding: 2rem 2rem 2rem 0;
  margin-right: -2rem;
}

.problems-track {
  display: flex;
  gap: 3rem;
  transition: transform 0.3s ease;
  align-items: stretch;
  padding-right: 4rem;
}

.problem-card-wrapper {
  flex: 0 0 calc(40% - 1.33rem);
  display: flex;
  min-height: 450px;
}

.figma-problem-card {
  width: 100%;
  background-color: #f6f8fa;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.figma-problem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.card-icon-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 30%;
  background-color: #2E86DE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}

.card-icon-title h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin: 0;
  line-height: 1.8rem;
}

.problem-section,
.azlo-fix-section {
  margin: 0;
}

.problem-section h6,
.azlo-fix-section h6 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.problem-section p,
.azlo-fix-section p {
  color: #4a5568;
  line-height: 1.9;
  font-size: 0.95rem;
  margin: 0;
}

.problems-nav {
  display: none;
}

/* Problems carousel indicators */
.problems-indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.problems-indicator {
  width: 30px;
  height: 20px;
  border-radius: 20px;
  background-color: #e5e7eb;
  box-shadow: 0 2px 5px rgba(88, 88, 91, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.problems-indicator.active {
  background-color: var(--primary-blue);
  width: 35px;
  border-radius: 20px;
}

.problems-indicator:hover:not(.active) {
  background-color: #d1d5db;
}

.problems-prev,
.problems-next {
  display: none;
}

.s-lg
{
  font-size: 52px;
  line-height: 64px;
  font-weight: 500;
}
.s-s-lg
{
  font-size: 20px;
  line-height: 40px;
  font-weight: 400;
}

/* Users Section */
.users-section {
  background-color: #ffffff;
}

.user-tabs {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  margin-bottom: 3rem;
  background-color: #f8f9fa;
  padding: 6px;
  border-radius: 8px;
  width: fit-content;
  margin-left: 50%;
  transform: translateX(-50%);
}

.user-tab {
  padding: 0.75rem 1.5rem;
  border: 1px solid #d1d5db;
  background-color: #ffffff;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  white-space: nowrap;
  width: 25%;
}

.user-tab.active {
  background-color: #37cdc0;
  border-color: #3f4a49;
  color: #3f4a49;
}

.user-content {
  min-height: 500px;
}

.user-panel {
  display: none;
}

.user-panel.active {
  display: block;
}

.user-info {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.user-avatar {
  width: 60px;
  height: 60px;
  background-color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--white);
  font-size: 1.5rem;
}

.user-details h5 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.user-details p {
  color: var(--gray);
  margin-bottom: 0.25rem;
}

.user-details span {
  color: var(--gray);
  font-size: 0.9rem;
}

.dashboard-menu {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.dashboard-menu h6 {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.dashboard-menu ul {
  list-style: none;
  padding: 0;
}

.dashboard-menu li {
  padding: 0.75rem 0;
  color: var(--gray);
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: color 0.3s ease;
}

.dashboard-menu li:hover {
  color: var(--secondary-blue);
}

.dashboard-view {
  position: relative;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 5px;
  border: 3px solid #e0eaff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.dashboard-view::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 15px;
  right: 15px;
  height: calc(100% + 20px);
  background-color: #ffffff;
  border-radius: 12px;
  z-index: -1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.dashboard-image {
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

/* Placeholder Dashboard Styles */
.placeholder-dashboard {
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  min-height: 400px;
  padding: 0;
}

.placeholder-header {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--secondary-blue) 100%
  );
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.placeholder-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.placeholder-header p {
  opacity: 0.9;
  margin-bottom: 0;
}

.placeholder-content {
  padding: 2rem;
}

/* Chart Placeholder */
.placeholder-chart {
  display: flex;
  align-items: end;
  justify-content: space-around;
  height: 150px;
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: #f8fafc;
  border-radius: 10px;
}

.chart-bar {
  width: 30px;
  background: linear-gradient(
    to top,
    var(--teal) 0%,
    var(--secondary-blue) 100%
  );
  border-radius: 4px 4px 0 0;
  transition: all 0.3s ease;
}

.chart-bar:hover {
  transform: scaleY(1.1);
}

/* Metrics Display */
.placeholder-metrics {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.metric-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 1rem;
  background-color: #f8fafc;
  border-radius: 10px;
}

.metric-label {
  display: block;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.metric-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-blue);
}

/* Grid Layout for Branch Manager */
.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.grid-item {
  background-color: #f8fafc;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
}

.grid-item h4 {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.progress-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: conic-gradient(var(--teal) 0deg 313deg, #e2e8f0 313deg 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

.progress-circle:before {
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #f8fafc;
  position: absolute;
}

.progress-circle span {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-blue);
  z-index: 1;
}

.wait-time,
.referral-count {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
}

/* Task List for Tellers */
.task-list {
  margin-bottom: 2rem;
}

.task-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  background-color: #f8fafc;
}

.task-item.completed i {
  color: var(--teal);
}

.task-item.pending i {
  color: var(--yellow);
}

.task-item span {
  color: var(--dark);
  font-weight: 500;
}

.opportunity-alerts h4 {
  color: var(--primary-blue);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.alert-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  background-color: #fef3c7;
  border-left: 4px solid var(--yellow);
}

.customer-name {
  font-weight: 600;
  color: var(--dark);
}

.opportunity {
  font-size: 0.9rem;
  color: var(--gray);
}

.time-filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.time-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  background: var(--white);
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.time-btn.active {
  background-color: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.metric-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.metric-card {
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
}

.metric-card.teal {
  background-color: var(--teal);
  color: var(--white);
}

.metric-card.blue {
  background-color: var(--secondary-blue);
  color: var(--white);
}

.metric-card.gray {
  background-color: #f3f4f6;
  color: var(--dark);
}

.metric-card h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.metric-card p {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.metric-card small {
  font-size: 0.8rem;
  opacity: 0.8;
}

.incidents-table {
  margin-top: 2rem;
}

.incidents-table h6 {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.incidents-table .table {
  font-size: 0.9rem;
}

.incidents-table th {
  font-weight: 600;
  color: var(--gray);
  border-bottom: 2px solid #e5e7eb;
}

/* Benefits Section */
.benefits-section {
  background-color: var(--white);
}

.benefit-card {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background-color: #f7f8fa;
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  background-color: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.benefit-card .benefit-icon {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
}

.benefit-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin: 0;
}

/* Video Section */
.video-section {
  background-color: var(--white);
  text-align: center;
}

.video-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f8fa;
  border-radius: 20px;
  padding: 60px 120px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  min-height: 400px;
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(219, 234, 254, 0.8);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-blue);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.play-button:hover {
  transform: scale(1.1);
  background-color: rgba(219, 234, 254, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Video iframe styling */
.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: 2;
}

.play-button {
  position: relative;
  z-index: 3;
}

.dd-indigo{
  background-color: #37cdc0;
}

.dd-pink{
  background-color: #e55cff;
}

.dd-dark-blue{
  background-color: #0b3558;
}

.dd-blue{
  background-color: #016bff;
}

.dd-grey{
  background-color: #e0eaff;
}

.dd-yellow{
  background-color: #ffdc75;
}

/* Mobile responsiveness for video container */
@media (max-width: 768px) {
  .video-container {
    padding: 40px 60px;
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .video-container {
    padding: 30px 40px;
    min-height: 250px;
  }

  .play-button {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
}

/* Pricing Section */
.pricing-section {
  background-color: #f7f8fa;
  overflow: hidden;
}

.pricing-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-carousel {
  overflow: hidden;
  padding: 2rem 0;
}

.pricing-track {
  display: flex;
  gap: 2rem;
  padding: 10px 0px;
  transition: transform 0.3s ease;
}

.pricing-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 2.5rem 2.3rem;
  border: 1px solid var(--dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: start;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  min-height: 550px;
  flex: 0 0 calc(30% - 1.5rem);
  display: flex;
  flex-direction: column;
  min-width: 378px;
}

/* Adjust padding bottom based on wave height */
.pricing-card.dashboard-card {
  padding-bottom: 5rem;
}

.pricing-card.tablet-card {
  padding-bottom: 3.5rem;
}

.pricing-card.sales-card {
  padding-bottom: 4.5rem;
}

.pricing-card.romen-card {
  padding-bottom: 5.5rem;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.price {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: #0b3558;
}

.price-blue {
  color: #016bff;
}
.price-teal {
  color: #37cdc0;
}
.price-pink {
  color: #e55cff;
}

.price-period {
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.feature-list li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  color: var(--dark);
  font-size: 20px;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.feature-list li i {
  margin-right: 0.75rem;
  color: white;
  background-color: var(--teal);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.feature-list .sub-item {
  padding-left: 2rem;
  color: var(--gray);
  font-size: 24px;
}

.card-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}

/* Pricing card specific tick colors */
.dashboard-card .feature-list li i {
  background-color: var(--primary-blue);
}

.tablet-card .feature-list li i {
  background-color: var(--secondary-blue);
}

.sales-card .feature-list li i {
  background-color: var(--teal);
}

.romen-card .feature-list li i {
  background-color: #e55cff;
}

/* Pricing indicators styling - matches problems section */
.pricing-indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.pricing-indicator {
  width: 24px;
  height: 16px;
  border-radius: 12px;
  background-color: #e5e7eb;
  box-shadow: 0 2px 5px rgba(88, 88, 91, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-indicator.active {
  background-color: var(--primary-blue);
  width: 24px;
}

.pricing-indicator:hover:not(.active) {
  background-color: #d1d5db;
}

/* Dashboard card - Large flowing wave */
.dark-blue-wave {
  height: 180px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 180"><path d="M0,80 Q100,100 200,80 T400,80 L400,180 L0,180 Z" fill="%230B3558"/></svg>');
  background-size: cover;
}

/* Tablet card - Small wave for $25 package */
.blue-wave {
  height: 120px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 120"><path d="M0,60 Q100,30 200,60 T400,60 L400,120 L0,120 Z" fill="%23016BFF"/></svg>');
  background-size: cover;
}

/* Sales card - Medium wave with multiple curves */
.teal-wave {
  height: 160px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 160"><path d="M0,70 Q50,30 100,50 Q150,70 200,50 Q250,30 300,50 Q350,70 400,50 L400,160 L0,160 Z" fill="%2337CDC0"/></svg>');
  background-size: cover;
}

/* Top-ROMen card - Tall dramatic wave */
.pink-wave {
  height: 200px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><path d="M0,100 Q80,20 160,60 Q240,100 320,40 Q360,20 400,60 L400,200 L0,200 Z" fill="%23E55CFF"/></svg>');
  background-size: cover;
}

.pricing-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: var(--white);
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-nav-btn:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: scale(1.1);
}

/* FAQ Section */
.faq-section {
  background-color: var(--white);
}

.accordion-item {
  background-color: var(--light-gray);
  border: none;
  border-radius: 15px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background-color: transparent;
  border: none;
  padding: 1.5rem 2rem;
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-blue);
  position: relative;
  min-width: 100%;
  max-width: 1164px;
}

.accordion-button:not(.collapsed) {
  background-color: var(--light-gray);
  color: var(--primary-blue);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  display: none;
}

.accordion-icon {
  position: absolute;
  right: 2rem;
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  padding: 1.5rem 2rem 2rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Mobile Navigation Controls */
.mobile-nav-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-contact-btn {
  background-color: var(--primary-blue);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-contact-btn:hover {
  background-color: var(--secondary-blue);
  transform: translateY(-1px);
}

.mobile-contact-btn:active {
  transform: translateY(0);
}

/* Hide mobile contact button on desktop */
@media (min-width: 992px) {
  .mobile-contact-btn {
    display: none !important;
  }
}

/* About Us Page Styles - Exact match to Figma */
body {
  font-family: "Poppins", sans-serif;
}

.about-hero-section {
  position: relative;
  padding: 120px 0 60px;
  background-color: white;
  overflow: hidden;
}

.about-background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.about-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.about-shape-teal {
  width: 400px;
  height: 300px;
  background: #2dd4bf;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}

.about-shape-blue {
  width: 120px;
  height: 120px;
  background: #2e86de;
  bottom: 50px;
  left: -60px;
}

.about-shape-pink {
  width: 140px;
  height: 140px;
  background: #ff00ff;
  top: 40%;
  right: -70px;
  transform: translateY(-50%);
}

.about-title {
  font-size: 60px;
  font-weight: 600;
  line-height: 84px;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}

/* Main Story Section - ONE grey container */
.main-story-section {
  padding: 60px 0;
  padding-top: 0;
  background-color: white;
}

.main-story-container {
  background-color: var(--light-gray);
  border-radius: 20px;
  padding: 50px;
  margin: 0 auto;
  width: 80%;
}

.main-story-container p {
  font-size: 20px;
  line-height: 1.9;
  color: #505a68;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
}

.story-intro {
  font-size: 20px !important;
  color: #476788 !important;
  font-weight: 400;
  line-height: 40px;
}

.story-quote {
  font-style: italic;
  color: var(--primary-blue) !important;
  font-size: 20px;
  margin: 1rem 0;
  font-weight: 500;
  line-height: 40px;
}

.story-quote-main {
  font-size: 20px !important;
  font-weight: 500 !important;
  color: var(--primary-blue) !important;
  text-align: center;
  padding: 20px;
  border: 1px solid #a1d6fc;
  border-radius: 8px;
  /* background-color: rgba(255, 255, 255, 0.5); */
  font-family: "Poppins", sans-serif;
  line-height: 40px;
  margin: 40px 0;
}

.story-response {
  font-style: italic;
  font-weight: 400;
  color: var(--dark);
  display: block;
  margin-top: 10px;
}

.lightbulb-quote {
  font-size: 1rem !important;
  font-weight: 600;
  color: var(--primary-blue) !important;
  text-align: center;
  padding: 15px;
  border: 1px solid #d1d9e1;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  font-family: "Poppins", sans-serif;
}

/* Image placeholders inside main container */
.story-image-placeholder,
.development-image-placeholder {
  background-color: #a6c8e8;
  border-radius: 12px;
  min-height: 200px;
  width: 100%;
  border: none;
  min-height: 100%;
}

.large-image-placeholder {
  background-color: #d1d9e1;
  border-radius: 12px;
  min-height: 300px;
  width: 100%;
  border: none;
}

/* Teal stats section inside main container */
.teal-stats-section {
  background-color: var(--teal);
  border-radius: 15px;
  padding: 30px;
  color: white;
}

.teal-stats-section p {
  color: white !important;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Final message inside main container */
.final-message {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
}

.final-highlight {
  font-size: 1rem;
  color: var(--primary-blue);
  font-weight: 600;
  padding: 15px;
  border-left: 4px solid #2dd4bf;
  /* background-color: rgba(255, 255, 255, 0.5); */
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
}

/* CTA inside main container */
.cta-quote {
  font-size: 1rem;
  color: var(--primary-blue);
  font-weight: 600;
  padding: 15px;
  border-left: 4px solid #2dd4bf;
  /* background-color: rgba(255, 255, 255, 0.5); */
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
}

.cta-signature {
  font-style: italic;
  color: var(--primary-blue);
  font-size: 1rem;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}

/* Footer Section */
.footer-section {
  background-color: var(--light-gray);
  color: var(--dark);
}

.footer-logo img {
  height: 40px;
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-blue);
}

.footer-cta h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.footer-cta p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.btn-outline-primary {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

.story-text {
  line-height: 2;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }

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

@media (max-width: 992px) {
  .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .user-content {
    min-height: 300px;
  }
  .hero-title {
    font-size: 2.5rem;
  }

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

  .hero-buttons {
    text-align: center;
  }

  .hero-buttons .btn {
    margin-bottom: 1rem;
    width: 100%;
    max-width: 300px;
  }

  .user-tabs {
    flex-direction: column;
    align-items: center;
    padding: 8px;
    gap: 0.5rem;
  }

  .user-tab {
    text-align: center;
    min-width: 280px;
    padding: 0.875rem 1.25rem;
  }

  .feature-highlight {
    flex-direction: column;
    text-align: center;
  }

  .feature-icon-wrapper {
    margin-right: 0;
    margin-bottom: 1rem;
    align-self: center;
  }

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

  .dashboard-preview {
    margin-top: 2rem;
  }

  .benefit-card {
    flex-direction: column;
    text-align: center;
  }

  .benefit-card .benefit-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 70px 0 30px;
  }

  .hero-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .hero-subtitle,
  .hero-description {
    text-align: center;
  }

  .hero-buttons {
    text-align: center;
  }

  .section-title {
    font-size: 1.8rem;
    line-height: 2.5rem;
  }

  .dashboard-card {
    padding: 1.5rem;
  }

  .metric-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .metric-bar {
    width: 100%;
    margin: 0;
  }

  .metric-value,
  .metric-status {
    align-self: flex-end;
  }

  .dashboard-tabs {
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .tab-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .style-tabs {
    flex-wrap: wrap;
  }

  /* Pricing Carousel Mobile */
  .pricing-carousel {
    padding: 1rem 0;
  }

  .pricing-track {
    gap: 1rem;
    padding: 0 1rem;
  }

  .pricing-card {
    flex: 0 0 100%;
    min-width: 100%;
    margin: 0;
  }

  .pricing-nav {
    margin-top: 1.5rem;
  }

  .carousel-nav-btn {
    width: 35px;
    height: 35px;
  }

  .navbar-nav {
    text-align: center;
    margin-top: 1rem;
  }

  .navbar-nav .nav-link {
    margin: 0.25rem 0;
  }

  .contact-btn {
    margin-top: 1rem;
    width: 100%;
  }

  /* Hero Mobile */
  .hero-image-container {
    transform: scale(0.95);
    margin-top: 10px;
  }

  .hero-background-circles {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
  }

  .hero-circle {
    display: none;
  }

  .hero-circle-teal {
    display: none;
  }

  .hero-circle-pink {
    display: none;
  }

  .hero-circle-blue {
    display: none;
  }

  .hero-background-card {
    top: 20px;
    right: 15px;
    width: 80%;
    height: 75%;
  }

  .hero-image-wrapper {
    padding: 15px;
  }

  /* Floating Contact Button Mobile */
  .floating-contact-btn {
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .floating-contact-btn span {
    display: none;
  }

  .floating-contact-btn i {
    font-size: 1.4rem;
    margin: 0;
  }

  /* Product Section Mobile */
  .product-section .section-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  /* Feature Showcase Mobile */
  .feature-showcase {
    padding: 0.5rem;
    margin: 0 -0.5rem;
  }

  .feature-showcase-item {
    margin-bottom: 1.5rem;
  }

  .feature-showcase-item.highlight {
    padding: 1.5rem;
    transform: translateX(5px);
    margin: 0 -0.5rem;
  }

  .feature-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

  .feature-header h5 {
    font-size: 1.1rem;
  }

  .feature-content {
    margin-left: 0;
  }

  .feature-list {
    font-size: 0.9rem;
  }

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

  .progress-border {
    margin-top: 1rem;
    height: 3px;
  }

  /* Legacy styles for compatibility */
  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .dashboard-icon {
    width: 40px;
    height: 40px;
  }

  .dashboard-header h5 {
    font-size: 1.1rem;
  }

  .dashboard-list {
    font-size: 0.9rem;
  }

  .pink-border-bottom {
    margin-top: 0.75rem;
  }

  .product-list {
    margin-top: 2rem;
  }

  .product-item {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  /* Product Section Mobile */
  .product-image-container {
    margin-top: 2rem;
  }

  .product-background-circles {
    transform: scale(0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .product-circle {
    opacity: 0.4;
  }

  .product-circle-teal {
    width: 150px;
    height: 150px;
    top: -40px;
    right: -20px;
  }

  .product-circle-pink {
    width: 120px;
    height: 120px;
    bottom: -20px;
    right: -40px;
  }

  .product-circle-blue {
    width: 100px;
    height: 100px;
    bottom: 20px;
    left: -30px;
  }

  .product-image-wrapper {
    padding: 15px;
    margin-bottom: 1.5rem;
  }

  .image-placeholder {
    margin-bottom: 1rem;
  }

  /* Problems Section Mobile */
  .problems-carousel {
    padding: 1rem 1rem 1rem 0;
    margin-right: -1rem;
  }

  .problems-track {
    gap: 1rem;
    padding: 0 1rem;
    padding-right: 2rem;
  }

  .problems-indicators {
    margin-top: 1.5rem;
  }

  .problems-indicator {
    width: 40px;
    height: 20px;
    border-radius: 20px;
  }

  .problems-indicator.active {
    width: 48px;
    border-radius: 20px;
  }

  .problem-card-wrapper {
    flex: 0 0 100%;
    min-width: 100%;
    margin: 0;
    min-height: 350px;
  }

  .figma-problem-card {
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .card-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

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

  .problem-section h6,
  .azlo-fix-section h6 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .problem-section p,
  .azlo-fix-section p {
    font-size: 0.9rem;
  }
}

/* About Page Mobile Responsive */
@media (max-width: 768px) {
  .about-shape {
    display: none;
  }

  .about-title {
    font-size: 2.2rem;
  }

  .story-text {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  /* .story-quote-main {
    font-size: 1.1rem !important;
    padding: 1rem;
    font-weight: 400 !important;
  } */

  .stats-card {
    padding: 2rem 1.5rem;
  }

  .stats-highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .final-message-card h3 {
    font-size: 1.5rem;
  }

  .final-highlight {
    font-size: 1.1rem;
    padding: 1rem;
  }

  .cta-card {
    padding: 2rem 1.5rem;
  }

  .cta-card h4 {
    font-size: 1.3rem;
  }

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

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

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

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

  .story-text p {
    font-size: 1rem;
  }

  .story-intro {
    font-size: 1.1rem !important;
  }

  .story-quote-main {
    font-size: 1rem !important;
  }

  .stats-card {
    padding: 1.5rem 1rem;
  }

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

  .final-message-card h3 {
    font-size: 1.3rem;
  }

  .cta-card h4 {
    font-size: 1.2rem;
  }

  /* Pricing Cards Mobile Small */
  .pricing-card {
    padding: 2rem 1.5rem 3rem;
    min-height: 480px;
  }

  .pricing-card h4 {
    font-size: 1.3rem;
  }

  .price {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .hero-subtitle,
  .hero-description {
    font-size: 1.1rem;
  }

  .feature-card {
    padding: 1.5rem 1rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .dashboard-view {
    padding: 1rem;
  }

  .metric-cards {
    grid-template-columns: 1fr;
  }

  .user-info {
    flex-direction: column;
    text-align: center;
  }

  .user-avatar {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .accordion-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .accordion-icon {
    right: 1.5rem;
  }

  .accordion-body {
    padding: 1rem 1.5rem 1.5rem;
  }

  .footer-section .row > div {
    margin-bottom: 2rem;
  }

  .footer-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-section .col-lg-3:nth-child(1) {
    flex: 0 0 auto;
    min-width: auto;
    width: 100%;
    margin-bottom: 2rem;
  }

  .footer-section .col-lg-3:nth-child(2),
  .footer-section .col-lg-3:nth-child(3) {
    flex: 0 0 auto;
    min-width: auto;
    width: 45%;
  }

  .footer-section .col-lg-3:nth-child(4) {
    flex: 1;
    min-width: 100%;
    order: 3;
    text-align: center;
  }

  .footer-cta {
    text-align: center;
  }
}

/* Animation for smooth transitions */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-blue);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-blue);
}

/* Contact Modal Styles */
.contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  backdrop-filter: blur(5px);
}

.contact-modal-overlay.active {
  display: flex;
}

.contact-modal {
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.3s ease;
}

.contact-modal-overlay.active .contact-modal {
  transform: scale(1);
  opacity: 1;
}

.contact-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 2.5rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.contact-modal-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0;
}

.contact-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--gray);
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact-modal-close:hover {
  background-color: #f1f5f9;
  color: var(--primary-blue);
}

.contact-modal-body {
  padding: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-group input {
  padding: 1rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: var(--white);
}

.form-group input:focus {
  outline: none;
  border-color: var(--secondary-blue);
  box-shadow: 0 0 0 3px rgba(46, 134, 222, 0.1);
}

.form-group input::placeholder {
  color: #94a3b8;
  font-style: italic;
}

.contact-submit-btn {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 1.25rem 4rem;
  border: none;
  border-radius: 20px !important;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.contact-submit-btn:hover {
  background-color: var(--secondary-blue);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46, 134, 222, 0.3);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

/* Mobile Contact Modal */
/* @media (max-width: 768px) {
  .contact-modal {
    width: 95%;
    max-width: 95vw;
    max-height: 85vh;
    margin: 0;
    border-radius: 16px;
  }
  
  .contact-modal-header {
    padding: 1.5rem 1.5rem 1rem;
  }
  
  .contact-modal-body {
    padding: 1.5rem;
  }
  
  .contact-form {
    gap: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .form-group input {
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }
  
  .contact-submit-btn {
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    font-size: 1rem;
  }
  
  .contact-modal-header h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .contact-modal {
    width: 100%;
    max-width: 100vw;
    max-height: 90vh;
    margin: 0;
    border-radius: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  
  .contact-modal-overlay {
    align-items: flex-end;
    padding: 0;
  }
  
  .contact-modal-header {
    padding: 1.25rem 1.25rem 0.75rem;
  }
  
  .contact-modal-body {
    padding: 1.25rem;
  }
  
  .contact-form {
    gap: 1.25rem;
  }
  
  .form-group input {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }
  
  .contact-modal-header h2 {
    font-size: 1.3rem;
  }
} */
