/* ========================================
   SERVICES SHOWCASE SECTION
   ======================================== */

/* Top Promo Bar */
.top-promo-bar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 0.7rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  box-shadow: 0 2px 15px rgba(102, 126, 234, 0.3);
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.promo-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1400px;
  width: 100%;
}

.promo-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.promo-item i {
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.2);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  animation: pulse-icon-promo 2s ease-in-out infinite;
}

@keyframes pulse-icon-promo {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.promo-divider {
  width: 2px;
  height: 24px;
  background: rgba(255, 255, 255, 0.3);
}

/* Adjust header and content position */
.site-header {
  top: 50px !important;
}

.main-content {
  padding-top: 130px !important;
}

/* Responsive Top Promo Bar */
@media (max-width: 1024px) {
  .top-promo-bar {
    padding: 0.6rem 1.5rem;
  }
  
  .promo-content {
    gap: 1.5rem;
  }
  
  .promo-item {
    font-size: 0.85rem;
  }
  
  .promo-item i {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .top-promo-bar {
    padding: 0.5rem 1rem;
  }
  
  .promo-content {
    gap: 1rem;
    flex-direction: column;
  }
  
  .promo-item {
    font-size: 0.8rem;
    gap: 0.5rem;
  }
  
  .promo-item i {
    width: 26px;
    height: 26px;
    font-size: 0.85rem;
  }
  
  .promo-divider {
    display: none;
  }
  
  .site-header {
    top: 70px !important;
  }
  
  .main-content {
    padding-top: 150px !important;
  }
}

@media (max-width: 480px) {
  .top-promo-bar {
    padding: 0.4rem 0.8rem;
  }
  
  .promo-item {
    font-size: 0.75rem;
  }
  
  .promo-item span {
    line-height: 1.3;
  }
  
  .site-header {
    top: 85px !important;
  }
  
  .main-content {
    padding-top: 165px !important;
  }
}

/* Header Services Button */
.header-services-menu {
  position: relative;
}

.services-menu-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  animation: pulse-glow-btn 3s ease-in-out infinite;
}

.services-menu-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer-btn 3s infinite;
}

.services-menu-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.5);
}

/* Main Button - Link to Services Section */
.services-main-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1.2rem 0.7rem 1.5rem;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  border-radius: 50px 0 0 50px;
}

[dir="ltr"] .services-main-btn {
  padding: 0.7rem 1.5rem 0.7rem 1.2rem;
  border-radius: 0 50px 50px 0;
}

.services-main-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Dropdown Toggle Button */
.services-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  border-radius: 0 50px 50px 0;
  font-family: inherit;
}

[dir="ltr"] .services-dropdown-toggle {
  border-left: none;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px 0 0 50px;
}

.services-dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.25);
}

.services-dropdown-toggle.active i {
  transform: rotate(180deg);
}

.services-dropdown-toggle i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

/* Mega Menu Dropdown */
.mega-menu-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  max-width: 95vw;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  overflow: hidden;
}

.mega-menu-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

[data-theme="dark"] .mega-menu-dropdown {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mega-menu-container {
  padding: 2rem;
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Mega Menu Header */
.mega-menu-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-border);
}

.mega-menu-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.mega-menu-header p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Mega Menu Grid */
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mega-menu-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: 15px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mega-menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(130, 207, 226, 0.05), rgba(168, 230, 207, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mega-menu-item:hover::before {
  opacity: 1;
}

.mega-menu-item:hover {
  border-color: var(--color-primary);
  transform: translateX(-5px);
  box-shadow: 0 8px 25px rgba(130, 207, 226, 0.2);
}

[dir="ltr"] .mega-menu-item:hover {
  transform: translateX(5px);
}

.mega-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.mega-item-icon i {
  font-size: 1.3rem;
  color: white;
}

.mega-item-content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.mega-item-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.3rem;
}

.mega-item-content p {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.mega-item-arrow {
  font-size: 0.9rem;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.mega-menu-item:hover .mega-item-arrow {
  transform: translateX(-5px);
}

[dir="ltr"] .mega-menu-item:hover .mega-item-arrow {
  transform: translateX(5px);
}

/* Mega Menu Footer */
.mega-menu-footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 2px solid var(--color-border);
}

.mega-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.mega-footer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
  background: linear-gradient(135deg, #5568d3, #6a3d8f);
}

.mega-footer-btn i {
  font-size: 0.85rem;
}

/* Responsive Mega Menu */
@media (max-width: 1024px) {
  .services-main-btn {
    padding: 0.6rem 1rem 0.6rem 1.2rem;
    gap: 0.6rem;
  }
  
  [dir="ltr"] .services-main-btn {
    padding: 0.6rem 1.2rem 0.6rem 1rem;
  }
  
  .services-dropdown-toggle {
    padding: 0.6rem 0.9rem;
  }
  
  .btn-icon {
    width: 32px;
    height: 32px;
  }
  
  .btn-icon i {
    font-size: 0.9rem;
  }
  
  .btn-label {
    font-size: 0.85rem;
  }
  
  .btn-sublabel {
    font-size: 0.65rem;
  }
  
  .mega-menu-dropdown {
    width: 700px;
  }
  
  .mega-menu-container {
    padding: 1.5rem;
  }
  
  .mega-menu-header h3 {
    font-size: 1.3rem;
  }
  
  .mega-menu-grid {
    gap: 0.8rem;
  }
  
  .mega-menu-item {
    padding: 0.8rem;
  }
  
  .mega-item-icon {
    width: 45px;
    height: 45px;
  }
  
  .mega-item-icon i {
    font-size: 1.1rem;
  }
  
  .mega-item-content h4 {
    font-size: 0.9rem;
  }
  
  .mega-item-content p {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .services-main-btn {
    padding: 0.6rem 1rem 0.6rem 1.2rem;
    gap: 0.6rem;
  }
  
  [dir="ltr"] .services-main-btn {
    padding: 0.6rem 1.2rem 0.6rem 1rem;
  }
  
  .services-dropdown-toggle {
    padding: 0.6rem 0.8rem;
  }
  
  .btn-icon {
    width: 32px;
    height: 32px;
  }
  
  .btn-label {
    font-size: 0.85rem;
  }
  
  .btn-sublabel {
    font-size: 0.65rem;
  }
  
  .mega-menu-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    width: 95vw;
    max-width: 95vw;
    max-height: 75vh;
  }
  
  .mega-menu-dropdown.active {
    transform: translateX(-50%) translateY(0);
  }
  
  .mega-menu-container {
    padding: 1.2rem;
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  
  .mega-menu-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
  
  .mega-menu-header h3 {
    font-size: 1.1rem;
  }
  
  .mega-menu-header p {
    font-size: 0.8rem;
  }
  
  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  
  .mega-menu-item {
    padding: 0.7rem;
  }
  
  .mega-item-icon {
    width: 40px;
    height: 40px;
  }
  
  .mega-item-icon i {
    font-size: 1rem;
  }
  
  .mega-item-content h4 {
    font-size: 0.85rem;
  }
  
  .mega-item-content p {
    font-size: 0.7rem;
  }
  
  .mega-footer-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .services-main-btn {
    padding: 0.5rem 0.8rem;
  }
  
  .services-dropdown-toggle {
    padding: 0.5rem 0.7rem;
  }
  
  .btn-text {
    display: none;
  }
  
  .btn-icon {
    width: 28px;
    height: 28px;
  }
  
  .btn-icon i {
    font-size: 0.85rem;
  }
  
  .services-dropdown-toggle i {
    font-size: 0.8rem;
  }
  
  .mega-menu-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    width: 95vw;
    max-width: 95vw;
    max-height: 70vh;
  }
  
  .mega-menu-dropdown.active {
    transform: translateX(-50%) translateY(0);
  }
  
  .mega-menu-container {
    padding: 1rem;
    max-height: 65vh;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  
  .mega-menu-header h3 {
    font-size: 1rem;
  }
  
  .mega-menu-header p {
    font-size: 0.75rem;
  }
  
  .mega-menu-item {
    padding: 0.6rem;
    gap: 0.7rem;
  }
  
  .mega-item-icon {
    width: 36px;
    height: 36px;
  }
  
  .mega-item-icon i {
    font-size: 0.9rem;
  }
  
  .mega-item-content h4 {
    font-size: 0.8rem;
  }
  
  .mega-item-content p {
    font-size: 0.65rem;
    -webkit-line-clamp: 1;
  }
  
  .mega-item-arrow {
    font-size: 0.8rem;
  }
  
  .mega-footer-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .header-software-btn {
    padding: 0.5rem 1rem;
  }
  
  .header-software-btn .btn-text {
    display: none;
  }
  
  .header-software-btn .btn-icon {
    width: 28px;
    height: 28px;
  }
  
  .header-software-btn .btn-badge {
    width: 20px;
    height: 20px;
  }
}

/* Software Download Button */
.header-software-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, #10b981, #34d399);
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  animation: pulse-glow-software 3s ease-in-out infinite;
  margin-left: 1rem;
}

[dir="ltr"] .header-software-btn {
  margin-left: 0;
  margin-right: 1rem;
}

@keyframes pulse-glow-software {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
  }
  50% {
    box-shadow: 0 8px 35px rgba(16, 185, 129, 0.5);
  }
}

.header-software-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer-software 3s infinite;
}

@keyframes shimmer-software {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

.header-software-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
}

.header-software-btn:active {
  transform: translateY(-1px) scale(1.02);
}

.header-software-btn .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.header-software-btn:hover .btn-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  animation: bounce-download 0.6s ease;
}

@keyframes bounce-download {
  0%, 100% {
    transform: scale(1.1) translateY(0);
  }
  50% {
    transform: scale(1.1) translateY(-5px);
  }
}

.header-software-btn .btn-icon i {
  font-size: 1rem;
}

.header-software-btn .btn-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  position: relative;
  z-index: 1;
}

.header-software-btn .btn-label {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
}

.header-software-btn .btn-sublabel {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.9;
  line-height: 1;
}

.header-software-btn .btn-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.header-software-btn:hover .btn-badge {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(360deg) scale(1.1);
}

.header-software-btn .btn-badge i {
  font-size: 0.7rem;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

/* Responsive Software Button */
@media (max-width: 1024px) {
  .header-software-btn {
    padding: 0.6rem 1.2rem;
    gap: 0.6rem;
    margin-left: 0.8rem;
  }
  
  [dir="ltr"] .header-software-btn {
    margin-left: 0;
    margin-right: 0.8rem;
  }
  
  .header-software-btn .btn-icon {
    width: 32px;
    height: 32px;
  }
  
  .header-software-btn .btn-icon i {
    font-size: 0.9rem;
  }
  
  .header-software-btn .btn-label {
    font-size: 0.85rem;
  }
  
  .header-software-btn .btn-sublabel {
    font-size: 0.65rem;
  }
}

@media (max-width: 768px) {
  .header-software-btn {
    padding: 0.6rem 1rem;
    gap: 0.5rem;
    margin-left: 0.6rem;
  }
  
  [dir="ltr"] .header-software-btn {
    margin-left: 0;
    margin-right: 0.6rem;
  }
  
  .header-software-btn .btn-text {
    display: none;
  }
  
  .header-software-btn .btn-icon {
    width: 28px;
    height: 28px;
  }
  
  .header-software-btn .btn-badge {
    width: 20px;
    height: 20px;
  }
}

/* Header Services Button (Old - Removed) */
.header-services-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  animation: pulse-glow-btn 3s ease-in-out infinite;
}

@keyframes pulse-glow-btn {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
  }
  50% {
    box-shadow: 0 8px 35px rgba(102, 126, 234, 0.5);
  }
}

.header-services-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer-btn 3s infinite;
}

@keyframes shimmer-btn {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

.header-services-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.5);
}

.header-services-btn:active {
  transform: translateY(-1px) scale(1.02);
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.header-services-btn:hover .btn-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(15deg) scale(1.1);
}

.btn-icon i {
  font-size: 1rem;
  animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}

.btn-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  position: relative;
  z-index: 1;
}

.btn-label {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
}

.btn-sublabel {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.9;
  line-height: 1;
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.header-services-btn:hover .btn-arrow {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(-5px);
}

[dir="ltr"] .header-services-btn:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-arrow i {
  font-size: 0.75rem;
}

/* Responsive Header Services Button */
@media (max-width: 1024px) {
  .header-services-btn {
    padding: 0.6rem 1.2rem;
    gap: 0.6rem;
  }
  
  .btn-icon {
    width: 32px;
    height: 32px;
  }
  
  .btn-icon i {
    font-size: 0.9rem;
  }
  
  .btn-label {
    font-size: 0.85rem;
  }
  
  .btn-sublabel {
    font-size: 0.65rem;
  }
}

@media (max-width: 768px) {
  .header-services-btn {
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }
  
  .btn-icon {
    width: 28px;
    height: 28px;
  }
  
  .btn-icon i {
    font-size: 0.8rem;
  }
  
  .btn-text {
    display: none;
  }
  
  .btn-arrow {
    width: 20px;
    height: 20px;
  }
  
  .btn-arrow i {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .header-services-btn {
    padding: 0.4rem 0.8rem;
  }
  
  .btn-icon {
    width: 26px;
    height: 26px;
  }
  
  .btn-arrow {
    display: none;
  }
}

.services-showcase {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 50%, var(--color-surface) 100%);
  position: relative;
  overflow: hidden;
}

.services-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(130, 207, 226, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(168, 230, 207, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Services Header */
.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, rgba(130, 207, 226, 0.15), rgba(168, 230, 207, 0.15));
  border: 2px solid rgba(130, 207, 226, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease;
}

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

.services-badge i {
  font-size: 1rem;
}

.services-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--color-accent);
  animation: fadeInUp 0.6s ease 0.2s both;
}

.services-subtitle {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease 0.4s both;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

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

/* Service Card */
.service-card {
  position: relative;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  cursor: pointer;
  animation: fadeInUp 0.6s ease both;
}

/* Stagger animation for cards */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.15s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.25s; }
.service-card:nth-child(5) { animation-delay: 0.3s; }
.service-card:nth-child(6) { animation-delay: 0.35s; }
.service-card:nth-child(7) { animation-delay: 0.4s; }
.service-card:nth-child(8) { animation-delay: 0.45s; }
.service-card:nth-child(9) { animation-delay: 0.5s; }
.service-card:nth-child(10) { animation-delay: 0.55s; }
.service-card:nth-child(11) { animation-delay: 0.6s; }
.service-card:nth-child(12) { animation-delay: 0.65s; }

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(130, 207, 226, 0.1), rgba(168, 230, 207, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--color-primary);
  box-shadow: 0 20px 60px rgba(130, 207, 226, 0.3),
              0 0 0 1px rgba(130, 207, 226, 0.2);
}

[data-theme="dark"] .service-card:hover {
  box-shadow: 0 20px 60px rgba(130, 207, 226, 0.2),
              0 0 0 1px rgba(130, 207, 226, 0.3);
}

/* Service Badge */
.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  color: #764ba2;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}

[dir="ltr"] .service-badge {
  right: auto;
  left: 1rem;
}

[data-theme="dark"] .service-badge {
  background: linear-gradient(135deg, rgba(130, 207, 226, 0.2), rgba(168, 230, 207, 0.2));
  color: var(--color-primary);
  border: 1px solid rgba(130, 207, 226, 0.3);
}

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

/* Service Icon */
.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(130, 207, 226, 0.2), rgba(168, 230, 207, 0.2));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--color-primary), #a8e6cf);
  box-shadow: 0 10px 30px rgba(130, 207, 226, 0.4);
}

.service-icon i {
  font-size: 2rem;
  color: var(--color-primary);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon i {
  color: white;
  transform: scale(1.1);
}

/* Service Title */
.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--color-accent);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: var(--color-primary);
}

/* Service Description */
.service-desc {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Service CTA */
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, var(--color-primary), #a8e6cf);
  color: white;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(130, 207, 226, 0.3);
}

.service-card:hover .service-cta {
  transform: translateX(-5px);
  box-shadow: 0 6px 20px rgba(130, 207, 226, 0.5);
}

[dir="ltr"] .service-card:hover .service-cta {
  transform: translateX(5px);
}

.service-cta i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-cta i {
  transform: translateX(-3px);
}

[dir="ltr"] .service-card:hover .service-cta i {
  transform: translateX(3px);
}

/* Color Variations for Each Service */
.service-card[data-service="mobile"]:hover {
  border-color: #3b82f6;
}

.service-card[data-service="mobile"]:hover .service-icon {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.service-card[data-service="computer"]:hover {
  border-color: #8b5cf6;
}

.service-card[data-service="computer"]:hover .service-icon {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.service-card[data-service="data"]:hover {
  border-color: #10b981;
}

.service-card[data-service="data"]:hover .service-icon {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.service-card[data-service="playstation"]:hover {
  border-color: #ef4444;
}

.service-card[data-service="playstation"]:hover .service-icon {
  background: linear-gradient(135deg, #ef4444, #f87171);
}

.service-card[data-service="tv"]:hover {
  border-color: #f59e0b;
}

.service-card[data-service="tv"]:hover .service-icon {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.service-card[data-service="airpods"]:hover {
  border-color: #6b7280;
}

.service-card[data-service="airpods"]:hover .service-icon {
  background: linear-gradient(135deg, #6b7280, #9ca3af);
}

.service-card[data-service="vape"]:hover {
  border-color: #eab308;
}

.service-card[data-service="vape"]:hover .service-icon {
  background: linear-gradient(135deg, #eab308, #facc15);
}

.service-card[data-service="pos"]:hover {
  border-color: #14b8a6;
}

.service-card[data-service="pos"]:hover .service-icon {
  background: linear-gradient(135deg, #14b8a6, #2dd4bf);
}

.service-card[data-service="web"]:hover {
  border-color: #a855f7;
}

.service-card[data-service="web"]:hover .service-icon {
  background: linear-gradient(135deg, #a855f7, #c084fc);
}

.service-card[data-service="led"]:hover {
  border-color: #f59e0b;
}

.service-card[data-service="led"]:hover .service-icon {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.service-card[data-service="pcb"]:hover {
  border-color: #78716c;
}

.service-card[data-service="pcb"]:hover .service-icon {
  background: linear-gradient(135deg, #78716c, #a8a29e);
}

.service-card[data-service="arduino"]:hover {
  border-color: #06b6d4;
}

.service-card[data-service="arduino"]:hover .service-icon {
  background: linear-gradient(135deg, #06b6d4, #22d3ee);
}

/* Trust Indicators */
.services-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(130, 207, 226, 0.05), rgba(168, 230, 207, 0.05));
  border: 1px solid rgba(130, 207, 226, 0.2);
  border-radius: 20px;
  margin-bottom: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.trust-item i {
  color: var(--color-success);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .services-trust {
    gap: 1rem;
  }
  
  .trust-item {
    font-size: 0.85rem;
  }
}

/* Main CTA */
.services-cta {
  text-align: center;
}

.main-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.main-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

.main-cta-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.5);
}

.main-cta-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.main-cta-btn:hover i {
  transform: translateX(5px);
}

[dir="rtl"] .main-cta-btn:hover i {
  transform: translateX(-5px);
}

@media (max-width: 768px) {
  .main-cta-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .main-cta-btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
    gap: 0.7rem;
  }
  
  .main-cta-btn span {
    font-size: 0.85rem;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .services-showcase {
    padding: 3rem 1.5rem;
  }
  
  .services-header {
    margin-bottom: 2.5rem;
  }
  
  .services-title {
    font-size: 1.5rem;
  }
  
  .services-subtitle {
    font-size: 1rem;
  }
  
  .service-card {
    padding: 1.5rem 1rem;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
  }
  
  .service-icon i {
    font-size: 1.7rem;
  }
  
  .service-title {
    font-size: 1.1rem;
  }
  
  .service-desc {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .service-cta {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .services-showcase {
    padding: 2rem 1rem;
  }
  
  .services-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  
  .services-title {
    font-size: 1.3rem;
  }
  
  .services-subtitle {
    font-size: 0.9rem;
  }
  
  .service-card {
    padding: 1.5rem 1rem;
  }
  
  .service-badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.6rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon i {
    font-size: 1.5rem;
  }
  
  .service-title {
    font-size: 1rem;
  }
  
  .service-desc {
    font-size: 0.85rem;
  }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  animation: fadeInUp 0.6s ease 1s both;
}

[dir="ltr"] .floating-whatsapp {
  left: auto;
  right: 2rem;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn i {
  font-size: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.whatsapp-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.whatsapp-text span:first-child {
  font-size: 0.75rem;
  opacity: 0.9;
}

.whatsapp-text span:last-child {
  font-size: 1rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 1.5rem;
    left: 1.5rem;
  }
  
  [dir="ltr"] .floating-whatsapp {
    left: auto;
    right: 1.5rem;
  }
  
  .whatsapp-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .whatsapp-btn i {
    font-size: 1.3rem;
  }
  
  .whatsapp-text span:first-child {
    font-size: 0.7rem;
  }
  
  .whatsapp-text span:last-child {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .floating-whatsapp {
    bottom: 1rem;
    left: 1rem;
  }
  
  [dir="ltr"] .floating-whatsapp {
    left: auto;
    right: 1rem;
  }
  
  .whatsapp-btn {
    padding: 0.7rem 1rem;
    gap: 0.6rem;
  }
  
  .whatsapp-text {
    display: none;
  }
  
  .whatsapp-btn i {
    font-size: 1.5rem;
  }
}
