/* ===== متغيرات CSS ===== */
:root {
  --primary: #3a86ff;
  --primary-dark: #2667cc;
  --secondary: #8338ec;
  --accent: #ff006e;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --light: #f8fafc;
  --gray: #64748b;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  
  /* ألوان VIP */
  --vip-gold: #d4af37;
  --vip-gold-dark: #b8941f;
  --vip-purple: #8a2be2;
  --vip-dark: #0a0a2a;
  --vip-darker: #050514;
  
  /* تأثيرات */
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== CSS Reset ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: 'Cairo', 'Segoe UI', 'Arial', sans-serif;
  background-color: #ffffff;
  color: var(--dark);
  line-height: 1.6;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== العناصر العامة ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

/* ===== الشريط العلوي ===== */
.navbar {
  background-color: #ffffff !important;
  backdrop-filter: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

.logo-icon {
  color: var(--vip-gold);
  font-size: 1.8rem;
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo-main {
  color: var(--dark);
}

.logo-vip {
  color: var(--vip-gold);
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: var(--transition);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--vip-gold);
  background: rgba(212, 175, 55, 0.1);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--dark);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* ===== الأزرار ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  font-size: 1rem;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-vip {
  background: linear-gradient(135deg, var(--vip-gold), var(--vip-purple));
  color: white;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.btn-vip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  background: transparent;
  border-color: var(--vip-gold);
  color: var(--vip-gold);
}

.btn-outline:hover {
  background: var(--vip-gold);
  color: var(--dark);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* ===== قسم البطل ===== */
.hero {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  min-height: auto;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: none;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--vip-gold), var(--vip-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-image {
  position: relative;
  margin: 0;
  height: 20vh;
  min-height: 160px;
  max-height: 360px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
}

.hero-image video {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  display: block;
  height: 100%;
  object-fit: cover;
}

/* ===== الأقسام ===== */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--vip-gold), var(--vip-purple));
  border-radius: 2px;
}

.section-sub {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-link {
  color: var(--vip-gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.section-link:hover {
  gap: 1rem;
}

/* ===== الشبكة والعناصر ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--vip-gold);
}

/* ===== الباقات ===== */
.package-preview {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.package-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: -2rem -2rem 1rem -2rem;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.package-preview:hover .package-image img {
  transform: scale(1.05);
}

.vip-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--vip-gold), var(--vip-purple));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.package-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: var(--dark);
}

.package-meta {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  color: var(--gray);
  font-size: 0.875rem;
}

.package-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

/* ===== الخدمات ===== */
.service-card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--vip-gold), var(--vip-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--dark);
}

/* ===== الوجهات ===== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.destination-card {
  position: relative;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
  padding: 2rem;
  color: white;
  transform: translateY(0);
  opacity: 1;
  transition: var(--transition);
}

.destination-card:hover .destination-overlay {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
}

/* ===== الإحصائيات ===== */
.stats-section {
  background: #ffffff;
  padding: 4rem 0;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
}

.stat-card i {
  font-size: 2.5rem;
  color: var(--vip-gold);
  margin-bottom: 1rem;
}

.stat-card h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--vip-gold), var(--vip-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== آراء العملاء ===== */
.testimonials-section {
  background: #ffffff;
  padding: 80px 0;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.testimonial-content {
  position: relative;
  margin-bottom: 2rem;
}

.testimonial-content .fa-quote-left {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 2rem;
  color: var(--vip-gold);
  opacity: 0.5;
}

.testimonial-content .fa-quote-right {
  position: absolute;
  bottom: -10px;
  left: -10px;
  font-size: 2rem;
  color: var(--vip-gold);
  opacity: 0.5;
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.8;
  padding: 1rem 0;
  color: var(--light);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  margin-bottom: 0.25rem;
  color: var(--light);
}

.testimonial-author span {
  color: var(--gray);
  font-size: 0.875rem;
}

/* ===== النشرة البريدية ===== */
.newsletter-section {
  background: #ffffff;
  padding: 80px 0;
  color: var(--dark);
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: none;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.newsletter-content p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  padding: 1rem;
  border-radius: var(--radius);
  border: none;
  background: #f1f5f9;
  color: var(--dark);
  font-family: inherit;
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: #667085;
}

.newsletter-note {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* ===== الفوتر ===== */
.footer {
  background: #ffffff;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--vip-gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.footer-links h4 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  color: var(--dark);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--gray);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--vip-gold);
  padding-right: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(15, 23, 42, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--vip-gold);
  color: white;
  transform: translateY(-3px);
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--gray);
}

.contact-info i {
  color: var(--vip-gold);
  width: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray);
  font-size: 0.875rem;
}

/* ===== أنماط about.php الإضافية ===== */
.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.mission-vision .card {
  text-align: center;
  padding: 2rem;
}

.mission-vision .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--vip-gold), var(--vip-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: white;
}

.about-stats {
  display: grid;
  gap: 2rem;
}

.about-stats .stat {
  text-align: center;
  padding: 2rem;
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: var(--dark);
}

.about-stats .stat h4 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--vip-gold);
}

/* ===== أنماط VIP ===== */
.vip-values {
  margin: 3rem 0;
}

.vip-values h3 {
  margin-bottom: 2rem;
  color: var(--vip-gold);
  text-align: center;
  font-size: 1.8rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.value-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(212, 175, 55, 0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.value-item i {
  font-size: 2rem;
  color: var(--vip-gold);
  margin-bottom: 1rem;
}

.value-item h4 {
  margin-bottom: 0.5rem;
  color: var(--vip-gold);
}

.about-stats.vip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.about-stats.vip .stat {
  text-align: center;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.about-stats.vip .stat i {
  font-size: 2rem;
  color: var(--vip-gold);
  margin-bottom: 0.5rem;
}

.about-stats.vip .stat h4 {
  font-size: 1.5rem;
  color: var(--vip-gold);
  margin-bottom: 0.25rem;
}

.intro-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--vip-gold);
  background: rgba(212, 175, 55, 0.05);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-right: 4px solid var(--vip-gold);
}

.vip-client {
  position: relative;
  width: 60px;
  height: 60px;
}

.vip-client img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.vip-client .fa-crown {
  position: absolute;
  top: -5px;
  right: -5px;
  color: var(--vip-gold);
  background: var(--vip-dark);
  padding: 3px;
  border-radius: 50%;
  font-size: 0.8rem;
}

.testimonial-card.vip {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(138, 43, 226, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.rating {
  color: var(--vip-gold);
  margin-top: 0.25rem;
}

.testimonials-section.vip {
  background: #ffffff;
}

.mission-vision .card.vip {
  border: 2px solid transparent;
  background: linear-gradient(var(--dark-light), var(--dark-light)) padding-box,
              linear-gradient(135deg, var(--vip-gold), var(--vip-purple)) border-box;
}

.mission-vision .card.vip .icon {
  background: linear-gradient(135deg, var(--vip-gold), var(--vip-purple));
}

.mission-vision .card.vip h3 {
  color: var(--vip-gold);
}

/* ===== التجاوب ===== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
  }
  .hero-image { height: 24vh; max-height: 320px; }
  .cta { justify-content: center; }
  
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: #ffffff;
    flex-direction: column;
    padding: 2rem;
    transition: var(--transition);
    border-left: 1px solid rgba(15, 23, 42, 0.1);
    gap: 1rem;
    overflow-y: auto;
  }
  .nav-links a { color: var(--dark); }
  .nav-links a:hover { background: rgba(15,23,42,0.06); color: var(--vip-gold); }
  
  .nav-links.active {
    right: 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  .hero-image { height: 22vh; max-height: 280px; }
  
  .mission-vision {
    grid-template-columns: 1fr;
  }
  
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .contact-info li {
    justify-content: center;
  }
  
  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }
  
  .newsletter-form input {
    min-width: 100%;
    max-width: 100%;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-image { height: 20vh; max-height: 240px; }
  
  .cta {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .container {
    padding: 0 12px;
  }
}

/* ===== تحسينات الوصول ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== دعم المتصفحات القديمة ===== */
@supports not (backdrop-filter: blur(10px)) {
  .navbar {
    background-color: #ffffff !important;
  }
}

/* ===== معالجة المشاكل الشائعة ===== */
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--vip-gold);
  outline-offset: 2px;
}

::selection {
  background-color: var(--vip-gold);
  color: var(--dark);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  background: var(--vip-gold);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--vip-gold-dark);
}
/* ===== فوتر الإحصائيات ===== */
.stats-footer {
    background: #ffffff;
    padding: 3rem 0;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.stats-footer .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-footer-item {
    text-align: center;
    min-width: 150px;
}

.stat-footer-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--vip-gold), var(--vip-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-footer-label {
    display: block;
    color: var(--light);
    font-size: 1.1rem;
    font-weight: 600;
}

.stat-footer-icon {
    display: block;
    font-size: 2rem;
    color: var(--vip-gold);
    margin-bottom: 1rem;
}

/* ===== تحسين التجاوب ===== */
@media (max-width: 992px) {
    .stats-footer .container {
        justify-content: center;
    }
    
    .stat-footer-item {
        min-width: 120px;
    }
    
    .stat-footer-value {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .stats-footer {
        padding: 2rem 0;
    }
    
    .stats-footer .container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-footer-item {
        width: 100%;
        max-width: 200px;
    }
    
    .stat-footer-value {
        font-size: 2.2rem;
    }
}
