/* Product Page Specific Styles */

.product-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(135deg, #f8f5f0 0%, #faf7f3 100%);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .product-hero {
    min-height: auto;
    padding: 5rem 1.5rem 4rem;
  }
}

.product-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(233, 69, 96, 0.08) 0%, transparent 70%);
  animation: float 15s ease-in-out infinite;
}

.product-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .product-hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.product-hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .product-hero-title {
    font-size: 3.2rem;
  }
}

@media (max-width: 768px) {
  .product-hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .product-hero-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

.product-hero-description {
  font-size: 1.15rem;
  color: #6b7280;
  margin-bottom: 3rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .product-hero-description {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .product-hero-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
}

.product-hero-visual {
  position: relative;
  height: 600px;
}

@media (max-width: 1024px) {
  .product-hero-visual {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .product-hero-visual {
    height: auto;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
  }
}

.hero-device {
  position: absolute;
  background: linear-gradient(135deg, #242442 0%, #1a1a2e 100%);
  border-radius: 25px;
  box-shadow: 0 30px 80px rgba(26, 26, 46, 0.3);
  padding: 1.5rem;
  animation: float 8s ease-in-out infinite;
}

.hero-device.desktop-device {
  width: 90%;
  height: 75%;
  top: 10%;
  left: 0;
}

@media (max-width: 768px) {
  .hero-device.desktop-device {
    width: 100%;
    height: 65%;
  }
}

.hero-device.mobile-device {
  width: 35%;
  height: 90%;
  bottom: 0;
  right: 5%;
  animation-delay: 2s;
}

@media (max-width: 768px) {
  .hero-device.mobile-device {
    width: 40%;
    height: 75%;
  }
}

.device-screen {
  width: 100%;
  height: 100%;
  background: #f8f5f0;
  border-radius: 18px;
  overflow: hidden;
}

.screen-content {
  width: 100%;
  height: 100%;
  padding: 2rem;
}

@media (max-width: 768px) {
  .screen-content {
    padding: 1.5rem;
  }
}

.screen-content.mobile {
  padding: 1.5rem 1rem;
}

.dashboard-header {
  height: 60px;
  background: linear-gradient(90deg, rgba(233, 69, 96, 0.2) 0%, rgba(255, 107, 129, 0.1) 100%);
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  height: calc(100% - 80px);
}

.dashboard-card {
  background: rgba(26, 26, 46, 0.06);
  border-radius: 12px;
}

.dashboard-card.large {
  grid-column: 1 / -1;
}

.mobile-header {
  height: 70px;
  background: linear-gradient(90deg, rgba(233, 69, 96, 0.2) 0%, rgba(255, 107, 129, 0.1) 100%);
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.mobile-stats {
  flex: 1;
  background: rgba(26, 26, 46, 0.06);
  border-radius: 12px;
}

/* Key Features */
.key-features {
  padding: 8rem 0;
  background: #ffffff;
}

@media (max-width: 768px) {
  .key-features {
    padding: 4rem 0;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-grid-2x2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: #f8f5f0;
  padding: 3rem;
  border-radius: 25px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid transparent;
}

/* --- Features Bento Layout --- */
.features-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
  margin-top: 4rem;
}

.bento-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--theme-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(var(--theme-rgb), 0.08);
  border-color: rgba(var(--theme-rgb), 0.2);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.bento-card p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
}

.bento-icon {
  width: 48px;
  height: 48px;
  background: rgba(var(--theme-rgb), 0.05);
  color: var(--theme-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.bento-card:hover .bento-icon {
  background: var(--theme-color);
  color: #ffffff;
  transform: scale(1.1);
}

/* Bento Variants */
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  padding: 3.5rem;
}

.bento-large h3 {
  font-size: 2.2rem;
}

.bento-large .bento-icon {
  width: 64px;
  height: 64px;
}

.bento-wide {
  grid-column: span 2;
}

.bento-medium {
  grid-column: span 1;
}

@media (max-width: 1024px) {
  .features-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-large {
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .features-bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-large,
  .bento-wide,
  .bento-medium {
    grid-column: span 1;
  }
}

/* Highlighted Features Section */
.highlighted-features {
  background: radial-gradient(circle at 10% 20%, rgba(var(--theme-rgb), 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(var(--theme-rgb), 0.03) 0%, transparent 50%),
    #ffffff;
  position: relative;
  overflow: hidden;
}

.highlighted-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.highlighted-features .features-grid {
  position: relative;
  z-index: 1;
}

.highlighted-features .feature-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--theme-rgb), 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.highlighted-features .feature-card:hover {
  background: #ffffff;
  border-color: var(--theme-color);
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(var(--theme-rgb), 0.12);
}

.feature-card-icon-wrapper {
  width: 54px;
  height: 54px;
  background: rgba(var(--theme-rgb), 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color);
  margin-bottom: 2rem;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-card-icon-wrapper {
  background: var(--theme-color);
  color: #ffffff;
  transform: rotate(10deg);
}

.feature-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

.feature-card p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-top: auto;
}

@media (max-width: 768px) {
  .feature-card {
    padding: 2rem;
  }
}

.feature-card-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card-centered:hover {
  background: #ffffff;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(26, 26, 46, 0.12);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6366f1;
}

.feature-icon svg {
  width: 48px;
  height: 48px;
}

.feature-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

.feature-card p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Product Showcase */
.product-showcase {
  padding: 8rem 0;
  background: linear-gradient(180deg, #f8f5f0 0%, #ffffff 100%);
}

@media (max-width: 768px) {
  .product-showcase {
    padding: 4rem 0;
  }
}

/* Detailed Showcase */
.detailed-showcase {
  padding: 8rem 0;
  background: linear-gradient(180deg, #f8f5f0 0%, #ffffff 100%);
}

@media (max-width: 768px) {
  .detailed-showcase {
    padding: 4rem 0;
  }
}

.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 8rem;
}

@media (max-width: 1024px) {
  .showcase-item {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
  }
}

.showcase-item:last-child {
  margin-bottom: 0;
}

.showcase-item.reverse .showcase-content {
  order: 2;
}

@media (max-width: 1024px) {
  .showcase-item.reverse .showcase-content {
    order: 1;
  }
}

.showcase-item.reverse .showcase-visual {
  order: 1;
}

@media (max-width: 1024px) {
  .showcase-item.reverse .showcase-visual {
    order: 2;
  }
}

.showcase-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(233, 69, 96, 0.1);
  color: #e94560;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
  .showcase-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1.2rem;
    margin-bottom: 1rem;
  }
}

.showcase-content h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .showcase-content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .showcase-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}

.showcase-content p {
  font-size: 1.15rem;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (max-width: 480px) {
  .showcase-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.showcase-features {
  list-style: none;
}

.showcase-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: #1a1a2e;
}

.showcase-features li svg {
  flex-shrink: 0;
  color: #e94560;
}

.showcase-visual {
  position: relative;
  height: 850px;
  margin-right: 20px;


  img {
    position: absolute;
    width: 100%;

  }
}

.showcase-item.reverse .showcase-visual {
  margin-right: 0;
  margin-left: 20px;
}

@media (max-width: 768px) {
  .showcase-visual {
    height: 450px;

    img {
      width: 100%;
    }
  }

  .showcase-item.reverse .showcase-visual {
    margin-left: 0;
  }
}

.showcase-mockup {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #242442 0%, #1a1a2e 100%);
  border-radius: 25px;
  padding: 2rem;
  box-shadow: 0 30px 80px rgba(26, 26, 46, 0.3);
}

@media (max-width: 768px) {
  .showcase-mockup {
    padding: 1.5rem;
  }
}

.mockup-inner {
  width: 100%;
  height: 100%;
  background: #f8f5f0;
  border-radius: 15px;
  padding: 2rem;
}

@media (max-width: 768px) {
  .mockup-inner {
    padding: 1.5rem;
  }
}

.showcase-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.showcase-image:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.2));
}

.showcase-image.img-enhanced {
  width: 140%;
  height: 140%;
  left: -20%;
  top: -20%;
  position: relative;
  max-width: none;
}

.showcase-image-lg {
  width: 140% !important;
  height: 140% !important;
  left: -20% !important;
  top: -20% !important;
  position: absolute !important;
  max-width: none !important;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .showcase-image-lg {
    width: 110% !important;
    height: 110% !important;
    left: -5% !important;
    top: -5% !important;
  }
}

@media (max-width: 768px) {
  .showcase-image {
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
  }

  .showcase-image-lg {
    width: 100% !important;
    height: auto !important;
    left: 0 !important;
    top: 0 !important;
  }

  .showcase-image.img-enhanced {
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
  }
}

.finance-charts,
.inventory-grid,
.team-board {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.15) 0%, rgba(255, 107, 129, 0.05) 100%);
  border-radius: 12px;
}

/* Modern Dashboard Reports Grid */
.reports-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .reports-dashboard-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }

  .widget-main,
  .widget-side,
  .widget-full,
  .widget-half {
    grid-column: span 2 !important;
  }
}

@media (max-width: 768px) {
  .reports-dashboard-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.25rem !important;
  }
}

.dashboard-widget {
  background: #ffffff;
  border-radius: 28px;
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.dashboard-widget:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(var(--theme-rgb), 0.12);
  border-color: rgba(var(--theme-rgb), 0.1);
}

.widget-main {
  grid-column: span 7;
}

.widget-side {
  grid-column: span 5;
}

.widget-full {
  grid-column: span 12;
}

.widget-half {
  grid-column: span 6;
}

.widget-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(var(--theme-rgb), 0.08);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color);
  margin-bottom: 2rem;
}

.widget-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  padding: 0.5rem 1rem;
  background: rgba(var(--theme-rgb), 0.1);
  color: var(--theme-color);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.widget-title {
  font-size: 1.8rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

.widget-desc {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.widget-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  list-style: none;
}

@media (max-width: 640px) {
  .widget-list {
    grid-template-columns: 1fr;
  }
}

.widget-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #374151;
  font-weight: 500;
}

.widget-list-item svg {
  color: var(--theme-color);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Mini Chart Elements for Widget */
.widget-visual-preview {
  margin-top: 2rem;
  background: #f9fafb;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px dashed rgba(var(--theme-rgb), 0.2);
}

.chart-bar-container {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
}

.chart-bar {
  flex: 1;
  background: rgba(var(--theme-rgb), 0.2);
  border-radius: 4px 4px 0 0;
  transition: all 0.6s ease;
}

.dashboard-widget:hover .chart-bar {
  background: var(--theme-color);
}

/* Flagship Highlighting */
.flagship-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: linear-gradient(90deg, #1a1a2e 0%, #374151 100%);
  color: #ffffff;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.flagship-badge .star-icon {
  color: #fbbf24;
}

.erp-main-highlight {
  position: relative;
}

.erp-main-highlight::before {
  content: 'FLAGSHIP';
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--theme-color);
  color: white;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 4px;
  transform: rotate(15deg);
  z-index: 10;
  box-shadow: 0 4px 10px rgba(var(--theme-rgb), 0.3);
}

/* Product Pricing */
.product-pricing {
  padding: 8rem 0;
  background: #ffffff;
}

@media (max-width: 768px) {
  .product-pricing {
    padding: 4rem 0;
  }
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .pricing-container {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Beauty Sync Specific Styles */
.beauty-theme .product-hero {
  background: url('assets/images/beautysincbgneww.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.beauty-theme .gradient-text {
  background: linear-gradient(135deg, #ec4899 0%, #f472b6 50%, #fb7185 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.beauty-theme .hero-badge,
.beauty-theme .section-badge,
.beauty-theme .product-tag,
.beauty-theme .showcase-badge {
  background: rgba(236, 72, 153, 0.15);
  color: #ec4899;
}

.beauty-theme .badge-dot {
  background: #ec4899;
}

.beauty-theme .btn-primary {
  background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
  border: none;
}

.beauty-theme .btn-primary:hover {
  background: linear-gradient(135deg, #db2777 0%, #ec4899 100%);
  box-shadow: 0 15px 40px rgba(236, 72, 153, 0.4);
  transform: translateY(-2px);
}

.beauty-theme .hero-device {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.beauty-theme .feature-icon {
  color: #ec4899;
}

/* Equal Eazy Specific Styles */
.eazy-theme .product-hero {
  background: url('assets/images/eazybgneww.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Insight Pro Specific Styles */
.insight-theme .product-hero {
  background: url('assets/images/insightpronew.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.insight-theme .gradient-text {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.insight-theme .hero-badge,
.insight-theme .section-badge,
.insight-theme .product-tag,
.insight-theme .showcase-badge {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

.insight-theme .badge-dot {
  background: #3b82f6;
}

.insight-theme .btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  border: none;
}

.insight-theme .btn-primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.insight-theme .hero-device {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

.insight-theme .feature-icon {
  color: #3b82f6;
}

/* Equal CMS Specific Styles */
.ecms-theme .product-hero {
  background: url('assets/images/ecmsbgneww.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Lab Care Specific Styles */
.labcare-theme .product-hero {
  background: url('assets/images/labcarebgneww.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* eCafe Specific Styles */
.ecafe-theme .product-hero {
  background: url('assets/images/ecafebgneww.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* HMS Specific Styles */
.hms-theme .product-hero {
  background: url('assets/images/hmsbgnew.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Appointment Showcase Specific */
.appointment-slots {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

.appointment-slot {
  height: 80px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 10px;
  border-left: 4px solid #d4af37;
}

.client-profile {
  padding: 2rem;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 12px;
}

.calendar-view {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 60px 1fr;
  gap: 1rem;
}

.calendar-header {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.2) 0%, rgba(244, 208, 63, 0.1) 100%);
  border-radius: 10px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.calendar-day {
  background: rgba(212, 175, 55, 0.05);
  border-radius: 8px;
}

/* Scoped Blue Theme for Equal Plus Page */
body.equal-plus-theme .product-hero {
  background: url('assets/images/equalplus\ bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.equal-plus-theme .product-hero::before {
  background: radial-gradient(circle, rgba(99, 108, 191, 0.08) 0%, transparent 70%);
}

body.equal-plus-theme .dashboard-header {
  background: linear-gradient(90deg, rgba(99, 108, 191, 0.2) 0%, rgba(87, 160, 239, 0.1) 100%);
}

body.equal-plus-theme .mobile-header {
  background: linear-gradient(90deg, rgba(99, 108, 191, 0.2) 0%, rgba(87, 160, 239, 0.1) 100%);
}

body.equal-plus-theme .showcase-badge {
  background: rgba(99, 108, 191, 0.1);
  color: #636cbf;
}

body.equal-plus-theme .showcase-features li svg {
  color: #636cbf;
}

body.equal-plus-theme .finance-charts,
body.equal-plus-theme .inventory-grid,
body.equal-plus-theme .team-board {
  background: linear-gradient(135deg, rgba(99, 108, 191, 0.15) 0%, rgba(87, 160, 239, 0.05) 100%);
}

/* Benefits Section Styles */
.benefits-section {
  padding: 80px 0;
  background: #ffffff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  background: #f8fcfd;
  /* Very subtle blue-ish grey */
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(99, 108, 191, 0.1);
  background: white;
  border-color: rgba(99, 108, 191, 0.1);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(99, 108, 191, 0.1);
  color: #636cbf;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background: #636cbf;
  color: white;
  transform: scale(1.1);
}

.benefit-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a2e;
}

.benefit-card p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-card {
    padding: 2rem;
  }
}

/* Combo Section Styles */
.combo-section {
  padding: 20px 0;
  position: relative;
  background: url('assets/images/equalpluscofetty.gif');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.combo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 70px;
  align-items: start;

}

.combo-item {
  width: 100%;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); */
  /* Subtle shadow fitting theme */
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.combo-item:hover {
  transform: translateY(-8px);
  /* box-shadow: 0 30px 60px rgba(99, 108, 191, 0.15); */
  /* Blue tinted shadow on hover */
}

.combo-image {
  width: 90%;
  height: auto;
  display: block;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .combo-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.erp-theme {
  --theme-color: #dc2626;
  --theme-rgb: 220, 38, 38;
}

.erp-theme .product-hero {
  background: url('assets/images/erpbgnew.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.erp-theme .gradient-text {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.erp-theme .hero-badge,
.erp-theme .section-badge,
.erp-theme .product-tag,
.erp-theme .showcase-badge {
  background: rgba(220, 38, 38, 0.15);
  color: #dc2626;
}

.erp-theme .badge-dot {
  background: #dc2626;
}

.erp-theme .btn-primary {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  border: none;
}

.erp-theme .btn-primary:hover {
  background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
  transform: translateY(-2px);
}

.erp-theme .hero-device {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.erp-theme .feature-icon {
  color: #dc2626;
}

/* Floating Hero Animation for ERP */
@keyframes heroFloat {

  0%,
  100% {
    transform: perspective(1200px) rotateY(-6deg) translateX(-30px) translateY(-50px);
  }

  50% {
    transform: perspective(1200px) rotateY(-4deg) translateX(-20px) translateY(-70px);
  }
}

.hero-product-img-erp {
  width: 140%;
  height: auto;
  object-fit: contain;
  object-position: top;
  clip-path: inset(4% 0);
  transform: perspective(1200px) rotateY(-6deg) translateX(-30px) translateY(-50px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18), 0 10px 25px rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  animation: heroFloat 8s infinite ease-in-out;
}

.hero-product-img-erp:hover {
  animation-play-state: paused;
  transform: perspective(1200px) rotateY(-3deg) translateX(-35px) translateY(-60px) scale(1.02);
  box-shadow: 0 45px 100px rgba(var(--theme-rgb), 0.25);
}

/* Glowing Section Badges */
.erp-theme .section-badge {
  background: rgba(var(--theme-rgb), 0.12);
  color: var(--theme-color);
  border: 1px solid rgba(var(--theme-rgb), 0.2);
  box-shadow: 0 0 20px rgba(var(--theme-rgb), 0.1);
  position: relative;
  overflow: hidden;
}

.erp-theme .section-badge::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(45deg);
  animation: badgeShimmer 3s infinite linear;
}

@keyframes badgeShimmer {
  0% {
    left: -100%;
    top: -100%;
  }

  100% {
    left: 100%;
    top: 100%;
  }
}

/* Professional Contact Section Overhaul for ERP */
.erp-theme .contact-section {
  background: radial-gradient(circle at top right, rgba(var(--theme-rgb), 0.05), transparent),
    radial-gradient(circle at bottom left, rgba(var(--theme-rgb), 0.05), transparent),
    #ffffff;
}

.erp-theme .contact-card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--theme-rgb), 0.1);
  transition: all 0.4s ease;
}

.erp-theme .contact-card:hover {
  border-color: var(--theme-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(var(--theme-rgb), 0.1);
}

.erp-theme .contact-icon {
  background: rgba(var(--theme-rgb), 0.15);
  padding: 15px;
  border-radius: 12px;
  color: var(--theme-color);
  font-size: 1.5rem;
}

/* Testimonial Card Alignment */
.erp-theme .testimonial-card {
  border-left: 4px solid var(--theme-color);
  background: rgba(255, 255, 255, 0.9);
}

.erp-theme .quote-icon {
  color: rgba(var(--theme-rgb), 0.1);
}

/* --- Value Ribbon Components --- */
.erp-theme .value-ribbon,
.ecafe-theme .value-ribbon,
.labcare-theme .value-ribbon {
  background: var(--theme-color);
  color: white;
  padding: 1.5rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 10;
  margin-top: 3rem;
}

.erp-theme .ribbon-track,
.ecafe-theme .ribbon-track,
.labcare-theme .ribbon-track {
  display: inline-block;
  animation: ribbonScroll 30s linear infinite;
}

.erp-theme .value-ribbon span,
.ecafe-theme .value-ribbon span,
.labcare-theme .value-ribbon span {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.erp-theme .erp-stats {
  padding: 5rem 0;
  background: #fafafa;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.erp-theme .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.erp-theme .stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--theme-color);
  margin-bottom: 0.5rem;
}

.erp-theme .stat-label {
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

/* --- ERP Theme Responsive Orchestration --- */

/* Laptop & Large Desktop (> 1440px) */
@media (min-width: 1440px) {
  .erp-theme .container {
    max-width: 1400px;
  }

  .erp-theme .product-hero-title {
    font-size: 4.2rem;
  }

  .erp-theme .hero-product-img-erp {
    width: 150%;
  }

  .erp-theme .showcase-item {
    gap: 8rem;
  }
}

/* Tablet & Smaller Laptops (768px - 1200px) */
@media (max-width: 1200px) {
  .erp-theme .product-hero-title {
    font-size: 3.2rem;
  }

  .erp-theme .hero-product-img-erp {
    width: 120%;
    transform: perspective(1200px) rotateY(-4deg) translateX(-10px) translateY(-20px);
  }

  .erp-theme .stats-grid {
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .erp-theme .product-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .erp-theme .product-hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .erp-theme .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .erp-theme .product-hero-visual {
    margin-top: 3rem;
    height: auto;
    min-height: 400px;
  }

  .erp-theme .hero-product-img-erp {
    width: 90%;
    max-width: 700px;
    transform: none;
    margin: 0 auto;
  }

  .erp-theme .showcase-item {
    grid-template-columns: 1fr !important;
    gap: 4rem;
    text-align: center;
  }

  .erp-theme .showcase-features {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .erp-theme .showcase-features li {
    margin-bottom: 0;
  }

  .erp-theme .showcase-visual {
    margin-right: 0;
    margin-left: 0;
    height: auto;
    min-height: 400px;
  }

  .erp-theme .showcase-image.img-enhanced {
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
  }
}

/* Specific Fix for Smaller Tablets (Portrait) */
@media (max-width: 900px) {
  .erp-theme .product-hero-title {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
    max-width: 90% !important;
    margin: 0 auto !important;
    word-wrap: break-word !important;
  }

  .erp-theme .product-hero-title span {
    display: block !important;
    font-size: 1.1rem !important;
    margin: 0.75rem auto 0 !important;
    white-space: normal !important;
    max-width: 280px !important;
  }

  .erp-theme .stat-number {
    font-size: 2rem !important;
  }

  .erp-theme .section-title {
    font-size: 2.22rem !important;
  }
}

/* Large Desktop Polish */
@media (min-width: 1920px) {
  .erp-theme .container {
    max-width: 1600px !important;
  }

  .erp-theme .product-hero-title {
    font-size: 4.8rem !important;
  }

  .erp-theme .showcase-item {
    gap: 12rem !important;
  }
}

/* Mobile & Small Tablets */
@media (max-width: 768px) {
  .hero-product-img-erp {
    width: 100%;
    transform: none !important;
    margin-top: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }

  .erp-theme .value-ribbon {
    margin-top: 1.5rem !important;
    padding: 1rem 0 !important;
  }

  .erp-theme .value-ribbon span {
    font-size: 0.9rem !important;
    margin: 0 1.5rem !important;
  }

  .erp-theme .erp-stats {
    padding: 3rem 0 !important;
  }

  .erp-theme .erp-stats .container {
    gap: 1.5rem !important;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
  }

  .erp-theme .stat-box div:first-child {
    font-size: 2.2rem !important;
  }

  .erp-theme .section-header {
    margin-bottom: 3rem !important;
  }

  .erp-theme .section-header p {
    margin: 1.5rem auto 0 !important;
    font-size: 1rem !important;
  }

  .erp-theme .reports-dashboard-grid {
    gap: 1.25rem !important;
  }

  .erp-theme .dashboard-widget {
    padding: 1.75rem !important;
    border-radius: 20px !important;
  }

  .erp-theme .widget-title {
    font-size: 1.4rem !important;
  }

  .erp-theme .widget-visual-preview {
    margin-top: 1.25rem !important;
    padding: 1rem !important;
  }

  .erp-theme .showcase-visual div[style*="position: absolute"] {
    position: relative !important;
    bottom: 0 !important;
    right: 0 !important;
    left: 0 !important;
    top: 0 !important;
    margin-top: 1rem !important;
    justify-content: center !important;
    width: fit-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .erp-theme .contact-container {
    gap: 1.5rem !important;
    margin-top: 2rem !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .erp-theme .contact-info {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    order: 1 !important;
    width: 100% !important;
  }

  .erp-theme .contact-card {
    padding: 1.25rem !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.75rem !important;
    text-align: center !important;
  }

  .erp-theme .contact-icon {
    margin-bottom: 0.5rem !important;
    width: 48px !important;
    height: 48px !important;
    padding: 10px !important;
    font-size: 1.25rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(var(--theme-rgb), 0.1) !important;
    border-radius: 12px !important;
    flex-shrink: 0 !important;
  }

  .erp-theme .contact-card h4 {
    margin-bottom: 0.25rem !important;
    font-size: 1.15rem !important;
  }

  .erp-theme .contact-card p {
    font-size: 0.85rem !important;
    margin: 0 !important;
  }

  .erp-theme .contact-form-wrapper {
    padding: 1.75rem !important;
    border-radius: 20px !important;
    order: 2 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .erp-theme .contact-form {
    gap: 1rem !important;
  }

  .erp-theme .form-group input,
  .erp-theme .form-group textarea {
    padding: 0.8rem 1.1rem !important;
    font-size: 0.95rem !important;
  }

  .erp-theme .contact-submit {
    padding: 0.9rem 1.75rem !important;
    margin-top: 0.5rem !important;
    width: 100% !important;
  }

  /* --- ERP Mobile Navigation Fixes --- */
  .erp-theme .nav {
    background: #ffffff !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08) !important;
    padding: 0 !important;
  }

  .erp-theme .nav-container {
    padding: 0.6rem 1.25rem !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    /* Allow mobile menu to be visible */
  }

  .erp-theme .nav-logo {
    display: flex !important;
    align-items: center !important;
    height: 32px !important;
    /* Match hamburger height for perfect alignment */
  }

  .erp-theme .nav-logo-img {
    height: 32px !important;
    width: auto !important;
    max-width: 120px !important;
  }

  .erp-theme .hamburger {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    /* Center the lines */
    align-items: center !important;
    gap: 5px !important;
    width: 32px !important;
    height: 32px !important;
    z-index: 2000 !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .erp-theme .hamburger span {
    display: block !important;
    width: 24px !important;
    height: 2px !important;
    background-color: #1a1a2e !important;
    border-radius: 4px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  /* Ensure the sliding mobile menu is correct */
  .erp-theme .nav-menu {
    background: #ffffff !important;
    padding: 6rem 2rem !important;
    border-left: 1px solid rgba(0, 0, 0, 0.05) !important;
  }

  .erp-theme .nav-link {
    font-size: 1.1rem !important;
    color: #1a1a2e !important;
  }
}

@media (max-width: 480px) {
  .erp-theme .stat-box div:first-child {
    font-size: 1.8rem !important;
  }
}

/* Premium Shimmer Effect for Flagship Badge */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.flagship-badge {
  background: linear-gradient(90deg, #1a1a2e 0%, #30305a 25%, #1a1a2e 50%, #30305a 75%, #1a1a2e 100%);
  background-size: 200% 100%;
  animation: shimmer 5s infinite linear;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Floating Decorative Orbs */
.decorative-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
  animation: floatOrb 20s infinite alternate ease-in-out;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(50px, 50px) scale(1.2);
  }
}

@media (max-width: 768px) {
  .decorative-orb {
    display: none !important;
    /* Prevent background elements from causing horizontal overflow */
  }
}

.orb-primary {
  width: 400px;
  height: 400px;
  background: var(--theme-color);
  top: -100px;
  right: -100px;
}

.orb-secondary {
  width: 300px;
  height: 300px;
  background: #f87171;
  bottom: 200px;
  left: -50px;
  animation-delay: -5s;
}

/* Enhanced Typography & Spacing */
.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
}

/* Glass Card Refinement */
.feature-card {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Scroll Animation Helper Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Equal Eazy Specific Styles */
.eazy-theme .gradient-text {
  background: linear-gradient(135deg, #2596be 0%, #38b6d8 50%, #67c9e3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eazy-theme .hero-badge,
.eazy-theme .section-badge,
.eazy-theme .product-tag,
.eazy-theme .showcase-badge {
  background: rgba(37, 150, 190, 0.15);
  color: #2596be;
}

.eazy-theme .badge-dot {
  background: #2596be;
}

.eazy-theme .btn-primary {
  background: linear-gradient(135deg, #2596be 0%, #38b6d8 100%);
  border: none;
}

.eazy-theme .btn-primary:hover {
  background: linear-gradient(135deg, #1a7a9e 0%, #2596be 100%);
  box-shadow: 0 15px 40px rgba(37, 150, 190, 0.4);
  transform: translateY(-2px);
}

.eazy-theme {
  --theme-color: #2596be;
  --theme-rgb: 37, 150, 190;
}

.eazy-theme .hero-device {
  background: linear-gradient(135deg, #2596be 0%, #1a7a9e 100%);
}

.eazy-theme .feature-icon {
  color: #2596be;
}

/* Floating Animation for Eazy Mobile App */
@keyframes eazyFloat {

  0%,
  100% {
    transform: perspective(1200px) rotateY(-8deg) translateX(-20px) translateY(-20px);
  }

  50% {
    transform: perspective(1200px) rotateY(-4deg) translateX(-10px) translateY(-50px);
  }
}

/* Ultra Realistic Reflection for Eazy Hero */
.eazy-theme .product-hero-visual::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: linear-gradient(45deg,
      transparent 45%,
      rgba(255, 255, 255, 0.1) 48%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0.1) 52%,
      transparent 55%);
  transform: rotate(0deg);
  pointer-events: none;
  z-index: 6;
  opacity: 0.5;
  animation: lightSweep 6s infinite ease-in-out;
}

@keyframes lightSweep {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }

  100% {
    transform: translateX(100%) rotate(25deg);
  }
}

.hero-product-img-eazy {
  width: 110%;
  height: auto;
  object-fit: contain;
  object-position: top;
  clip-path: inset(4% 0);
  transform: perspective(1200px) rotateY(-8deg) translateX(-10px) translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2), 0 15px 35px rgba(37, 150, 190, 0.15);
  border-radius: 20px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  animation: eazyFloat 8s infinite ease-in-out;
  position: relative;
  z-index: 5;
}

.hero-product-img-eazy:hover {
  animation-play-state: paused;
  transform: perspective(1200px) rotateY(-3deg) translateX(-15px) translateY(-20px) scale(1.05);
  box-shadow: 0 50px 110px rgba(var(--theme-rgb), 0.3);
}

@media (max-width: 1024px) {
  .hero-product-img-eazy {
    width: 100%;
    transform: perspective(1200px) rotateY(-5deg) translateX(-5px) translateY(-10px);
  }
}

/* Global Floating Badge System */
.floating-badge {
  position: absolute;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  z-index: 5;
  white-space: nowrap;
  pointer-events: none;
  animation: badgeFloat 4s infinite ease-in-out;
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.pulse-indicator {
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 50%;
  position: relative;
}

.pulse-indicator::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: 50%;
  animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.star-icon {
  color: #fbbf24;
}

/* Specific Badge Placements */
.status-online {
  border-color: rgba(16, 185, 129, 0.3);
}

.status-pro {
  border-color: rgba(var(--theme-rgb), 0.3);
}

.ecms-theme {
  --theme-color: #0c0a8e;
  --theme-rgb: 12, 10, 142;
}

.ecms-theme .gradient-text {
  background: linear-gradient(135deg, #0c0a8e 0%, #2d2bb5 50%, #5452d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ecms-theme .hero-badge,
.ecms-theme .section-badge,
.ecms-theme .product-tag,
.ecms-theme .showcase-badge {
  background: rgba(12, 10, 142, 0.1);
  color: #0c0a8e;
}

.ecms-theme .badge-dot {
  background: #0c0a8e;
}

.ecms-theme .btn-primary {
  background: linear-gradient(135deg, #0c0a8e 0%, #2d2bb5 100%);
  border: none;
}

.ecms-theme .btn-primary:hover {
  background: linear-gradient(135deg, #08066e 0%, #0c0a8e 100%);
  box-shadow: 0 15px 40px rgba(12, 10, 142, 0.4);
  transform: translateY(-2px);
}

.ecms-theme .hero-device {
  background: linear-gradient(135deg, #0c0a8e 0%, #08066e 100%);
}

.ecms-theme .feature-icon {
  color: #0c0a8e;
}

/* ECMS Visual Specifics */
@keyframes ecmsFloat {

  0%,
  100% {
    transform: perspective(1200px) rotateY(-8deg) translateX(-15px) translateY(-50px);
  }

  50% {
    transform: perspective(1200px) rotateY(-4deg) translateX(-5px) translateY(-90px);
  }
}

.hero-product-img-ecms {
  width: 130%;
  height: auto;
  object-fit: contain;
  object-position: top;
  clip-path: inset(5% 0);
  transform: perspective(1200px) rotateY(-8deg) translateX(-15px) translateY(-80px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22), 0 15px 35px rgba(12, 10, 142, 0.15);
  border-radius: 20px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  animation: ecmsFloat 8s infinite ease-in-out;
}

.hero-product-img-ecms:hover {
  animation-play-state: paused;
  transform: perspective(1200px) rotateY(-3deg) translateX(-25px) translateY(-90px) scale(1.02);
  box-shadow: 0 50px 110px rgba(var(--theme-rgb), 0.3);
}

/* ECMS Contact Refinements */
.ecms-theme .contact-section {
  background: radial-gradient(circle at top right, rgba(12, 10, 142, 0.03), transparent),
    radial-gradient(circle at bottom left, rgba(12, 10, 142, 0.03), transparent),
    #ffffff;
}

.ecms-theme .contact-card {
  background: #ffffff;
  border: 1px solid rgba(12, 10, 142, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ecms-theme .contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(12, 10, 142, 0.2);
  box-shadow: 0 25px 50px rgba(12, 10, 142, 0.08);
}

.ecms-theme .contact-icon {
  background: rgba(12, 10, 142, 0.08);
  color: #0c0a8e;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.ecms-theme .contact-card:hover .contact-icon {
  background: #0c0a8e;
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

.ecms-theme .contact-form-wrapper {
  background: #ffffff;
  border: 1px solid rgba(12, 10, 142, 0.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.03);
}

.ecms-theme .form-group input:focus,
.ecms-theme .form-group textarea:focus {
  border-color: #0c0a8e;
  box-shadow: 0 0 0 4px rgba(12, 10, 142, 0.1);
}

/* ECMS Footer Overrides */
.ecms-theme .social-link:hover {
  background: #0c0a8e;
  color: #ffffff;
}

.ecms-theme .footer-links a:hover {
  color: #0c0a8e;
}

.ecms-theme .footer-bottom a:hover {
  color: #0c0a8e;
}

/* LabCare Specific Styles */
.labcare-theme .gradient-text {
  background: linear-gradient(135deg, #e11d48 0%, #fb7185 50%, #fda4af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.labcare-theme .hero-badge,
.labcare-theme .section-badge,
.labcare-theme .product-tag,
.labcare-theme .showcase-badge {
  background: rgba(225, 29, 72, 0.12);
  color: #e11d48;
  border: 1px solid rgba(225, 29, 72, 0.1);
}

.labcare-theme .badge-dot {
  background: #e11d48;
}

.labcare-theme .btn-primary {
  background: linear-gradient(135deg, #e11d48 0%, #fb7185 100%);
  border: none;
}

.labcare-theme .btn-primary:hover {
  background: linear-gradient(135deg, #be123c 0%, #e11d48 100%);
  box-shadow: 0 15px 40px rgba(225, 29, 72, 0.4);
  transform: translateY(-2px);
}

.labcare-theme .hero-device {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
}

.labcare-theme .feature-icon {
  color: #e11d48;
}

/* Floating Animation for Lab Dashboard */
@keyframes labFloat {

  0%,
  100% {
    transform: perspective(1200px) rotateY(-6deg) translateX(-80px) translateY(-95px);
  }

  50% {
    transform: perspective(1200px) rotateY(-4deg) translateX(-70px) translateY(-115px);
  }
}

.lab-hero-anim {
  animation: labFloat 8s infinite ease-in-out;
}

/* LabCare Reports Premium Enhancements */
.labcare-theme .reports-showcase {
  background: radial-gradient(circle at 10% 10%, rgba(225, 29, 72, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 90%, rgba(225, 29, 72, 0.05) 0%, transparent 50%),
    #ffffff;
}

.labcare-theme .dashboard-widget {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(225, 29, 72, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  z-index: 1;
}

.labcare-theme .dashboard-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.labcare-theme .dashboard-widget:hover {
  transform: translateY(-12px) scale(1.01);
  border-color: rgba(225, 29, 72, 0.3);
  box-shadow: 0 40px 80px rgba(225, 29, 72, 0.12);
}

.labcare-theme .dashboard-widget:hover::before {
  opacity: 1;
}

.labcare-theme .widget-icon-box {
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.12) 0%, rgba(225, 29, 72, 0.05) 100%);
  border: 1px solid rgba(225, 29, 72, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.labcare-theme .dashboard-widget:hover .widget-icon-box {
  transform: rotate(12deg) scale(1.15);
  background: #e11d48;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(225, 29, 72, 0.3);
}

.labcare-theme .widget-badge {
  background: rgba(225, 29, 72, 0.1);
  border: 1px solid rgba(225, 29, 72, 0.2);
  color: #e11d48;
  backdrop-filter: blur(4px);
}

.labcare-theme .widget-title {
  color: #1a1a2e;
  font-size: 1.9rem;
  letter-spacing: -0.5px;
}

.labcare-theme .widget-list-item {
  transition: all 0.3s ease;
}

.labcare-theme .dashboard-widget:hover .widget-list-item {
  transform: translateX(8px);
  color: #1a1a2e;
}

.labcare-theme .chart-bar {
  background: linear-gradient(to top, rgba(225, 29, 72, 0.2), rgba(225, 29, 72, 0.5));
  border-radius: 6px 6px 2px 2px;
}

.labcare-theme .dashboard-widget:hover .chart-bar {
  background: linear-gradient(to top, #e11d48, #fb7185);
  box-shadow: 0 0 15px rgba(225, 29, 72, 0.2);
}

.labcare-theme .widget-visual-preview {
  background: rgba(225, 29, 72, 0.03);
  border: 1px dashed rgba(225, 29, 72, 0.2);
  border-radius: 20px;
}

.ecafe-theme {
  --theme-color: #025197;
  --theme-rgb: 2, 81, 151;
}

.ecafe-theme .gradient-text {
  background: linear-gradient(135deg, #025197 0%, #036cc9 50%, #0488fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ecafe-theme .hero-badge,
.ecafe-theme .section-badge,
.ecafe-theme .product-tag,
.ecafe-theme .showcase-badge {
  background: rgba(2, 81, 151, 0.12);
  color: #025197;
  border: 1px solid rgba(2, 81, 151, 0.1);
}

.ecafe-theme .badge-dot {
  background: #025197;
}

.ecafe-theme .btn-primary {
  background: linear-gradient(135deg, #025197 0%, #036cc9 100%);
  border: none;
  color: #ffffff;
}

.ecafe-theme .btn-primary:hover {
  background: linear-gradient(135deg, #013b6d 0%, #025197 100%);
  box-shadow: 0 15px 40px rgba(2, 81, 151, 0.4);
  transform: translateY(-2px);
}

.ecafe-theme .hero-device {
  background: linear-gradient(135deg, #025197 0%, #013b6d 100%);
}

.ecafe-theme .feature-icon {
  color: #025197;
}


/* Floating Animation for Cafe Dashboard */
@keyframes cafeFloat {

  0%,
  100% {
    transform: perspective(1200px) rotateY(-6deg) translateX(-20px) translateY(-20px);
  }

  50% {
    transform: perspective(1200px) rotateY(-4deg) translateX(-10px) translateY(-50px);
  }
}

.cafe-hero-anim {
  animation: cafeFloat 8s infinite ease-in-out;
}

/* Premium Enhancements for eCafe Theme */
.ecafe-theme .feature-card {
  background: #ffffff;
  border: 1px solid rgba(245, 158, 11, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ecafe-theme .feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(2, 81, 151, 0.3);
  box-shadow: 0 20px 40px rgba(2, 81, 151, 0.1);
}

.ecafe-theme .report-category,
.ecafe-theme .dashboard-widget {
  background: #ffffff;
  border: 1px solid rgba(2, 81, 151, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.ecafe-theme .contact-card {
  background: #ffffff;
  border: 1px solid rgba(245, 158, 11, 0.1);
}

.ecafe-theme .contact-card:hover {
  border-color: #025197;
  box-shadow: 0 15px 35px rgba(2, 81, 151, 0.1);
}

.ecafe-theme .section-badge {
  background: rgba(2, 81, 151, 0.1);
  color: #025197;
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}



/* HMS Specific Styles */
.hms-theme {
  --theme-color: #7b91d0;
  --theme-rgb: 123, 145, 208;
}

.hms-theme .gradient-text {
  background: linear-gradient(135deg, #7b91d0 0%, #9fb0e6 50%, #c2cff2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hms-theme .hero-badge,
.hms-theme .section-badge,
.hms-theme .product-tag,
.hms-theme .showcase-badge {
  background: rgba(123, 145, 208, 0.18);
  color: #7b91d0;
}

/* --- Premium Reports Showcase Section --- */
.reports-showcase {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}

.report-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.report-category {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.report-category:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(var(--theme-rgb), 0.12);
  border-color: rgba(var(--theme-rgb), 0.2);
}

.category-icon {
  width: 64px;
  height: 64px;
  background: rgba(var(--theme-rgb), 0.08);
  color: var(--theme-color);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
}

.report-category:hover .category-icon {
  background: var(--theme-color);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

.category-info h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.category-info ul {
  list-style: none;
  padding: 0;
}

.category-info li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.category-info li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: rgba(var(--theme-rgb), 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.report-category:hover .category-info li::before {
  background: var(--theme-color);
  transform: translateY(-50%) scale(1.2);
}

.report-category:hover .category-info li {
  color: #1a1a2e;
  transform: translateX(4px);
}

.reports-showcase::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(var(--theme-rgb), 0.05) 0%, transparent 70%);
  z-index: 1;
}

@media (max-width: 768px) {
  .report-category {
    padding: 2rem;
  }
}

.hms-theme .badge-dot {
  background: #7b91d0;
}

.hms-theme .btn-primary {
  background: linear-gradient(135deg, #7b91d0 0%, #9fb0e6 100%);
  border: none;
  color: #0f172a;
  /* dark text for accessibility */
}

.hms-theme .btn-primary:hover {
  background: linear-gradient(135deg, #5f77b8 0%, #7b91d0 100%);
  box-shadow: 0 15px 40px rgba(123, 145, 208, 0.45);
  transform: translateY(-2px);
}

.hms-theme .hero-device {
  background: linear-gradient(135deg, #7b91d0 0%, #5f77b8 100%);
}

.hms-theme .feature-icon {
  color: #7b91d0;
}

/* Premium HMS Card Enhancements */
.hms-theme .feature-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(123, 145, 208, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hms-theme .feature-card:hover {
  transform: translateY(-10px);
  border-color: #7b91d0;
  box-shadow: 0 20px 50px rgba(123, 145, 208, 0.15);
}

.hms-theme .contact-card {
  border: 1px solid rgba(123, 145, 208, 0.1);
  background: #ffffff;
}

.hms-theme .contact-card:hover {
  border-color: #7b91d0;
  box-shadow: 0 15px 35px rgba(123, 145, 208, 0.12);
}

.hms-theme .category-icon {
  background: rgba(123, 145, 208, 0.08);
  color: #7b91d0;
}

.hms-theme .report-category:hover .category-icon {
  background: #7b91d0;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .hero-product-img-erp {
    animation: none !important;
    /* kills heroFloat so transform override works */
    transform: none !important;
    width: 100% !important;
    margin-top: 2rem;
    clip-path: none !important;
    /* remove the inset clip that hides top/bottom */
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }

  /* Prevent the hero from creating horizontal scroll */
  .product-hero {
    overflow-x: hidden !important;
  }

  /* Center the visual column */
  .erp-theme .product-hero-visual {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
}

/* ── 2. Hide the rotated FLAGSHIP ribbon that bleeds off-screen on mobile ── */
@media (max-width: 1024px) {
  .erp-main-highlight::before {
    display: none;
  }
}

/* ── 3. Nav — ensure logo is never clipped on small screens ── */
@media (max-width: 480px) {
  .erp-theme .nav-container {
    padding: 0.6rem 1rem !important;
    gap: 0.5rem;
  }

  .erp-theme .nav-logo-img {
    height: 30px !important;
    max-width: 100px !important;
  }

  /* Keep Get-Started CTA hidden; show only hamburger */
  .erp-theme .nav-cta {
    display: none !important;
  }
}

/* ── 4. Mobile nav slide-menu polish ── */
@media (max-width: 768px) {
  .erp-theme .nav-menu {
    z-index: 1500 !important;
    width: 260px !important;
    padding: 5rem 1.5rem 2rem !important;
  }

  .erp-theme .nav-menu .nav-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 1rem !important;
  }
}

/* ── 5. Prevent body-level horizontal scroll (safety net) ── */
html,
body.erp-theme {
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative !important;
}