/* Main Container */
.container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  z-index: 10;
}

/* Enhanced Header - Minimalist */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  position: fixed;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--maisha-border);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(30px);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.8);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  width: 2.8rem;
  height: 2.8rem;
  background: var(--maisha-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maisha-black);
  font-weight: 900;
  font-size: 1.4rem;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.logo:hover {
  transform: rotate(5deg);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

header .logo-img {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
  display: block;
}

.footer-logo-img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  display: block;
}

.header-left h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--maisha-white);
  letter-spacing: -0.5px;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: var(--maisha-text-muted);
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--maisha-accent-gradient);
  transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav ul li a.active {
  color: var(--maisha-white);
}

.menu-icon {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--maisha-white);
  transition: all 0.3s ease;
}

.menu-icon:hover {
  transform: scale(1.1);
}

/* Enhanced Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(30px);
  z-index: 1001;
  transition: right 0.3s ease;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--maisha-border);
}

.sidebar.active {
  right: 0;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
}

.close-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--maisha-white);
  transition: all 0.3s ease;
}

.close-icon:hover {
  transform: rotate(90deg);
}

.sidebar ul {
  list-style: none;
}

.sidebar ul li {
  margin: 1.2rem 0;
}

.sidebar ul li a {
  color: var(--maisha-text-muted);
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  display: block;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.sidebar ul li a:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--maisha-border);
  color: var(--maisha-white);
}

.social-sidebar {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2rem;
}

.social-sidebar a {
  color: var(--maisha-white);
  font-size: 1.3rem;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--maisha-border);
}

.social-sidebar a:hover {
  background: var(--maisha-white);
  color: var(--maisha-black);
  transform: translateY(-3px);
}

/* Enhanced Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  position: relative;
  border-bottom: 1px solid var(--maisha-border);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-info {
  z-index: 2;
}

.hero-info-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--maisha-white);
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--maisha-border);
  border-radius: 30px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.hero-info h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--maisha-white);
  font-weight: 800;
  letter-spacing: -1px;
}

.gradient {
  background: var(--maisha-accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-info p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: var(--maisha-text-muted);
  max-width: 600px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.btn.primary {
  background: var(--maisha-white);
  color: var(--maisha-black);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn.secondary {
  border: 2px solid var(--maisha-white);
  color: var(--maisha-white);
  background: transparent;
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-inner {
  width: 100%;
  height: 420px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--maisha-border);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.hero-visual-inner::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent 30%
  );
  animation: rotate 15s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.floating-elements {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: min(260px, 60%);
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.6));
  user-select: none;
  pointer-events: none;
}

.floating-element {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--maisha-border);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--maisha-white);
  animation: floatElement 4s ease-in-out infinite;
  transition: all 0.3s ease;
}

.floating-element:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--maisha-white);
  transform: scale(1.05);
}

.floating-element:nth-child(2) {
  animation-delay: 0.7s;
}

.floating-element:nth-child(3) {
  animation-delay: 1.4s;
}

@keyframes floatElement {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
}

/* What We Offer - Monochrome 3D Carousel */
.offer-carousel {
  padding: 8rem 5%;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--maisha-border);
}

.offer-carousel .carousel-container {
  width: 100%;
  max-width: 1600px;
  height: 650px;
  perspective: 1200px;
  position: relative;
  margin: 0 auto;
  padding-top: 60px;
}

.offer-carousel .carousel {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
}

.offer-carousel .carousel-item {
  position: absolute;
  width: 400px;
  height: 500px;
  left: 50%;
  top: 50%;
  transform-style: preserve-3d;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  transform-origin: center center;
}

.offer-carousel .carousel-item .card {
  width: 100%;
  height: 100%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shadow), var(--glass-highlight);
  backdrop-filter: blur(26px) saturate(140%);
}

.offer-carousel .carousel-item .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: offer-scanline 4s linear infinite;
}

@keyframes offer-scanline {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(500px);
  }
}

.offer-carousel .card-number {
  position: absolute;
  top: 18px;
  right: 26px;
  font-size: 72px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
}

.offer-carousel .card-image {
  width: 100%;
  height: 200px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--maisha-border);
}

.offer-carousel .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transition: all 0.5s ease;
}

.offer-carousel .carousel-item:hover .card-image img {
  filter: grayscale(0%) contrast(1.2);
  transform: scale(1.07);
}

.offer-carousel .card-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--maisha-white);
}

.offer-carousel .card-description {
  color: var(--maisha-text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  font-size: 14px;
  opacity: 0.9;
}

.offer-carousel .card-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.offer-carousel .tech-badge {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--maisha-border);
  border-radius: 20px;
  font-size: 11px;
  color: var(--maisha-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.offer-carousel .card-cta {
  padding: 12px 26px;
  background: var(--maisha-white);
  border: none;
  border-radius: 30px;
  color: var(--maisha-black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.offer-carousel .card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.offer-carousel .carousel-controls {
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 100;
}

.offer-carousel .carousel-btn {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--maisha-border);
  border-radius: 50%;
  color: var(--maisha-white);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 5px 15px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.offer-carousel .carousel-btn:hover {
  border-color: var(--maisha-white);
  transform: scale(1.1);
  box-shadow:
    0 8px 25px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.offer-carousel .carousel-indicators {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 100;
}

.offer-carousel .indicator {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--maisha-border);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.offer-carousel .indicator.active {
  background: var(--maisha-white);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  transform: scale(1.3);
}

/* Solutions Tabs - Monochrome */
.solutions-tabs {
  padding: 8rem 5%;
  position: relative;
  border-bottom: 1px solid var(--maisha-border);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 5rem;
  text-align: center;
  color: var(--maisha-white);
  font-weight: 800;
  letter-spacing: -1px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--maisha-accent-gradient);
}

.solutions-tabs .tabs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.solutions-tabs .menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 204px);
  gap: 25px;
  margin: 0 auto 60px;
  justify-content: center;
}

.solutions-tabs .menu-item {
  height: 170px;
  background: var(--glass-bg);
  backdrop-filter: blur(26px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.solutions-tabs .menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 40%,
    transparent 100%
  );
  border-radius: 20px 20px 0 0;
  pointer-events: none;
}

.solutions-tabs .menu-item:hover {
  transform: translateY(-10px) scale(1.02);
  background: var(--glass-hover);
  border-color: var(--maisha-white);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(255, 255, 255, 0.1);
}

.solutions-tabs .menu-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--maisha-border);
  color: var(--maisha-white);
  transition: all 0.4s ease;
  overflow: hidden;
}

.solutions-tabs .menu-badge::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 10%;
  right: 10%;
  height: 45%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 100%
  );
  border-radius: 50%;
  pointer-events: none;
}

.solutions-tabs .menu-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--maisha-text-muted);
  transition: all 0.3s ease;
}

.solutions-tabs .menu-item:hover .menu-title {
  color: var(--maisha-white);
  letter-spacing: 4px;
}

.solutions-tabs .solutions-content-section {
  display: none;
  opacity: 0;
  padding: 20px 0 0;
  position: relative;
}

.solutions-tabs .solutions-content-section.active {
  display: block;
  animation: solutionsSectionIn 0.6s ease-out forwards;
}

@keyframes solutionsSectionIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.solutions-tabs .solutions-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(26px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--glass-shadow), var(--glass-highlight);
}

.solutions-tabs .solutions-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--maisha-white);
  font-weight: 700;
}

.solutions-tabs .solutions-panel p {
  color: var(--maisha-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.solutions-tabs .solutions-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.solutions-tabs .back-btn {
  margin-bottom: 25px;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
}

/* About Preview Section */
.about-preview {
  padding: 8rem 5%;
  position: relative;
  border-bottom: 1px solid var(--maisha-border);
}

.section-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
  color: var(--maisha-text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: var(--glass-bg);
  backdrop-filter: blur(26px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: var(--glass-shadow), var(--glass-highlight);
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: var(--maisha-white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--maisha-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--maisha-black);
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  transform: rotate(10deg) scale(1.1);
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--maisha-white);
  font-weight: 700;
}

.value-card p {
  color: var(--maisha-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

.value-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--maisha-border);
}

.metric-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--maisha-white);
}

.metric-label {
  color: var(--maisha-text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Expertise Section */
.expertise {
  padding: 8rem 5%;
  position: relative;
  border-bottom: 1px solid var(--maisha-border);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.expertise-card {
  background: var(--glass-bg);
  backdrop-filter: blur(26px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  box-shadow: var(--glass-shadow), var(--glass-highlight);
}

.expertise-card:hover {
  transform: translateY(-10px);
  border-color: var(--maisha-white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.expertise-icon {
  width: 60px;
  height: 60px;
  background: var(--maisha-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--maisha-black);
  transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
  transform: rotate(-5deg) scale(1.1);
}

.expertise-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--maisha-white);
  font-weight: 700;
}

.expertise-card p {
  color: var(--maisha-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

.tech-stack {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tech-tag {
  background: rgba(255, 255, 255, 0.08);
  color: var(--maisha-white);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  border: 1px solid var(--maisha-border);
  font-weight: 600;
}

/* Stats Section */
.stats-section {
  padding: 8rem 5%;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: var(--glass-bg);
  backdrop-filter: blur(26px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: var(--glass-shadow), var(--glass-highlight);
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: var(--maisha-white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--maisha-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--maisha-black);
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: rotate(15deg) scale(1.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--maisha-white);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.2rem;
  color: var(--maisha-white);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.stat-card p {
  color: var(--maisha-text-muted);
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Enhanced Footer */
footer {
  background: rgba(0, 0, 0, 0.95);
  color: var(--maisha-white);
  padding: 6rem 5% 3rem;
  border-top: 1px solid var(--maisha-border);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-1);
  animation: gradientFlow 3s ease infinite;
}

@keyframes gradientFlow {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-about img {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.5rem;
}

.footer-about p {
  color: var(--maisha-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--maisha-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maisha-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--maisha-white);
  color: var(--maisha-black);
  transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--maisha-white);
  position: relative;
  font-weight: 700;
}

.footer-links h3::after,
.footer-contact h3::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--maisha-white);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 1rem;
}

.footer-links ul li a {
  color: var(--maisha-text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-links ul li a:hover {
  color: var(--maisha-white);
  padding-left: 0.5rem;
}

.footer-contact p {
  color: var(--maisha-text-muted);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--maisha-accent-cyan);
  font-size: 1.1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--maisha-border);
  color: var(--maisha-text-muted);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Loading Screen - Monochrome */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--maisha-black);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 80px;
  height: 80px;
  position: relative;
}

.loader-ring::before,
.loader-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
}

.loader-ring::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-top-color: var(--maisha-white);
  border-right-color: rgba(255, 255, 255, 0.5);
  animation: spin 1.2s linear infinite;
}

.loader-ring::after {
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-bottom-color: var(--maisha-white);
  border-left-color: rgba(255, 255, 255, 0.5);
  animation: spin 0.8s linear infinite reverse;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-text {
  margin-top: 30px;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--maisha-white);
  text-transform: uppercase;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-info-title {
    margin: 0 auto 1.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .solutions-tabs .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem 3%;
  }

  nav ul {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .hero {
    padding: 0 3%;
  }

  .hero-info h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .offer-carousel .carousel-container {
    height: 550px;
  }

  .offer-carousel .carousel-item {
    width: 320px;
    height: 450px;
  }

  .values-grid,
  .expertise-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .footer-links h3::after,
  .footer-contact h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-icons {
    justify-content: center;
  }

  .solutions-tabs .menu-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .solutions-tabs .menu-item {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .hero-info-title {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .hero-visual-inner {
    height: 350px;
  }

  .hero-logo {
    width: min(200px, 65%);
  }

  .floating-element {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .offer-carousel .carousel-item {
    width: 280px;
    height: 420px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-text {
    font-size: 1rem;
  }
}

/* Animations */
.fade-in {
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.slide-up {
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
