html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Landing Page Styles */

/* Hero Section */
.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #ea580c 100%);
  color: white;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(30, 58, 138, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(234, 88, 12, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: white;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-logo {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Products Section */
.products-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.section-header {
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: #1e40af;
}

.product-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #1e40af 0%, #ea580c 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
}

.product-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.product-description {
  color: #718096;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-link {
  color: #1e40af;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.product-link:hover {
  color: #ea580c;
  gap: 0.75rem;
}

.product-link .arrow {
  transition: transform 0.3s ease;
}

.product-link:hover .arrow {
  transform: translateX(4px);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #ea580c 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(30, 58, 138, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(234, 88, 12, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #1e40af 0%, #ea580c 100%);
  border: none;
  color: white;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.5);
  background: linear-gradient(135deg, #ea580c 0%, #1e40af 100%);
  color: white;
}

.btn-outline-primary {
  border: 2px solid white;
  color: white;
  background: transparent;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: white;
  color: #1e40af;
  transform: translateY(-2px);
}

/* Navigation Updates */
.navbar {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 0 !important;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  min-height: 60px;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

header {
  margin-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-logo {
  height: 35px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar-brand {
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #1e40af !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
  transform: scale(1.05);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.25);
}

.navbar-nav {
  align-items: center;
  gap: 0.25rem;
}

.navbar-nav.mx-auto {
  flex: 1;
  justify-content: center;
}

.navbar-nav .nav-item {
  margin: 0 0.25rem;
}

.navbar-nav .nav-link:not(.nav-btn):not(.btn) {
  color: #4a5568 !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}

.navbar-nav .nav-link:not(.nav-btn):not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #1e40af 0%, #ea580c 100%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:not(.nav-btn):not(.btn):hover {
  color: #1e40af !important;
}

.navbar-nav .nav-link:not(.nav-btn):not(.btn):hover::after {
  width: 80%;
}

/* Plain border buttons for Login/Register */
.nav-btn {
  border: 1px solid #cbd5e0 !important;
  border-radius: 6px !important;
  padding: 0.5rem 1.25rem !important;
  color: #4a5568 !important;
  background: white !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
}

.nav-btn:hover {
  border-color: #1e40af !important;
  color: #1e40af !important;
  background: #f7fafc !important;
}

/* Profile Dropdown Styles */
.navbar-nav .dropdown-toggle::after {
  margin-left: 0.5rem;
}

.navbar-nav .dropdown-menu {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
  padding: 0.5rem 0;
  min-width: 220px;
}

.navbar-nav .dropdown-header {
  padding: 0.75rem 1rem;
  color: #4a5568;
}

.navbar-nav .dropdown-item {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.navbar-nav .dropdown-item:hover {
  background-color: #f7fafc;
  color: #1e40af;
}

.navbar-nav .dropdown-item.text-danger {
  color: #dc3545 !important;
}

.navbar-nav .dropdown-item.text-danger:hover {
  background-color: #fee;
  color: #c82333 !important;
}

.navbar-nav .dropdown-item svg {
  flex-shrink: 0;
}

.navbar-nav .dropdown-divider {
  margin: 0.5rem 0;
  border-color: #e2e8f0;
}


/* Container adjustments for navbar */
.navbar .container-fluid {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (max-width: 991px) {
  .navbar-nav {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .navbar-nav .dropdown-menu {
    position: static !important;
    float: none;
    width: 100%;
    margin-top: 0.5rem;
    box-shadow: none;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
  }

  .navbar-nav .nav-item {
    width: 100%;
    margin: 0;
  }

  .navbar-nav.mx-auto {
    flex: none;
    width: 100%;
  }

  .navbar-nav .nav-link:not(.nav-btn) {
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
  }

  .navbar-nav .nav-link:not(.nav-btn)::after {
    display: none;
  }

  .navbar-nav .nav-btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem !important;
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 0.5rem 0;
    min-height: 55px;
  }

  .navbar-logo {
    height: 30px;
  }

  .navbar .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.navbar-brand {
  font-weight: 700;
  color: #1e40af !important;
  font-size: 1.25rem;
}

.nav-link {
  color: #4a5568 !important;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #1e40af !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .hero-logo {
    max-width: 200px;
    margin-top: 2rem;
  }

  .product-card {
    margin-bottom: 1.5rem;
  }
}

/* Container adjustments */
.container {
  max-width: 1200px;
}

/* Remove default container padding on landing page */
.hero-section .container,
.products-section .container,
.cta-section .container {
  padding-left: 15px;
  padding-right: 15px;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1e3a8a 0%, #2d3748 100%);
  color: #a0aec0;
  padding: 4rem 0 2rem;
  margin-top: 0;
  margin-bottom: 0;
  border-top: none;
}

.footer-content {
  padding-bottom: 2rem;
}

.footer-widget {
  margin-bottom: 2rem;
}

.footer-logo-img {
  max-width: 150px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-description {
  color: #cbd5e0;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-top: 1rem;
}

.footer-title {
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #cbd5e0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ea580c;
  transform: translateX(5px);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
}

.footer-copyright {
  color: #a0aec0;
  font-size: 0.9rem;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #cbd5e0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(135deg, #1e40af 0%, #ea580c 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-social {
    justify-content: flex-start;
    margin-top: 1rem;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .col-md-6 {
    text-align: center !important;
  }

  .footer-logo-img {
    max-width: 120px;
  }
}

/* Full width sections */
.hero-section,
.products-section,
.cta-section {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* Products Page Styles */
.products-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #ea580c 100%);
  color: white;
  text-align: center;
}

.products-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.products-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

.products-grid-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.product-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1e40af;
  font-weight: bold;
}

.product-link {
  color: #ea580c;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.product-link:hover {
  color: #c2410c;
}

.product-link .arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.product-link:hover .arrow {
  transform: translateX(5px);
}

/* About Page Styles */
.about-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #ea580c 100%);
  color: white;
  text-align: center;
}

.about-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

.about-content-section {
  padding: 80px 0;
  background-color: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 1.5rem;
}

.section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.about-image-placeholder {
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
  border-radius: 12px;
  padding: 3rem;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-content {
  opacity: 0.5;
}

.value-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(45deg, #1e40af 0%, #2563eb 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
}

.value-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 1rem;
}

.value-text {
  color: #555;
  line-height: 1.7;
}

/* Contact Page Styles */
.contact-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #ea580c 100%);
  color: white;
  text-align: center;
}

.contact-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.contact-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.contact-form-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 2rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form .form-label {
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.contact-form .form-control {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #1e40af;
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
  outline: none;
}

.contact-info-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-info-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(45deg, #1e40af 0%, #2563eb 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 1.5rem;
  box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
}

.contact-info-content h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 0.5rem;
}

.contact-info-content p {
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Responsive Styles for New Pages */
@media (max-width: 992px) {
  .products-hero-title,
  .about-hero-title,
  .contact-hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .products-hero,
  .about-hero,
  .contact-hero {
    padding: 60px 0 40px;
  }
  
  .products-hero-title,
  .about-hero-title,
  .contact-hero-title {
    font-size: 2rem;
  }
  
  .products-grid-section,
  .about-content-section,
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-form-card,
  .contact-info-card {
    padding: 2rem;
  }
  
  .about-image-placeholder {
    min-height: 200px;
    margin-top: 2rem;
  }
}

/* Pricing Section Styles */
.pricing-section {
  background-color: #f8f9fa;
}

.pricing-product-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.employee-ranges-container {
  margin-top: 1.5rem;
}

.employee-range-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1.25rem;
  height: 100%;
  transition: all 0.3s ease;
}

.employee-range-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.employee-range-label {
  background: #ffe5e5;
  color: #333;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  text-align: center;
}

.employee-range-pricing {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.75rem;
  border-radius: 6px;
  background: #f8f9fa;
}

.pricing-item.monthly-pricing {
  background: #f0f4ff;
  border-left: 3px solid #258cfb;
}

.pricing-item.yearly-pricing {
  background: #f0fff4;
  border-left: 3px solid #28a745;
}

.pricing-item.yearly-pricing.has-discount {
  background: #fff4e6;
  border-left: 3px solid #ff9800;
}

.pricing-label-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pricing-label {
  color: #333;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-period {
  color: #6c757d;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: lowercase;
}

.pricing-value {
  color: #333;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: right;
}

.discount-badge {
  display: inline-block;
  background: #ff9800;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.yearly-price-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.yearly-original-price {
  color: #999;
  font-size: 0.85rem;
  font-weight: 400;
  text-decoration: line-through;
}

.yearly-value {
  color: #28a745;
  font-size: 1.2rem;
}

.pricing-item.yearly-pricing.has-discount .yearly-value {
  color: #ff9800;
}

.discount-info {
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: #e8f5e9;
  border-radius: 4px;
  text-align: center;
}

.discount-info small {
  color: #2e7d32;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .pricing-product-card {
    padding: 1.5rem;
  }

  .employee-range-card {
    margin-bottom: 1rem;
  }

  .pricing-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .pricing-value {
    text-align: left;
    width: 100%;
  }

  .yearly-price-container {
    align-items: flex-start;
  }

  .pricing-label-container {
    width: 100%;
  }
}

/* Privacy Policy Page Styles */
.privacy-content {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.privacy-section {
  margin-bottom: 3rem;
}

.privacy-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e40af;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.privacy-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.7;
  color: #555;
}

.privacy-list li::before {
  content: "•";
  position: absolute;
  left: 0.5rem;
  color: #1e40af;
  font-weight: bold;
  font-size: 1.2rem;
}

.contact-info-box {
  background: #f8f9fa;
  border-left: 4px solid #1e40af;
  padding: 1.5rem;
  border-radius: 6px;
  margin: 1.5rem 0;
}

.contact-info-box p {
  margin-bottom: 0.5rem;
}

.contact-info-box a {
  color: #1e40af;
  text-decoration: none;
  font-weight: 500;
}

.contact-info-box a:hover {
  text-decoration: underline;
}

.privacy-footer {
  margin-top: 3rem;
  padding-top: 2rem;
}

@media (max-width: 768px) {
  .privacy-content {
    padding: 2rem 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .privacy-subtitle {
    font-size: 1.25rem;
  }

  .privacy-list li {
    padding-left: 1.5rem;
  }
}

/* Product Details Page Styles */
.product-detail-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.product-detail-icon svg {
  width: 80px;
  height: 80px;
  color: white;
}

.product-detail-section {
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.feature-icon {
  color: #1e40af;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.product-detail-cta {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.breadcrumb {
  background: transparent;
  padding: 0;
}

.breadcrumb-item a {
  color: #1e40af;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.product-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.product-link-primary {
  background: #1e40af;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-link-primary:hover {
  background: #1e3a8a;
  color: white;
  transform: translateY(-2px);
}

.product-link-primary .arrow {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.product-link-primary:hover .arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .product-detail-icon svg {
    width: 60px;
    height: 60px;
  }

  .product-detail-cta {
    padding: 2rem 1.5rem;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-link-primary {
    width: 100%;
    text-align: center;
  }
}

/* Blog Section Styles */
.blog-section {
  background-color: #f8f9fa;
}

.blog-post-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.blog-post-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.blog-post-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #e9ecef;
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-image img {
  transform: scale(1.05);
}

.blog-post-content {
  padding: 1.5rem;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: #6c757d;
}

.blog-post-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-post-meta svg {
  width: 16px;
  height: 16px;
}

.blog-post-category a {
  color: #1e40af;
  text-decoration: none;
  font-weight: 500;
}

.blog-post-category a:hover {
  text-decoration: underline;
}

.blog-post-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 1rem 0;
  line-height: 1.3;
}

.blog-post-title a {
  color: #333;
  text-decoration: none;
}

.blog-post-title a:hover {
  color: #1e40af;
}

.blog-post-excerpt {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.blog-post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.blog-read-more {
  color: #1e40af;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-read-more:hover {
  text-decoration: underline;
}

.blog-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-tag {
  background: #f0f4ff;
  color: #1e40af;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-tag:hover,
.blog-tag.active {
  background: #1e40af;
  color: white;
}

.blog-sidebar {
  position: sticky;
  top: 20px;
}

.blog-sidebar-widget {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-sidebar-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.blog-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-sidebar-list li {
  margin-bottom: 0.5rem;
}

.blog-sidebar-list a {
  color: #555;
  text-decoration: none;
  display: block;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.blog-sidebar-list a:hover,
.blog-sidebar-list a.active {
  background: #f0f4ff;
  color: #1e40af;
  font-weight: 500;
}

.blog-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-pagination {
  margin-top: 3rem;
}

/* Blog Detail Styles */
.blog-detail-hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.blog-breadcrumb {
  background: transparent;
}

.blog-breadcrumb .breadcrumb-item a {
  color: #1e40af;
  text-decoration: none;
}

.blog-breadcrumb .breadcrumb-item.active {
  color: #6c757d;
}

.blog-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  color: #6c757d;
  font-size: 0.9rem;
}

.blog-detail-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-detail-meta a {
  color: #1e40af;
  text-decoration: none;
}

.blog-detail-meta a:hover {
  text-decoration: underline;
}

.blog-detail-section {
  background-color: white;
}

.blog-detail-image {
  text-align: center;
}

.blog-detail-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.blog-detail-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.blog-detail-content h1,
.blog-detail-content h2,
.blog-detail-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1e40af;
}

.blog-detail-content p {
  margin-bottom: 1.5rem;
}

.blog-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.blog-detail-tags {
  padding: 1rem 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.blog-related-posts {
  padding: 2rem 0;
  border-top: 2px solid #e9ecef;
}

.blog-related-card {
  background: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-related-image {
  width: 100%;
  height: 150px;
  overflow: hidden;
  background: #e9ecef;
}

.blog-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-related-content {
  padding: 1rem;
}

.blog-related-content h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.blog-related-content h4 a {
  color: #333;
  text-decoration: none;
}

.blog-related-content h4 a:hover {
  color: #1e40af;
}

.blog-related-date {
  font-size: 0.85rem;
  color: #6c757d;
  margin: 0;
}

.blog-comments-section {
  padding: 2rem 0;
  border-top: 2px solid #e9ecef;
}

/* Blog Comment Styles */
.blog-comment-item {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.blog-comment-reply {
  margin-left: 3rem;
  margin-top: 1rem;
  background: #f8f9fa;
}

.blog-comment-header {
  margin-bottom: 1rem;
}

.blog-comment-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.blog-comment-info {
  display: flex;
  flex-direction: column;
}

.blog-comment-name {
  color: #333;
  font-size: 1rem;
}

.blog-comment-date {
  color: #6c757d;
  font-size: 0.85rem;
}

.blog-comment-content {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.blog-comment-actions {
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.blog-comment-reply-btn {
  background: none;
  border: none;
  color: #1e40af;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.blog-comment-reply-btn:hover {
  background: #f0f4ff;
}

.blog-comment-reply-form {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.blog-comment-replies {
  margin-top: 1rem;
}

.blog-comment-form {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2rem;
}

.blog-comment-form h4 {
  color: #333;
  font-weight: 600;
}

.blog-comment-form-content .form-label {
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
}

.blog-comment-form-content .form-control {
  border: 1px solid #dee2e6;
  border-radius: 6px;
}

.blog-comment-form-content .form-control:focus {
  border-color: #258cfb;
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

@media (max-width: 768px) {
  .blog-post-image {
    height: 200px;
  }

  .blog-post-title {
    font-size: 1.5rem;
  }

  .blog-sidebar {
    position: static;
    margin-top: 2rem;
  }

  .blog-detail-title {
    font-size: 1.75rem;
  }

  .blog-detail-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .blog-comment-reply {
    margin-left: 1rem;
  }
}

/* Coming Soon / Work in Progress Styles */
.coming-soon-banner {
  background: linear-gradient(135deg, #fff4e6 0%, #ffe5cc 100%);
  border: 2px solid #ff9800;
  border-radius: 12px;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
}

.coming-soon-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.coming-soon-content {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2rem;
}

@media (max-width: 768px) {
  .coming-soon-banner {
    padding: 2rem 1.5rem;
  }

  .coming-soon-icon svg {
    width: 60px;
    height: 60px;
  }
}
