/*
Theme Name: Goooch
Theme URI: https://goooch.com
Author: Goooch
Author URI: https://goooch.com
Description: A modern, responsive WordPress theme for Goooch products
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: goooch
Domain Path: /languages
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
*/

:root {
  /* --primary-color: #667eea; */
  --primary-color: #4A00FF;
  --primary-dark: #5568d3;
  --secondary-color: #764ba2;
  --success-color: #4caf50;
  --info-color: #00bcd4;
  --warning-color: #ff9800;
  --danger-color: #f44336;
  --light-bg: #f5f7fa;
  --text-dark: #333333;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: #ffffff;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

/* Header Navigation */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-brand img {
  max-height: 40px;
}

.nav-link {
  color: var(--text-dark) !important;
  margin: 0 0.75rem;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
  padding: 0.5rem 0 !important;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

/* .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
} */

/* .nav-item.dropdown:hover .dropdown-menu {
  display: block;
  animation: fadeIn 0.3s ease;
} */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu {
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 0.75rem;
  margin-top: 0.5rem;
  padding: 0.5rem;
  min-width: 220px;
}

.dropdown-item {
  color: var(--text-dark);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

/* .dropdown-item:hover {
  background-color: #f3f4f6;
  color: var(--primary-color);
  transform: translateX(5px);
} */

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border: none;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  background-color: transparent;
}

.btn-outline-primary:hover {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  background-color: transparent;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  color: #ffffff;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  padding: 100px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.text-gradient {
  background: linear-gradient(90deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-features {
  margin-bottom: 2rem;
}

.hero-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.hero-features li i {
  font-size: 1.2rem;
  margin-top: 0.1rem;
}

.hero-stats {
  color: rgba(255, 255, 255, 0.9);
}

.social-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  color: #ffffff;
}

.hero-image-wrapper {
  position: relative;
  height: 500px;
}

.hero-floating-elements {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  animation: float 3s ease-in-out infinite;
}

.floating-1 {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.floating-2 {
  top: 40%;
  right: 15%;
  animation-delay: 1s;
}

.floating-3 {
  bottom: 20%;
  left: 30%;
  animation-delay: 2s;
}

.hero-main-graphic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
}

.gradient-circle {
  position: absolute;
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.gradient-circle-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0s;
}

.gradient-circle-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 1s;
}

.gradient-circle-3 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 2s;
}

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

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.5;
  }
}

/* Product Cards Section */
.products-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0;
}

.carousel-nav-custom {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-nav-prev,
.btn-nav-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f5f7fa;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-nav-prev:hover,
.btn-nav-next:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.nav-divider {
  font-size: 0.9rem;
  color: var(--text-light);
}

.product-card-new {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card-new:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.product-icon {
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  color: #ffffff;
}

.product-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 1rem;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.product-description {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
  height: 8rem;
}

.product-content {
    /** 4 lines height max for more display ... */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.product-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.product-link:hover {
  gap: 0.75rem;
  color: var(--primary-dark);
}

.view-all-link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.view-all-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Carousel */
.carousel {
  margin: 0 -12px;
}

.carousel-inner {
  padding: 0 12px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-indicators {
  bottom: -50px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--border-color);
  border: none;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  background-color: var(--primary-color);
  width: 32px;
  border-radius: 6px;
}

/* Features Section */
.features-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-text {
  color: var(--text-light);
  font-size: 1rem;
}

/* Video Section */
.video-section {
  padding: 60px 0;
  background-color: var(--light-bg);
  text-align: center;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin: 2rem 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Stats Section */
.stats-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.testimonial-nav {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 2rem;
}

.btn-testimonial-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f5f7fa;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-testimonial-nav:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.testimonial-card-new {
  background-color: #f9fafb;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

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

.testimonial-avatar-new {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.5rem;
}

.testimonial-avatar-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.star-rating-new {
  color: #fbbf24;
  font-size: 0.9rem;
}

.star-rating-new i {
  margin-right: 2px;
}

.testimonial-text-new {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Solutions Section */
.solutions-section {
  padding: 80px 0;
  background-color: #f9fafb;
}

.solutions-image-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.solutions-image-wrapper img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.stats-row {
  max-width: 900px;
  margin: 0 auto;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* FAQ Section New */
.faq-section-new {
  padding: 80px 0;
  background-color: #ffffff;
}

.faq-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-image: url(./assets/images/home_faq.svg);
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}

.faq-icon-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  /* background: linear-gradient(135deg, #e0e7ff 0%, #f3e8ff 100%); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon-wrapper i {
  font-size: 5rem;
  color: var(--primary-color);
}

.faq-badge {
  position: absolute;
  top: 20%;
  right: 10%;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.accordion-flush .accordion-item {
  border: none;
  border-bottom: 1px solid #e5e7eb;
  background-color: transparent;
}

.accordion-flush .accordion-button {
  background-color: transparent;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.5rem 0;
  box-shadow: none;
}

.accordion-flush .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--primary-color);
}

.accordion-flush .accordion-button i {
  transition: transform 0.3s ease;
}

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

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

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

/* .faq-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
} */

/* CTA Section New */
.cta-section-new {
  padding: 100px 0;
  background-image: url(./assets/images/home_download.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.cta-title-new {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.btn-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
  color: #ffffff;
}

/* Note: FAQ and CTA styles are now in their respective -new sections above */

.cta-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Footer */
footer {
  background-color: #1a1a2e;
  color: #ffffff;
  padding: 40px 0 20px;
  margin-top: 40px;
}

.footer-widget {
  margin-bottom: 2rem;
}

.footer-widget h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 0.5rem;
}

.footer-menu a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
  color: #b0b0b0;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-image-wrapper {
    display: none;
  }

  .carousel-nav-custom {
    /* flex-direction: column; */
    gap: 0.5rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero-section {
    padding: 60px 0;
    min-height: auto;
  }

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

  .hero-content .badge {
    font-size: 0.75rem;
  }

  .hero-features li {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  .products-section,
  .testimonials-section,
  .solutions-section,
  .faq-section-new {
    padding: 60px 0;
  }

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

  .cta-title-new {
    font-size: 2rem;
  }

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

  .faq-icon-wrapper {
    width: 150px;
    height: 150px;
  }

  .faq-icon-wrapper i {
    font-size: 3.5rem;
  }

  .nav-link {
    margin: 0.5rem 0;
  }

  .btn-light {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

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

  .hero-features li {
    font-size: 0.85rem;
  }

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

  .product-card-new {
    padding: 1.5rem;
  }

  .product-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

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

  .stat-label {
    font-size: 0.8rem;
  }

  .cta-title-new {
    font-size: 1.5rem;
  }

  .btn-cta {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }

  .testimonial-card-new {
    padding: 1.5rem;
  }

  .faq-illustration {
    margin-bottom: 2rem;
    
  }

  .navbar-toggler {
    border-color: var(--border-color);
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23667eea' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .floating-card {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* Support/FAQ Archive Page Styles */
.support-hero-section {
  background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.support-hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 193, 7, 0.1);
  border-radius: 50%;
}

.support-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0;
}

.support-hero-icon {
  font-size: 5rem;
  color: #ffc107;
  opacity: 0.3;
}

/* Breadcrumb */
.support-breadcrumb-section {
  background-color: #f9fafb;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
  margin-bottom: 0;
  padding: 0;
}

.breadcrumb-item a {
  color: var(--text-light);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--primary-color);
}

.breadcrumb-item.active {
  color: var(--text-dark);
}

/* Support Content Section */
.support-content-section {
  padding: 60px 0;
}

/* Sidebar */
.support-sidebar {
  background-color: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Accordion styling */
.support-sidebar .accordion {
  border: none;
}

.support-sidebar .accordion-item {
  border: none;
  border-bottom: 1px solid var(--border-color);
}

.support-sidebar .accordion-item:last-child {
  border-bottom: none;
}

.support-category-header {
  padding: 0;
  background-color: #ffffff;
}

.support-category-link {
  display: flex;
  align-items: center;
  padding: 1rem;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  background-color: #ffffff;
  border: none;
  width: 100%;
  text-align: left;
  box-shadow: none;
}

.support-category-link:hover {
  background-color: var(--light-bg);
  color: var(--primary-color);
}

.support-category-link:not(.collapsed) {
  /* background-color: var(--primary-color) !important; */
  background: linear-gradient(90deg, #4A00FF 0%, #C040FF 100%) !important;
  color: #ffffff !important;
}

.support-category-link i:first-child {
  margin-right: 0.75rem;
  min-width: 20px;
}

.support-category-body {
  background-color: #fafbfc;
  padding: 0;
  display: flex;
  flex-direction: column;
  max-height: 400px;
  overflow-y: auto;
}

.support-subcategory {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem 0.75rem 2rem;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.support-subcategory:hover {
  color: var(--primary-color);
  background-color: #f5f7fa;
  border-left-color: var(--primary-color);
}

.support-subcategory.active {
  color: var(--primary-color);
  background-color: #f5f7fa;
  border-left-color: var(--primary-color);
  font-weight: 600;
}

.support-subcategory i {
  margin-right: 0.5rem;
  font-size: 0.5rem;
}

/* Content Area */
.support-content-area {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.support-content-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.support-content-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.support-content-description {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Accordion */
.support-accordion-wrapper {
  margin-bottom: 2rem;
}

.accordion-flush {
  border: none;
}

.support-accordion-item {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.support-accordion-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-color);
}

.accordion-button {
  background-color: #ffffff;
  color: var(--text-dark);
  font-weight: 600;
  padding: 1.25rem;
  border: none;
  text-align: left;
}

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

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23667eea' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.support-accordion-body {
  padding: 1.25rem;
  color: var(--text-light);
  line-height: 1.8;
  background-color: #ffffff;
}

.support-accordion-body p {
  margin-bottom: 1rem;
}

.support-accordion-body p:last-child {
  margin-bottom: 0;
}

.support-accordion-body ul,
.support-accordion-body ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.support-accordion-body li {
  margin-bottom: 0.5rem;
}

/* No Posts */
.support-no-posts {
  text-align: center;
  padding: 4rem 2rem;
}

.no-posts-icon {
  font-size: 4rem;
  color: var(--border-color);
  margin-bottom: 1rem;
}

.support-no-posts h3 {
  color: var(--text-dark);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.support-no-posts p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Pagination */
.support-pagination {
  margin-top: 3rem;
  text-align: center;
}

.support-pagination .pagination {
  justify-content: center;
}

/* News Archive */
.news-hero {
  padding: 60px 0 30px;
  background: linear-gradient(135deg, #f7f0ff 0%, #e5f5ff 100%);
}

.news-hero-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.news-hero-media img,
.news-hero-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
  background: linear-gradient(135deg, #d8e7ff 0%, #f1e5ff 100%);
}

.news-hero-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  position: relative;
  height: 100%;
}

.news-hero-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 1rem 0 0.75rem;
}

.news-hero-heading a {
  color: inherit;
}

.news-hero-excerpt {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.news-badge {
  display: inline-block;
  background: #5b7bff;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.news-list-section {
  padding: 40px 0 60px;
}

.news-section-title {
  font-weight: 700;
  color: var(--text-dark);
}

.news-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.news-card-media img,
.news-thumb-placeholder {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: linear-gradient(135deg, #e7f1ff 0%, #f6e9ff 100%);
}

.news-card-body {
  padding: 1rem 1.1rem 1.25rem;
}

.news-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0.5rem 0 0.35rem;
}

.news-card-title a {
  color: inherit;
}

.news-card-excerpt {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  min-height: 48px;
}

.news-pagination {
  margin-top: 2.5rem;
}

.news-pagination .page-numbers {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0;
  list-style: none;
}

.news-pagination .page-numbers li {
  list-style: none;
}

.news-pagination .page-numbers a,
.news-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  text-decoration: none;
  font-weight: 600;
}

.news-pagination .page-numbers .current,
.news-pagination .page-numbers a:hover {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

/* News Detail */
.news-detail-hero {
  padding: 50px 0 30px;
  background: linear-gradient(135deg, #f7f0ff 0%, #e5f5ff 100%);
}

.news-detail-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.news-detail-meta {
  font-size: 0.95rem;
}

.news-detail-body {
  padding: 50px 0 70px;
}

.news-detail-article {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.news-detail-thumb img,
.news-thumb-placeholder.small {
  width: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #e7f1ff 0%, #f6e9ff 100%);
}

.news-detail-content {
  color: var(--text-dark);
}

.news-detail-content p {
  color: var(--text-light);
  line-height: 1.8;
}

.news-detail-nav .news-nav-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  position: relative;
}

.news-detail-nav a {
  color: var(--text-dark);
  font-weight: 700;
  text-decoration: none;
}

.news-sidebar {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.news-sidebar-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.news-mini-card {
  background: transparent;
}

.news-mini-thumb img,
.news-thumb-placeholder.small {
  width: 72px;
  height: 72px;
  object-fit: cover;
  background: linear-gradient(135deg, #e7f1ff 0%, #f6e9ff 100%);
}

.news-mini-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.news-mini-title a {
  color: inherit;
}

/* Responsive */
@media (max-width: 991px) {
  .news-hero {
    padding: 40px 0 24px;
  }

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

  .news-detail-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .news-hero-card {
    margin-top: 0.5rem;
  }

  .news-card-media img,
  .news-thumb-placeholder {
    height: 200px;
  }

  .news-card-title {
    font-size: 1rem;
  }

  .news-detail-title {
    font-size: 1.6rem;
  }

  .news-detail-article {
    padding: 1.1rem;
  }

  .news-detail-nav .news-nav-card {
    text-align: left;
  }
}

.support-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 0.25rem;
  border: 1px solid var(--border-color);
  border-radius: 0.25rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.support-pagination .page-numbers:hover {
  color: #ffffff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.support-pagination .page-numbers.current {
  color: #ffffff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.support-pagination .prev,
.support-pagination .next {
  color: var(--text-light);
}

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

  .support-hero-icon {
    font-size: 3rem;
  }

  .support-content-area {
    padding: 1.5rem;
  }

  .support-sidebar {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .support-content-section {
    padding: 40px 0;
  }

  .support-hero-section {
    padding: 40px 0;
  }

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

  .support-content-title {
    font-size: 1.5rem;
  }

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

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

  .support-category-link {
    padding: 0.75rem;
  }

  .support-subcategory {
    padding: 0.5rem 1rem 0.5rem 1.75rem;
  }
}

#taxonomyAccordion [aria-expanded="true"] {
    background: var(--primary-color);
    color: var(--light-bg);
}

footer li {
    list-style: none;
}
footer ul {
    padding: 0;
    margin: 0;
}

span[data-bs-target="#productsCarousel"]:not(.active) {
    display: none;
}

.bg-primary {
  background: linear-gradient(90deg, #4A00FF 0%, #C040FF 100%) !important;
}