/* Category Page Styles - Tablets Index */

/* ============================================
   ENHANCED ALL PRODUCTS PAGE STYLES
   ============================================ */

/* Main Section Background */
.cs_all_products_section {
  position: relative;
  overflow: hidden;
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Scroll Offset for Fixed Header */
.cs_product_category_section[id] {
  scroll-margin-top: 120px;
}

/* Enhanced Header Badge */
.cs_products_badge_container {
  animation: fadeInDown 0.6s ease;
}

.cs_products_badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #1e40af 0%, #22c55e 100%);
  color: #ffffff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(41, 81, 149, 0.25);
  animation: pulse 2s ease-in-out infinite;
}

.cs_products_badge i {
  font-size: 16px;
}

/* Enhanced Titles */
.cs_products_main_title {
  font-size: 42px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease;
}

.cs_products_subtitle {
  font-size: 18px;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeInUp 1s ease;
}

/* Enhanced Stats Grid */
.cs_products_stats_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  animation: fadeInUp 1.2s ease;
}

.cs_stat_card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.cs_stat_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #1e40af 0%, #22c55e 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.cs_stat_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.15);
  border-color: #22c55e;
}

.cs_stat_card:hover::before {
  transform: scaleX(1);
}

.cs_stat_icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.4s ease;
}

.cs_stat_icon i {
  font-size: 28px;
  color: #22c55e;
  transition: transform 0.4s ease;
}

.cs_stat_card:hover .cs_stat_icon {
  background: linear-gradient(135deg, #1e40af 0%, #22c55e 100%);
  transform: scale(1.1) rotate(10deg);
}

.cs_stat_card:hover .cs_stat_icon i {
  color: #ffffff;
  transform: scale(1.1);
}

.cs_stat_content {
  margin-top: 8px;
}

.cs_stat_number {
  font-size: 32px;
  font-weight: 800;
  color: #22c55e;
  line-height: 1;
  margin-bottom: 8px;
}

.cs_stat_label {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

/* Enhanced Category Filter */
.cs_product_category_filter {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  animation: fadeInUp 1.4s ease;
}

.cs_filter_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cs_filter_label {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
}

.cs_filter_buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cs_filter_pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #f8f9fa;
  color: #64748b;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cs_filter_pill i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.cs_filter_pill:hover {
  border-color: #22c55e;
  color: #22c55e;
  background: #dcfce7;
  transform: translateY(-2px);
}

.cs_filter_pill:hover i {
  transform: scale(1.15);
}

.cs_filter_pill.active {
  background: linear-gradient(135deg, #1e40af 0%, #22c55e 100%);
  border-color: #22c55e;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.cs_filter_pill.active i {
  animation: bounce 1s ease infinite;
}

/* Product Category Section */
.cs_product_category_section {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  animation: fadeInUp 1.6s ease;
  position: relative;
  overflow: hidden;
}

.cs_product_category_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #1e40af 0%, #22c55e 100%);
}

/* Enhanced Category Header */
.cs_enhanced_category_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #f1f5f9;
}

.cs_category_header_content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cs_category_icon_box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.cs_category_icon_box i {
  font-size: 32px;
  color: #22c55e;
  transition: transform 0.4s ease;
}

.cs_enhanced_category_header:hover .cs_category_icon_box {
  background: linear-gradient(135deg, #1e40af 0%, #22c55e 100%);
  transform: rotate(5deg) scale(1.05);
}

.cs_enhanced_category_header:hover .cs_category_icon_box i {
  color: #ffffff;
  transform: scale(1.1);
}

.cs_enhanced_category_title {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 6px 0;
  line-height: 1.2;
}

.cs_category_desc {
  font-size: 15px;
  color: #64748b;
  margin: 0;
}

.cs_enhanced_view_all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #1e40af 0%, #22c55e 100%);
  color: #ffffff;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(41, 81, 149, 0.25);
}

.cs_enhanced_view_all i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.cs_enhanced_view_all:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(41, 81, 149, 0.35);
  gap: 14px;
}

.cs_enhanced_view_all:hover i {
  transform: translateX(4px);
}

/* Capsules Section Specific Styles */
.capsules_section::before {
  background: linear-gradient(180deg, #16a34a 0%, #15803d 100%);
}

.capsules_header .cs_category_icon_box {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.capsules_header .cs_category_icon_box i {
  color: #16a34a;
}

.capsules_header:hover .cs_category_icon_box {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.capsules_header:hover .cs_category_icon_box i {
  color: #ffffff;
}

.capsules_link {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.25);
}

.capsules_link:hover {
  box-shadow: 0 6px 24px rgba(22, 163, 74, 0.35);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive Design */
@media (max-width: 991px) {
  .cs_products_stats_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cs_products_main_title {
    font-size: 32px;
  }

  .cs_enhanced_category_title {
    font-size: 24px;
  }

  .cs_product_category_section {
    padding: 30px 20px;
  }
}

@media (max-width: 767px) {
  .cs_products_stats_grid {
    grid-template-columns: 1fr;
  }

  .cs_filter_wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .cs_filter_buttons {
    flex-direction: column;
  }

  .cs_filter_pill {
    justify-content: center;
  }

  .cs_enhanced_category_header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .cs_category_header_content {
    gap: 16px;
  }

  .cs_category_icon_box {
    width: 60px;
    height: 60px;
  }

  .cs_category_icon_box i {
    font-size: 28px;
  }

  .cs_enhanced_view_all {
    width: 100%;
    justify-content: center;
  }

  .cs_products_main_title {
    font-size: 28px;
  }

  .cs_products_subtitle {
    font-size: 16px;
  }
}

/* Category Tabs for All Products Page */
.cs_category_tabs {
  margin-bottom: 40px;
}

.cs_category_tab_btn {
  display: inline-block;
  padding: 12px 30px;
  margin: 0 8px;
  background: #ffffff;
  color: #64748b;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cs_category_tab_btn:hover {
  border-color: #22c55e;
  color: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.cs_category_tab_btn.active {
  background: linear-gradient(135deg, #1e40af 0%, #22c55e 100%);
  border-color: #22c55e;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

/* Category Section Headers */
.cs_category_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 2px solid #e2e8f0;
}

.cs_category_title {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cs_category_title i {
  color: #22c55e;
  font-size: 24px;
}

.cs_category_count {
  font-size: 16px;
  font-weight: 500;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 16px;
  border-radius: 20px;
  margin-left: 8px;
}

.cs_view_all_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #22c55e;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cs_view_all_link:hover {
  color: #1e40af;
  gap: 12px;
}

.cs_view_all_link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.cs_view_all_link:hover i {
  transform: translateX(4px);
}

/* Product Page CTA */
.cs_product_page_cta {
  background: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 100%);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cs_cta_page_title {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.cs_cta_page_text {
  font-size: 16px;
  color: #64748b;
  margin: 0;
}

/* Capsule Category Badge */
.cs_capsule_category {
  color: #16a34a !important;
}

/* Responsive Design for Category Tabs */
@media (max-width: 767px) {
  .cs_category_tabs {
    text-align: center;
  }

  .cs_category_tab_btn {
    display: block;
    margin: 8px auto;
    width: 100%;
    max-width: 300px;
  }

  .cs_category_header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .cs_category_title {
    font-size: 24px;
  }

  .cs_view_all_link {
    font-size: 14px;
  }

  .cs_product_page_cta {
    padding: 30px 20px;
    text-align: center;
  }

  .cs_cta_page_title {
    font-size: 20px;
  }

  .cs_cta_page_text {
    font-size: 14px;
  }
}

/* Premium Hero Section Styles */
.cs_tablets_hero {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 25%, #1e293b 75%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  padding: 50px 0 50px;
  margin-top: 35px;
  min-height: auto !important;
  height: auto !important;
  max-height: none !important;
}

.cs_hero_background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.cs_hero_background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.cs_hero_content_premium {
  position: relative;
  z-index: 3;
}

.cs_hero_badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.cs_hero_title_premium {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cs_hero_subtitle_premium {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cs_hero_features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger card animations */
.cs_tablet_card:nth-child(1) { animation-delay: 0.1s; }
.cs_tablet_card:nth-child(2) { animation-delay: 0.2s; }
.cs_tablet_card:nth-child(3) { animation-delay: 0.3s; }
.cs_tablet_card:nth-child(4) { animation-delay: 0.4s; }

.cs_feature_item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 16px;
}

.cs_feature_item i {
  color: #10b981;
  font-size: 18px;
}

/* Override the problematic hero styles */
.cs_tablets_hero.cs_hero.cs_style_1 {
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  display: block !important;
  align-items: initial !important;
  padding: 60px 0 !important;
}

/* Tablets Section Styles */
.cs_tablets_section {
  background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
  position: relative;
}

.cs_tablet_card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.cs_tablet_card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cs_tablet_image_wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cs_tablet_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cs_tablet_card:hover .cs_tablet_image {
  transform: scale(1.05);
}

.cs_tablet_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cs_tablet_card:hover .cs_tablet_overlay {
  opacity: 1;
}

.cs_view_btn {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cs_view_btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: scale(1.1);
}

.cs_tablet_content {
  padding: 30px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cs_tablet_category {
  color: #667eea;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.cs_tablet_title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.cs_tablet_title a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cs_tablet_title a:hover {
  color: #667eea;
}

.cs_tablet_description {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.cs_tablet_features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.cs_feature_badge {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 25%, #22c55e 75%, #16a34a 100%);
  color: white;
  font-size: 10px;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 20px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.cs_tablet_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
}

.cs_tablet_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.5);
  color: white;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}

.cs_tablet_btn i {
  transition: transform 0.3s ease;
}

.cs_tablet_btn:hover i {
  transform: translateX(5px);
}

.cs_cta_box {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 25%, #22c55e 75%, #16a34a 100%);
  color: white;
  padding: 50px 40px;
  border-radius: 20px;
  margin-top: 60px;
}

.cs_cta_box h3 {
  color: white;
}

.cs_cta_box p {
  color: rgba(255, 255, 255, 0.8);
}

.cs_cta_box .cs_btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  backdrop-filter: blur(10px);
}

.cs_cta_box .cs_btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

/* Stats Section */
.cs_tablets_stats {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 40px 20px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cs_stat_item {
  text-align: center;
}

.cs_stat_number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #132573;
  margin-bottom: 8px;
  line-height: 1;
}

.cs_stat_label {
  font-size: 14px;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Quick Info Section */
.cs_quick_info_section {
  margin: 60px 0;
}

.cs_info_card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.cs_info_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.cs_info_icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 25%, #22c55e 75%, #16a34a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 32px;
}

.cs_info_card h5 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.cs_info_card p {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Enhanced CTA Section */
.cs_cta_icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: white;
  font-size: 32px;
  backdrop-filter: blur(10px);
}

.cs_cta_buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Breadcrumb Styles */
.cs_breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.cs_breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.cs_breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.cs_breadcrumb .breadcrumb-item a:hover {
  color: white;
  text-decoration: underline;
}

.cs_breadcrumb .breadcrumb-item.active {
  color: white;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cs_hero_title_premium {
    font-size: 2.2rem;
  }
  
  .cs_hero_subtitle_premium {
    font-size: 0.9rem;
  }
  
  .cs_hero_features {
    gap: 25px;
  }
  
  .cs_feature_item {
    font-size: 14px;
  }
  
  .cs_tablet_card {
    margin-bottom: 30px;
  }
  
  .cs_tablet_content {
    padding: 25px 20px;
  }
  
  .cs_tablet_title {
    font-size: 20px;
  }
  
  .cs_cta_box {
    padding: 40px 25px;
  }
  
  .cs_cta_buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cs_cta_buttons .cs_btn {
    width: 100%;
    max-width: 300px;
    margin: 0 0 15px 0 !important;
  }
  
  .cs_stat_number {
    font-size: 2rem;
    color: #132573;
  }
  
  .cs_info_card {
    padding: 30px 20px;
  }
  
  .cs_info_icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .cs_tablets_hero {
    padding: 40px 0;
    margin-top: 35px;
  }
  
  .cs_hero_title_premium {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .cs_hero_subtitle_premium {
    font-size: 0.85rem;
    margin-bottom: 25px;
  }
  
  .cs_hero_features {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .cs_hero_badge {
    font-size: 12px;
    padding: 6px 15px;
  }
  
  .cs_tablets_section {
    padding: 60px 0;
  }
  
  .cs_tablet_content {
    padding: 20px 15px;
  }
  
  .cs_tablet_title {
    font-size: 18px;
  }
  
  .cs_tablet_description {
    font-size: 14px;
  }
}

/* Feature Badge Styles */
.cs_feature_badge {
  background: #fff;
  color: #22c55e;
  border: 1px solid #22c55e;
  font-size: 12px;
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Hero Section */
.cs_contact_hero {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 25%, #22c55e 75%, #16a34a 100%);
  position: relative;
  overflow: hidden;
  padding: 50px 0 50px;
  margin-top: 90px;
  min-height: auto !important;
  height: auto !important;
  max-height: none !important;
}

.cs_contact_hero .cs_hero_background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(42, 82, 152, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(30, 60, 114, 0.3) 0%, transparent 50%);
  z-index: 1;
}

/* Contact Info Cards */
.cs_contact_info_card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.cs_contact_info_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cs_contact_info_icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 25%, #22c55e 75%, #16a34a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #ffffff;
  font-size: 24px;
}

.cs_contact_info_content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 10px;
}

.cs_contact_info_content p {
  color: #6c757d;
  margin-bottom: 15px;
}

.cs_contact_link {
  color: #22c55e;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.cs_contact_link:hover {
  color: #1e40af;
}

.cs_contact_address {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Business Hours */
.cs_business_hours {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cs_hours_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}

.cs_hours_item:last-child {
  border-bottom: none;
}

.cs_hours_item.cs_emergency {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 25%, #22c55e 75%, #16a34a 100%);
  color: #ffffff;
  margin: 20px -30px -30px -30px;
  padding: 20px 30px;
  border-radius: 0 0 15px 15px;
}

.cs_hours_day {
  font-weight: 600;
  color: #1e40af;
}

.cs_hours_item.cs_emergency .cs_hours_day {
  color: #ffffff;
}

.cs_hours_time {
  color: #6c757d;
  font-weight: 500;
}

.cs_hours_item.cs_emergency .cs_hours_time {
  color: #ffffff;
}

/* FAQ Section */
.cs_faq_list {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cs_faq_item {
  padding: 20px 0;
  border-bottom: 1px solid #e9ecef;
}

.cs_faq_item:last-child {
  border-bottom: none;
}

.cs_faq_item h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 10px;
}

.cs_faq_item p {
  color: #6c757d;
  margin: 0;
  line-height: 1.6;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
  .cs_contact_hero {
    padding: 40px 0;
    margin-top: 70px;
  }
  
  .cs_contact_hero .cs_hero_title_premium {
    font-size: 2rem;
  }
  
  .cs_contact_hero .cs_hero_subtitle_premium {
    font-size: 1rem;
  }
  
  .cs_contact_info_card {
    padding: 20px;
  }
  
  .cs_contact_info_icon {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
  
  .cs_business_hours,
  .cs_faq_list {
    padding: 20px;
  }
}

