﻿@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --crimson: #C62828;
  --crimson-light: #e53935;
  --crimson-dark: #8e0000;
  --dark-navy: #1A1A2E;
  --dark-navy-light: #252540;
  --charcoal: #2D2D3F;
  --ivory: #F7F4EF;
  --amber: #F59E0B;
  --mist: #E8EBF0;

  --primary: var(--crimson);
  --primary-light: var(--crimson-light);
  --primary-dark: var(--crimson-dark);
  --surface: #ffffff;
  --bg-primary: var(--ivory);
  --bg-secondary: #ffffff;
  --text-primary: #1A1A2E;
  --text-secondary: #4a4a5a;
  --text-muted: #6b6b7b;
  --border: var(--mist);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 8px 30px rgba(26, 26, 46, 0.10);
  --shadow-lg: 0 20px 60px rgba(26, 26, 46, 0.15);
  --shadow-glow: 0 0 60px rgba(198, 40, 40, 0.25);
}

[dir="rtl"] {
  font-family: "Cairo", sans-serif;
}

[dir="ltr"] {
  font-family: "Cairo", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAVBAR ===== */
.navbar-premium {
  background: #ffffff !important;
  border-bottom: 1px solid var(--mist);
  padding: 0.8rem 0;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar-premium .navbar-brand img {
  height: 42px;
  transition: transform 0.3s ease;
}

.navbar-premium .navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-premium .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-premium .nav-link:hover,
.navbar-premium .nav-link.active {
  color: var(--crimson) !important;
}

.navbar-premium .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--crimson);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.navbar-premium .nav-link:hover::after {
  width: 60%;
}

.btn-wow {
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(198, 40, 40, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Cairo", sans-serif;
  border-radius: 50px;
}

.btn-wow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(198, 40, 40, 0.4);
  color: #fff;
}

.btn-outline-premium {
  border: 2px solid var(--crimson) !important;
  color: var(--crimson) !important;
  background: transparent;
  padding: 8px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: "Cairo", sans-serif;
  border-radius: 50px;
}

.btn-outline-premium:hover {
  background: var(--crimson) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: "Cairo", sans-serif;
}

.btn-store:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--crimson);
  color: #fff;
}

.btn-store img {
  height: 32px;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(135deg, #fdf2f2 0%, #fef9f3 50%, #fdf2f2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 0px;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: #f5c6c6;
  top: -120px;
  left: -120px;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: #fde8c8;
  bottom: -100px;
  right: -100px;
}

.hero-blob-3 {
  width: 300px;
  height: 300px;
  background: #f4d0e8;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

.hero-section h1 {
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.25;
  color: var(--dark-navy);
  margin-bottom: 1.2rem;
}

.hero-section .hero-subtitle {
  color: var(--text-secondary);
  font-size: 2rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.hero-section .hero-description {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.8rem;
  max-width: 520px;
}

.hero-phone-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phone {
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 30px 50px rgba(26, 26, 46, 0.18));
    animation: floatPhone 5s ease-in-out infinite;
    width: 600px;
    height: 600px;
}

.hero-phone-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(198, 40, 40, 0.12) 0%, transparent 70%);
  border-radius: 131% 70% 101% 68%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Modern icon text store buttons */
.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--dark-navy);
  padding: 14px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--mist);
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(26, 26, 46, 0.06);
  font-family: "Cairo", sans-serif;
}

.btn-store i {
  font-size: 1.25rem;
  color: var(--dark-navy);
  transition: color 0.3s ease;
}

.btn-store:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(26, 26, 46, 0.12);
  border-color: var(--crimson-light);
  color: var(--crimson);
}

.btn-store:hover i {
  color: var(--crimson);
}

.btn-store img {
  display: none;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: linear-gradient(135deg, #fdf2f2 0%, #fef5f5 100%);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.stat-item {
  text-align: center;
  color: var(--dark-navy);
  position: relative;
  z-index: 2;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.3rem;
  display: block;
  color: var(--crimson);
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #fdf2f2 0%, #fff5f5 100%);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--dark-navy);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid var(--border);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--crimson);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  border-radius: 0 0 4px 4px;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(198, 40, 40, 0.06);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: rgba(198, 40, 40, 0.12);
  transform: scale(1.08);
}

.service-icon img {
  height: 40px;
  width: auto;
}

.service-card h4 {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--dark-navy);
  margin-bottom: 0.8rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #fef9f3 0%, #fdf2f2 100%);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(198, 40, 40, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.features-image-wrapper {
  position: relative;
}

.features-image-wrapper img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.feature-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: badgeFloat 3s ease-in-out infinite;
}

.feature-badge-1 {
  top: 15%;
  right: -10px;
  animation-delay: 0s;
}

.feature-badge-2 {
  bottom: 20%;
  left: -10px;
  animation-delay: 1s;
}

.feature-badge-3 {
  top: 50%;
  right: -5px;
  animation-delay: 2s;
}

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

.feature-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(198, 40, 40, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-badge-icon img {
  height: 22px;
  width: auto;
}

.feature-badge span {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--dark-navy);
  white-space: nowrap;
}

.features-content h2 {
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--dark-navy);
  margin-bottom: 1rem;
}

.features-content .features-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item:hover {
  padding-left: 8px;
}

.feature-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  background: rgba(198, 40, 40, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-item-icon {
  background: rgba(198, 40, 40, 0.15);
}

.feature-item-icon img {
  height: 24px;
  width: auto;
}

.feature-item span {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}

/* ===== APP SLIDER SECTION ===== */
.app-slider-section {
  padding: 6rem 0;
  background: var(--dark-navy);
  position: relative;
  overflow: hidden;
}

.app-slider-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(198, 40, 40, 0.08) 0%, transparent 60%);
  border-radius: 50%;
}

.app-slider-section .section-header h2 {
  color: #fff;
}

.app-slider-section .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.slider-perspective {
  perspective: 1200px;
  perspective-origin: center center;
  padding: 40px 0;
  position: relative;
  z-index: 2;
}

.phone-slide {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.phone-slide.active {
  transform: rotateY(0deg) translateZ(0px) scale(1);
  z-index: 10;
}

.phone-slide.prev {
  transform: rotateY(15deg) translateZ(-40px) scale(0.85);
  opacity: 0.6;
  z-index: 5;
}

.phone-slide.next {
  transform: rotateY(-15deg) translateZ(-40px) scale(0.85);
  opacity: 0.6;
  z-index: 5;
}

.phone-slide.far {
  transform: rotateY(25deg) translateZ(-80px) scale(0.7);
  opacity: 0.3;
  z-index: 1;
}

.phone-mockup {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: #000;
}

.phone-mockup img {
  display: block;
  width: 100%;
  border-radius: 25px;
}

.owl-item.active .phone-slide {
  transform: rotateY(0deg) translateZ(0px) scale(1);
}

.owl-item.active .phone-mockup {
  box-shadow: 0 30px 80px rgba(198, 40, 40, 0.2), 0 25px 60px rgba(0, 0, 0, 0.5);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--crimson);
  border-color: var(--crimson);
  transform: scale(1.1);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #fdf2f2 0%, #fef5f5 100%);
  position: relative;
}

.cta-card {
  background: linear-gradient(135deg, #fff 0%, #fdf2f2 100%);
  border-radius: var(--radius-xl);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(198, 40, 40, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-card h2 {
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--dark-navy);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.cta-card p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #fef9f3 0%, #fdf2f2 100%);
  position: relative;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 5rem;
  color: rgba(198, 40, 40, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  color: var(--amber);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  display: flex;
  gap: 3px;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--mist);
}

.testimonial-author-info h6 {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--dark-navy);
  margin-bottom: 2px;
}

.testimonial-author-info small {
  color: var(--crimson);
  font-weight: 600;
  font-size: 0.8rem;
}

/* ===== BRANDS SECTION ===== */
.brands-section {
  padding: 4rem 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brands-section .section-header {
  margin-bottom: 3rem;
}

.brands-section .section-header h2 {
  color: var(--dark-navy);
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.brand-item img {
  max-height: 55px;
  max-width: 100%;
  filter: grayscale(100%) opacity(0.4);
  transition: all 0.4s ease;
  object-fit: contain;
}

.brand-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

/* ===== FOOTER ===== */
.footer-premium {
  background: var(--dark-navy);
  padding: 1rem 0;
  position: relative;
  overflow: hidden;
}

.footer-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--amber), var(--crimson));
}

.footer-social-icons {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
}

.footer-social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-social-icons a:hover {
  background: var(--crimson);
  border-color: var(--crimson);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(198, 40, 40, 0.4);
}

.footer-copyright {
  text-align: left;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-copyright strong {
  color: rgba(255, 255, 255, 0.8);
}

[dir="rtl"] .footer-copyright {
  text-align: right;
}

[dir="rtl"] .footer-social-icons {
  justify-content: flex-end;
}

/* ===== UTILITY CLASSES ===== */
.text-crimson {
  color: var(--crimson) !important;
}

.bg-crimson {
  background-color: var(--crimson) !important;
}

.text-navy {
  color: var(--dark-navy) !important;
}

.text-amber {
  color: var(--amber) !important;
}

.glass-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-slide-in {
  animation: slideInRight 0.6s ease forwards;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding: 120px 0 80px;
    text-align: center;
  }

  .hero-section .hero-description {
    margin: 0 auto 2rem;
  }

  .hero-section .d-flex {
    justify-content: center;
  }

  .hero-phone-wrapper {
    margin-top: 3rem;
  }

  .hero-phone {
    max-width: 220px;
  }

  .features-image-wrapper {
    margin-bottom: 3rem;
  }

  .feature-badge-1 { right: 0; }
  .feature-badge-2 { left: 0; }
  .feature-badge-3 { right: 0; }

  .cta-card {
    padding: 2.5rem 1.5rem;
  }

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

  .footer-social-icons {
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .footer-copyright {
    text-align: center !important;
  }
}

@media (max-width: 767.98px) {
  .service-card {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }

  .testimonial-card {
    padding: 1.8rem;
  }

  .features-content .feature-item {
    padding: 10px 0;
  }

  .phone-slide {
    transform: scale(0.9);
  }

  .owl-item.active .phone-slide {
    transform: scale(1);
  }
}

@media (max-width: 575.98px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }

  .hero-phone {
    max-width: 180px;
  }

  .stat-item {
    margin-bottom: 1.5rem;
  }

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

  .section-header {
    margin-bottom: 3rem;
  }

  .slider-btn {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}

/* ===== OWL CAROUSEL OVERRIDES ===== */
.owl-theme .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.3) !important;
  width: 10px;
  height: 10px;
  margin: 5px 4px;
  transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--crimson) !important;
  transform: scale(1.2);
}

.owl-theme .owl-nav [class*='owl-'] {
  color: #fff !important;
  font-size: 1.2rem !important;
  padding: 8px 14px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 50% !important;
  transition: all 0.3s ease;
}

.owl-theme .owl-nav [class*='owl-']:hover {
  background: var(--crimson) !important;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--crimson);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--crimson-dark);
}

/* ===== PREMIUM CARD (reusable) ===== */
.card {
  background: var(--surface) !important;
  border: 1px solid var(--gray-200, var(--border)) !important;
  border-radius: var(--radius-xl) !important;
  box-shadow: var(--shadow-md) !important;
  color: var(--text-primary) !important;
  transition: all var(--transition-normal, 0.3s ease);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg) !important;
}

.card-header {
  border-bottom: 1px solid var(--gray-200, var(--border)) !important;
  background: transparent !important;
}

/* Auth styles preserved */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--surface) 100%);
}

.auth-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2xl);
  width: 100%;
  max-width: 420px;
  transition: all var(--transition-normal);
}

.auth-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.auth-logo {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.auth-logo img {
  height: 48px;
  transition: transform var(--transition-fast);
}

.auth-logo:hover img {
  transform: scale(1.05);
}

.auth-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  text-align: center;
}

.auth-subtitle {
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.form-group-premium {
  margin-bottom: var(--space-lg);
}

.form-label-premium {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
}

.form-input-premium {
  width: 100%;
  height: 44px;
  padding: 0 var(--space-md);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  background: var(--gray-50);
  color: var(--text-primary);
  font-size: 14px;
  transition: all var(--transition-fast);
}

.form-input-premium:focus {
  outline: none;
  border-color: var(--primary-500);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.form-input-premium.error {
  border-color: var(--error);
}

.form-error-premium {
  color: var(--error);
  font-size: 12px;
  margin-top: var(--space-xs);
  display: none;
}

.form-error-premium.visible {
  display: block;
}

.btn-premium-primary {
  width: 100%;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

.btn-premium-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
}

.btn-premium-primary:active {
  transform: translateY(0);
}

.password-strength {
  height: 4px;
  margin-top: var(--space-xs);
  border-radius: var(--radius-full);
  background: var(--gray-200);
  overflow: hidden;
}

.password-strength-bar {
  height: 100%;
  width: 0%;
  transition: width var(--transition-normal), background-color var(--transition-fast);
}

.password-strength-bar.weak { background: var(--error); width: 33%; }
.password-strength-bar.medium { background: var(--warning); width: 66%; }
.password-strength-bar.strong { background: var(--success); width: 100%; }

.auth-separator {
  display: flex;
  align-items: center;
  margin: var(--space-lg) 0;
  color: var(--gray-400);
  font-size: 12px;
}

.auth-separator::before,
.auth-separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.auth-separator span {
  padding: 0 var(--space-sm);
}

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  height: 44px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text-secondary);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.btn-social:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
}

/* Table styles preserved */
.table-premium th {
  background-color: var(--gray-50) !important;
  color: var(--text-secondary) !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.table-premium td {
  border-bottom: 1px solid var(--gray-200) !important;
  vertical-align: middle;
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.4s ease forwards;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* Skeleton preserved */
.skeleton {
  background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-300) 50%, var(--gray-200) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: var(--radius-md);
}

@keyframes loading {
  0% { background-position: 200%; }
  100% { background-position: -200%; }
}

/* Dark mode preserved */
[data-bs-theme="dark"] {
  --surface: #1e293b;
  --surface-elevated: #334155;
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
}

/* Responsive preserved */
@media (max-width: 767.98px) {
  .auth-card {
    padding: var(--space-xl);
    margin: var(--space-md);
  }
}

@media (max-width: 767.98px) {
  .table th,
  .table td {
    font-size: 12px;
    padding: var(--space-sm) !important;
  }

  .table th:last-child,
  .table td:last-child {
    display: none;
  }

  .card-header {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .card-title {
    font-size: 18px !important;
  }
}

@media (max-width: 575.98px) {
  .card {
    margin: 0 var(--space-sm) !important;
  }

  .app-toolbar {
    margin: var(--space-md) !important;
    padding: var(--space-md) !important;
  }

  .auth-card {
    padding: var(--space-lg) var(--space-md) !important;
    margin: var(--space-sm) !important;
  }
}

.spinner-premium {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--primary-500);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.toast-premium {
  background: var(--surface);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.form-check-input:checked {
  background-color: var(--primary-600);
  border-color: var(--primary-600);
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(14, 165, 233, 0.25);
}

.table.gs-0 td:last-child, .table.gs-0 th:last-child {
  padding-right: 1rem;
}

.phone-slide{
height:250px;   width:250px;
}

/* ===== ADMIN DASHBOARD ENHANCEMENTS ===== */
.admin-card-gradient-primary {
  background: linear-gradient(135deg, #F1416C 0%, #e01e4e 100%) !important;
  border: none !important;
  box-shadow: 0 10px 40px rgba(241, 65, 108, 0.25);
  transition: all 0.3s ease;
}

.admin-card-gradient-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(241, 65, 108, 0.35);
}

.admin-card-gradient-info {
  background: linear-gradient(135deg, #009EF7 0%, #0077b3 100%) !important;
  border: none !important;
  box-shadow: 0 10px 40px rgba(0, 158, 247, 0.25);
  transition: all 0.3s ease;
}

.admin-card-gradient-info:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(0, 158, 247, 0.35);
}

.admin-card-gradient-success {
  background: linear-gradient(135deg, #1BC5BD 0%, #0f8a89 100%) !important;
  border: none !important;
  box-shadow: 0 10px 40px rgba(27, 197, 189, 0.25);
  transition: all 0.3s ease;
}

.admin-card-gradient-success:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(27, 197, 189, 0.35);
}

.admin-filter-dropdown {
  min-width: 220px;
  max-height: 400px;
  overflow-y: auto;
  padding: 0.5rem 0;
}

.admin-filter-dropdown .form-select-sm {
  font-size: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #e4e6ef;
  background-color: #f5f8fa;
  transition: all 0.2s ease;
}

.admin-filter-dropdown .form-select-sm:focus {
  border-color: #0095E8;
  box-shadow: 0 0 0 3px rgba(0, 149, 232, 0.15);
  background-color: #fff;
}

.admin-filter-dropdown .fw-bold {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.admin-filter-dropdown .separator {
  border-top: 1px solid #e4e6ef;
  margin: 0.5rem 0;
}

.admin-card-header-enhanced {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-card-header-enhanced .card-title {
  flex: 1;
  min-width: 200px;
}

.admin-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.admin-icon-circle.bg-white-20 {
  background: rgba(255, 255, 255, 0.2);
}

.admin-progress-enhanced {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.admin-progress-enhanced .progress-bar {
  border-radius: 4px;
  background: #fff;
  transition: width 0.6s ease;
}

.admin-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

.admin-stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 0.25rem;
}

/* Dropdown menu enhancements */
/*.menu-sub {
  position: absolute !important;
  z-index: 1050 !important;
  margin-top: 0.5rem !important;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.menu-sub.show {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.menu-sub:not(.show) {
  opacity: 0 !important;
  visibility: hidden !important;
  display: none !important;
}

.menu-item.menu-lg-down-accordion {
  position: relative;
}*/

/* Keep dropdown open on hover */
/*.menu-item.menu-lg-down-accordion:hover .menu-sub,
.menu-item.menu-lg-down-accordion:focus-within .menu-sub {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}*/

/* Form select styling inside dropdown */
.admin-filter-dropdown .form-select-sm {
  font-size: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #e4e6ef;
  background-color: #f5f8fa;
  transition: all 0.2s ease;
}

.admin-filter-dropdown .form-select-sm:focus {
  border-color: #0095E8;
  box-shadow: 0 0 0 3px rgba(0, 149, 232, 0.15);
  background-color: #fff;
}

.admin-filter-dropdown .form-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

/* Filter button styling */
.btn-filter-toggle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.btn-filter-toggle:hover {
  background-color: #f1f1f2 !important;
}

/* Card toolbar positioning */
.card-toolbar {
  position: relative;
  z-index: 10;
}

/* Enhanced card styling */
.card.card-flush {
  transition: all 0.3s ease;
  border-radius: 12px !important;
  overflow: hidden;
}

.card.card-flush:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
  .admin-card-header-enhanced {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-filter-dropdown {
    min-width: 100%;
  }
}