:root {
  --primary-gold: #fbcd0b;
  --primary-gold-light: #ffe066;
  --primary-gold-dark: #d4ad00;
  --primary-gold-darker: #b8960a;
  --navy-dark: #182186;
  --navy-darker: #0d1258;
  --navy-light: #2a38b5;
  --navy-lighter: #3d4dc4;
  --text-dark: #1a1a2e;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --bg-cream: #fffbf0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 10px 40px rgba(251, 205, 11, 0.3);
  --shadow-navy: 0 10px 40px rgba(24, 33, 134, 0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-elastic: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --font-cairo: 'Cairo', sans-serif;
}

/* ============================================
   HERO SECTION ENHANCEMENTS - OPTIMIZED FOR ARABIC
   ============================================ */

.hero-section-enhanced {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, #0d1a4d 100%);
    overflow: hidden;
    padding: 80px 20px;
}

.hero-section-enhanced::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('~/assets/images/main-slider/slide8.jpg') center/cover no-repeat;
    opacity: 0.3;
}

.hero-section-enhanced::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(24, 33, 134, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content-wrapper,
.hero-content-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-bg-mesh {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(251, 205, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(24, 33, 134, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(251, 205, 11, 0.08) 0%, transparent 40%);
    z-index: 0;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: orbFloat 8s ease-in-out infinite;
    z-index: 0;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(251, 205, 11, 0.3), transparent);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(24, 33, 134, 0.4), transparent);
    bottom: -50px;
    left: -50px;
    animation-delay: -2s;
}

.hero-orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(251, 205, 11, 0.2), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -4s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.hero-badge .badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge .badge-text {
    font-size: 14px;
    font-weight: 700;
}

.hero-badge .badge-pulse {
    position: absolute;
    right: 12px;
    width: 8px;
    height: 8px;
    background: var(--navy-dark);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title .title-line {
    display: block;
}

.hero-title .highlight-text {
    color: var(--primary-gold);
    position: relative;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-stat .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
}

.hero-stat .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator .scroll-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-scroll-indicator .scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.hero-scroll-indicator:hover .scroll-arrow {
    border-color: var(--primary-gold);
    transform: translateY(5px);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.hero-btn-primary .btn-content,
.hero-btn-secondary .btn-content {
    display: inline-flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 8px;
}

.hero-btn-primary .btn-icon,
.hero-btn-secondary .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-btn-primary .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.hero-btn-primary:hover .btn-shine {
    left: 100%;
}

.hero-btn-secondary .btn-border {
    position: absolute;
    inset: 0;
    border-radius: 50px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(251, 205, 11, 0.5)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-smooth);
}

.hero-btn-secondary:hover .btn-border {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 24px;
    }
    
    .hero-stat .stat-number {
        font-size: 24px;
    }
    
    .hero-stat .stat-label {
        font-size: 12px;
    }
    
    .stat-divider {
        height: 30px;
    }
    
    .hero-scroll-indicator {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 16px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}

.hero-badge {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
    animation: pulse-glow 2s infinite;
    margin-bottom: 24px;
}

.hero-badge::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--navy-dark);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(251, 205, 11, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(251, 205, 11, 0.6);
    }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
    direction: rtl;
    text-align: center;
}

.hero-title span {
    color: var(--primary-gold);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.8;
    direction: rtl;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 16px !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 32px;
    padding: 0;
}

.hero-cta-wrapper a {
    margin: 0 !important;
    flex-shrink: 0;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%) !important;
    color: var(--text-dark) !important;
    padding: 16px 32px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    border: none !important;
    cursor: pointer !important;
    transition: var(--transition-smooth) !important;
    box-shadow: var(--shadow-gold) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    flex-direction: row-reverse !important;
    gap: 8px !important;
    white-space: nowrap !important;
}

.hero-btn-primary i {
    margin-right: 8px;
}

.hero-btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(251, 205, 11, 0.5) !important;
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    color: #fff !important;
    padding: 16px 32px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    cursor: pointer !important;
    transition: var(--transition-smooth) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    flex-direction: row-reverse !important;
    gap: 8px !important;
    white-space: nowrap !important;
}

.hero-btn-secondary i {
    margin-right: 8px;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-3px) !important;
}

@media (max-width: 768px) {
    .hero-section-enhanced {
        padding: 100px 16px 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-cta-wrapper {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 14px 24px !important;
        font-size: 14px !important;
    }
}

.hero-btn-primary {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
  color: var(--text-dark) !important;
  padding: 16px 36px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(251, 205, 11, 0.4);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff !important;
  padding: 16px 36px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-4px);
}

/* ============================================
   SECTION HEADERS ENHANCEMENT
   ============================================ */

.section-head-enhanced {
  text-align: center;
  margin-bottom: 50px;
}

.section-head-enhanced .section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(251, 205, 11, 0.1) 0%, rgba(251, 205, 11, 0.2) 100%);
  color: var(--primary-gold-dark);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-head-enhanced h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-head-enhanced h2 span {
  color: var(--primary-gold);
  position: relative;
}

.section-head-enhanced h2 span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
  opacity: 0.3;
  border-radius: 4px;
  z-index: -1;
}

.section-head-enhanced p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   CATEGORY CARDS ENHANCEMENT
   ============================================ */

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.category-card .card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.category-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.category-card:hover .card-image img {
  transform: scale(1.1);
}

.category-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(24, 33, 134, 0.9) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.category-card:hover .card-overlay {
  opacity: 1;
}

.category-card .card-content {
  padding: 24px;
  text-align: center;
}

.category-card .card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  transition: var(--transition-fast);
}

.category-card:hover .card-title {
  color: var(--navy-dark);
}

.category-card .card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
  color: var(--text-dark);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.category-card .card-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

.category-card .card-btn svg,
.category-card .card-btn i {
  transition: var(--transition-fast);
}

.category-card:hover .card-btn svg,
.category-card:hover .card-btn i {
  transform: translateX(-4px);
}

/* ============================================
   SUPPORT SECTION — ENHANCED
   ============================================ */

.support-section {
  position: relative;
  background: linear-gradient(150deg, var(--navy-darker) 0%, var(--navy-dark) 55%, #1e2d98 100%);
  padding: 96px 0;
  overflow: hidden;
  direction: rtl;
  text-align: right;
}

/* ── Background decorative orbs ── */
.support-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.support-orb-1 {
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(251, 205, 11, 0.18) 0%, transparent 68%);
  animation: supportFloat 9s ease-in-out infinite;
}

.support-orb-2 {
  bottom: -100px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(61, 77, 196, 0.35) 0%, transparent 70%);
  animation: supportFloat 12s ease-in-out infinite reverse;
}

/* Subtle grid overlay */
.support-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

@keyframes supportFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-24px) scale(1.04); }
}

/* ── Section label chip ── */
.support-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 205, 11, 0.15);
  border: 1px solid rgba(251, 205, 11, 0.3);
  color: var(--primary-gold);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.support-label-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-gold);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

/* ── Main heading ── */
.support-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 18px;
}

.support-title-highlight {
  display: block;
  color: var(--primary-gold);
}

/* ── Description ── */
.support-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  max-width: 480px;
}

/* ── Trust stats row ── */
.support-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  margin-bottom: 36px;
  backdrop-filter: blur(8px);
}

.support-stat-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.support-stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-gold);
  line-height: 1;
  direction: ltr;
  unicode-bidi: embed;
}

.support-stat-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.support-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 4px;
  flex-shrink: 0;
}

/* ── Contact channel cards ── */
.support-channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.support-channel-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.support-channel-card:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateX(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.support-channel-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.support-channel-phone .support-channel-icon {
  background: rgba(251, 205, 11, 0.2);
  color: var(--primary-gold);
}

.support-channel-chat .support-channel-icon {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.support-channel-whatsapp .support-channel-icon {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.support-channel-card:hover .support-channel-icon {
  transform: scale(1.1) rotate(-5deg);
}

.support-channel-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.support-channel-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.support-channel-value {
  font-size: 15px;
  color: #fff;
  font-weight: 700;
}

.support-channel-arrow {
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
  transition: var(--transition-fast);
}

.support-channel-card:hover .support-channel-arrow {
  color: var(--primary-gold);
  transform: translateX(-4px);
}

/* ── Right visual card ── */
.support-visual-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 52px 44px;
  text-align: center;
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.support-visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.support-visual-card:hover {
  border-color: rgba(251, 205, 11, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(-6px);
}

/* Icon with pulse rings */
.support-visual-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.support-visual-icon {
  position: relative;
  z-index: 2;
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--text-dark);
  box-shadow: 0 8px 32px rgba(251, 205, 11, 0.45);
  animation: headsetBob 3s ease-in-out infinite;
}

@keyframes headsetBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

.support-pulse-ring {
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(251, 205, 11, 0.35);
  border-radius: 50%;
  animation: pulseRing 2.4s ease-out infinite;
}

.support-pulse-ring--delay {
  inset: -24px;
  border-color: rgba(251, 205, 11, 0.18);
  animation-delay: 0.8s;
}

@keyframes pulseRing {
  0%   { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Card text */
.support-visual-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.support-visual-body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

/* Feature list */
.support-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
  margin-bottom: 32px;
}

.support-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.support-feature-check {
  width: 24px;
  height: 24px;
  background: rgba(251, 205, 11, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: 11px;
  flex-shrink: 0;
}

/* Floating badge */
.support-floating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 205, 11, 0.12);
  border: 1px solid rgba(251, 205, 11, 0.28);
  color: var(--primary-gold);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .support-section { padding: 72px 0; }
  .support-visual-card { padding: 40px 28px; margin-top: 40px; }
  .support-stats-row { padding: 16px 18px; }
  .support-stat-num { font-size: 18px; }
}

@media (max-width: 767px) {
  .support-section { padding: 56px 0; }
  .support-title { font-size: 28px; }
  .support-stats-row {
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px;
  }
  .support-stat-item { min-width: 80px; }
  .support-stat-divider { display: none; }
  .support-visual-card { padding: 32px 20px; }
  .support-visual-icon { width: 72px; height: 72px; font-size: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .support-bg-orb,
  .support-label-dot,
  .support-visual-icon,
  .support-pulse-ring {
    animation: none;
  }
  .support-channel-card:hover,
  .support-visual-card:hover {
    transform: none;
  }
}

/* ============================================
   SERVICES SECTION ENHANCEMENT
   ============================================ */

.service-card-enhanced {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.service-card-enhanced:hover::before {
  transform: scaleX(1);
}

.service-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.service-card-enhanced .service-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 72px;
  font-weight: 900;
  color: rgba(251, 205, 11, 0.1);
  line-height: 1;
  transition: var(--transition-smooth);
}

.service-card-enhanced:hover .service-number {
  color: rgba(251, 205, 11, 0.2);
  transform: scale(1.1);
}

.service-card-enhanced .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(251, 205, 11, 0.1) 0%, rgba(251, 205, 11, 0.2) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.service-card-enhanced:hover .service-icon {
  background: var(--primary-gold);
  transform: rotateY(180deg);
}

.service-card-enhanced .service-icon i {
  font-size: 36px;
  color: var(--primary-gold-dark);
  transition: var(--transition-smooth);
}

.service-card-enhanced:hover .service-icon i {
  color: var(--text-dark);
}

.service-card-enhanced .service-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card-enhanced .service-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   STATS SECTION ENHANCEMENT
   ============================================ */

.stats-section-enhanced {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  overflow: hidden;
}

.stats-section-enhanced::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-card {
  text-align: center;
  padding: 30px;
  position: relative;
  z-index: 1;
}

.stats-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  background: rgba(251, 205, 11, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.stats-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px dashed var(--primary-gold);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.stats-icon i {
  font-size: 42px;
  color: var(--primary-gold);
}

.stats-number {
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stats-label {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.stats-divider {
  width: 40px;
  height: 4px;
  background: var(--primary-gold);
  margin: 16px auto;
  border-radius: 2px;
}

/* ============================================
   WORKER CARDS ENHANCEMENT
   ============================================ */

.worker-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.worker-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.worker-card .worker-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.worker-card .worker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.worker-card:hover .worker-image img {
  transform: scale(1.1);
}

.worker-card .worker-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(24, 33, 134, 0.95) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.worker-card:hover .worker-overlay {
  opacity: 1;
}

.worker-card .worker-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-gold);
  color: var(--text-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.worker-card .worker-badge::before {
  content: '⭐';
}

.worker-card .worker-content {
  padding: 24px;
  text-align: center;
}

.worker-card .worker-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.worker-card .worker-specialty {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.worker-card .worker-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.worker-card .worker-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-fast);
  text-decoration: none;
}

.worker-card .worker-social a:hover {
  background: var(--primary-gold);
  color: var(--text-dark);
  transform: translateY(-4px);
}

/* ============================================
   ENHANCED WORKER CARDS (TEAM SECTION)
   ============================================ */

.worker-card-enhanced {
  position: relative;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.05),
    0 10px 20px rgba(0, 0, 0, 0.08),
    0 20px 40px rgba(24, 33, 134, 0.06);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.worker-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-gold-light) 50%, var(--primary-gold) 100%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.worker-card-enhanced:hover::before {
  opacity: 1;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}

.worker-card-enhanced:hover {
  transform: translateY(-16px) scale(1.02);
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.08),
    0 20px 40px rgba(0, 0, 0, 0.12),
    0 40px 60px rgba(24, 33, 134, 0.1),
    0 0 0 1px rgba(251, 205, 11, 0.2);
}

.worker-card-enhanced .worker-image {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.worker-card-enhanced .worker-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(24, 33, 134, 0.9) 0%, rgba(24, 33, 134, 0.4) 40%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.worker-card-enhanced:hover .worker-image::after {
  opacity: 1;
}

.worker-card-enhanced .worker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.worker-card-enhanced:hover .worker-image img {
  transform: scale(1.12);
}

.worker-card-enhanced .worker-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 100px;
  z-index: 2;
}

.worker-card-enhanced:hover .worker-overlay {
  opacity: 1;
}

.worker-card-enhanced .worker-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.worker-card-enhanced .worker-social li {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.worker-card-enhanced:hover .worker-social li:nth-child(1) {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.1s;
}

.worker-card-enhanced:hover .worker-social li:nth-child(2) {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.2s;
}

.worker-card-enhanced:hover .worker-social li:nth-child(3) {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.3s;
}

.worker-card-enhanced .worker-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.worker-card-enhanced .worker-social a:hover {
  background: var(--primary-gold);
  color: var(--text-dark);
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 8px 20px rgba(251, 205, 11, 0.4);
}

.worker-card-enhanced .worker-info {
  padding: 28px 24px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.worker-card-enhanced .worker-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
  border-radius: 3px;
}

.worker-card-enhanced .worker-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.worker-card-enhanced:hover .worker-name {
  color: var(--navy-dark);
}

.worker-card-enhanced .worker-specialty {
  display: inline-block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(251, 205, 11, 0.1) 0%, rgba(251, 205, 11, 0.05) 100%);
  border-radius: 20px;
  border: 1px solid rgba(251, 205, 11, 0.2);
  transition: all 0.3s ease;
}

.worker-card-enhanced:hover .worker-specialty {
  background: linear-gradient(135deg, rgba(251, 205, 11, 0.2) 0%, rgba(251, 205, 11, 0.1) 100%);
  border-color: rgba(251, 205, 11, 0.4);
}

.worker-card-enhanced .worker-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.worker-card-enhanced .worker-rating i {
  font-size: 14px;
  color: var(--primary-gold);
  transition: transform 0.3s ease;
}

.worker-card-enhanced:hover .worker-rating i {
  animation: starPulse 0.6s ease forwards;
}

.worker-card-enhanced:hover .worker-rating i:nth-child(1) { animation-delay: 0.1s; }
.worker-card-enhanced:hover .worker-rating i:nth-child(2) { animation-delay: 0.15s; }
.worker-card-enhanced:hover .worker-rating i:nth-child(3) { animation-delay: 0.2s; }
.worker-card-enhanced:hover .worker-rating i:nth-child(4) { animation-delay: 0.25s; }
.worker-card-enhanced:hover .worker-rating i:nth-child(5) { animation-delay: 0.3s; }

@keyframes starPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.worker-card-enhanced .worker-rating .rating-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 8px;
}

.worker-card-enhanced .worker-verified {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  z-index: 3;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.worker-card-enhanced:hover .worker-verified {
  opacity: 1;
  transform: scale(1);
}

.worker-card-enhanced .worker-badge-top {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(251, 205, 11, 0.4);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
}

.worker-card-enhanced .worker-badge-top i {
  font-size: 12px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-darker) 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 25px rgba(24, 33, 134, 0.3);
  position: relative;
  overflow: hidden;
}

.view-all-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.view-all-btn:hover::before {
  left: 100%;
}

.view-all-btn:hover {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-dark) 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(24, 33, 134, 0.4);
}

.view-all-btn i {
  transition: transform 0.3s ease;
}

/* Team Section Background Enhancement */
.team-section-enhanced {
  position: relative;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 50%, #fffbf0 100%);
  overflow: hidden;
}

.team-section-enhanced::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 205, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.team-section-enhanced::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(24, 33, 134, 0.05) 1%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .worker-card-enhanced .worker-image {
    height: 280px;
  }
}

@media (max-width: 767px) {
  .worker-card-enhanced .worker-image {
    height: 260px;
  }
  
  .worker-card-enhanced .worker-info {
    padding: 15px 16px;
  }
  
  .worker-card-enhanced .worker-name {
    font-size: 18px;
  }
  
  .view-all-btn {
    padding: 14px 24px;
    font-size: 14px;
  }
}

/* ============================================
   TESTIMONIALS ENHANCEMENT
   ============================================ */

.testimonial-card-enhanced {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.testimonial-card-enhanced:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
}

.testimonial-quote {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  position: relative;
  padding: 0 30px;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 0;
  font-size: 80px;
  color: var(--primary-gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-gold);
  box-shadow: var(--shadow-gold);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.testimonial-info span {
  font-size: 14px;
  color: var(--primary-gold);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.testimonial-stars i {
  color: var(--primary-gold);
  font-size: 14px;
}

/* ============================================
   PRODUCT CARDS ENHANCEMENT
   ============================================ */

.product-card-enhanced {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.product-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.product-card-enhanced .product-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.product-card-enhanced .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card-enhanced:hover .product-image img {
  transform: scale(1.1);
}

.product-card-enhanced .product-date-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-gold);
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.product-card-enhanced .product-date-badge strong {
  display: block;
  font-size: 20px;
  line-height: 1;
}

.product-card-enhanced .product-date-badge span {
  font-size: 11px;
  font-weight: 600;
}

.product-card-enhanced .product-content {
  padding: 24px;
}

.product-card-enhanced .product-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.product-card-enhanced .product-meta a {
  color: var(--primary-gold-dark);
  text-decoration: none;
}

.product-card-enhanced .product-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.4;
}

.product-card-enhanced .product-title a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

.product-card-enhanced .product-title a:hover {
  color: var(--primary-gold-dark);
}

.product-card-enhanced .product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card-enhanced .product-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-gold);
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.product-card-enhanced .product-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

.product-card-enhanced .product-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-gold-dark);
}

/* ============================================
   CLIENT LOGOS ENHANCEMENT
   ============================================ */

.client-logo-enhanced {
  padding: 24px;
  transition: var(--transition-smooth);
}

.client-logo-enhanced img {
  filter: grayscale(100%);
  opacity: 0.5;
  transition: var(--transition-smooth);
}

.client-logo-enhanced:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.scale-up {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-up.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 992px) {
  .section-head-enhanced h2 {
    font-size: 32px;
  }
  
  .cta-title {
    font-size: 36px;
  }
  
  .stats-number {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .section-head-enhanced h2 {
    font-size: 28px;
  }
  
  .section-head-enhanced p {
    font-size: 15px;
  }
  
  .cta-title {
    font-size: 28px;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .stats-number {
    font-size: 36px;
  }
  
  .stats-icon {
    width: 80px;
    height: 80px;
  }
  
  .stats-icon i {
    font-size: 32px;
  }
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */

.floating-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.floating-shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(251, 205, 11, 0.1) 0%, transparent 100%);
  top: 10%;
  left: -150px;
  animation: floatShape 12s ease-in-out infinite;
}

.floating-shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(24, 33, 134, 0.1) 0%, transparent 100%);
  bottom: 20%;
  right: -100px;
  animation: floatShape 15s ease-in-out infinite reverse;
}

@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -30px) rotate(5deg);
  }
  50% {
    transform: translate(0, -50px) rotate(0deg);
  }
  75% {
    transform: translate(-20px, -30px) rotate(-5deg);
  }
}

/* ============================================
   GRADIENT TEXT
   ============================================ */

.gradient-text {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--navy-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   GLASS MORPHISM EFFECT
   ============================================ */

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
}

/* ============================================
   HOVER LIFT EFFECT
   ============================================ */

.hover-lift {
  transition: var(--transition-smooth);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   SHIMMER LOADING EFFECT
   ============================================ */

.shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================
   PULSE ANIMATION
   ============================================ */

.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

/* ============================================
   BACK TO TOP BUTTON ENHANCEMENT
   ============================================ */

.scroltop {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%) !important;
  border-radius: 50% !important;
  box-shadow: var(--shadow-gold) !important;
  transition: var(--transition-smooth) !important;
}

.scroltop:hover {
  transform: translateY(-4px) scale(1.1) !important;
  box-shadow: 0 15px 40px rgba(251, 205, 11, 0.4) !important;
}
