/* =============================================
   AL SAJAA GENERAL MAINTENANCE CONTRACTING
   Premium Industrial Design System
   ============================================= */

/* ---- CSS Custom Properties ---- */
:root {
  /* Colors */
  --primary: #111111;
  --primary-light: #1a1a1a;
  --primary-lighter: #222222;
  --secondary: #0057FF;
  --secondary-dark: #0044cc;
  --secondary-light: #3378ff;
  --accent: #FF6A00;
  --accent-dark: #cc5500;
  --accent-light: #ff8533;
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-30: rgba(255, 255, 255, 0.3);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-05: rgba(255, 255, 255, 0.05);
  --white-03: rgba(255, 255, 255, 0.03);
  --dark-overlay: rgba(0, 0, 0, 0.7);
  --dark-overlay-heavy: rgba(0, 0, 0, 0.85);
  --glass-bg: rgba(17, 17, 17, 0.8);
  --glass-border: rgba(255, 255, 255, 0.08);
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.06);
  --success: #00c853;
  --gradient-blue: linear-gradient(135deg, #0057FF 0%, #0044cc 100%);
  --gradient-orange: linear-gradient(135deg, #FF6A00 0%, #ff8533 100%);
  --gradient-steel: linear-gradient(135deg, #1a1a1a 0%, #111111 50%, #0a0a0a 100%);
  --glow-blue: 0 0 30px rgba(0, 87, 255, 0.3);
  --glow-orange: 0 0 30px rgba(255, 106, 0, 0.3);

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-hero: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1280px;
  --container-padding: 0 40px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-slower: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--primary);
  color: var(--white-90);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

p {
  color: var(--white-70);
  font-size: 1rem;
  line-height: 1.8;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(0, 87, 255, 0.1);
  border: 1px solid rgba(0, 87, 255, 0.2);
  margin-bottom: 20px;
}

.section-badge.orange {
  color: var(--accent);
  background: rgba(255, 106, 0, 0.1);
  border-color: rgba(255, 106, 0, 0.2);
}

.section-title {
  margin-bottom: 20px;
}

.section-title span {
  color: var(--secondary);
}

.section-title span.orange {
  color: var(--accent);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--white-50);
  max-width: 600px;
  margin-bottom: 60px;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 106, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(255, 106, 0, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white-30);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: var(--white-10);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--gradient-blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 87, 255, 0.3);
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0, 87, 255, 0.5);
}

.btn i {
  font-size: 1.1rem;
}

/* ---- Header / Navigation ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
}

.header.scrolled {
  padding: 12px 0;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 45px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1;
}

.logo-text span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links>a,
.nav-dropdown-trigger {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-70);
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}

.nav-links>a::after,
.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-base);
}

.nav-links>a:hover,
.nav-dropdown-trigger:hover {
  color: var(--white);
}

.nav-links>a:hover::after,
.nav-dropdown-trigger:hover::after {
  width: 100%;
}

.nav-dropdown-trigger i {
  font-size: 0.6rem;
  margin-left: 4px;
  transition: transform var(--transition-base);
}

.nav-cta {
  padding: 12px 28px !important;
  font-size: 0.85rem !important;
}

/* ---- Desktop Dropdown Menus ---- */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: rgba(20, 20, 20, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 1px rgba(255, 255, 255, 0.1);
  z-index: 1001;
  margin-top: 12px;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
  background: transparent;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .nav-dropdown-trigger i {
  transform: rotate(180deg);
}

/* Services Dropdown */
.dropdown-services {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-services a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white-70);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.dropdown-services a i {
  width: 20px;
  text-align: center;
  color: var(--accent);
  font-size: 0.85rem;
}

.dropdown-services a:hover {
  background: var(--white-10);
  color: var(--white);
  padding-left: 22px;
}

/* Locations Mega Dropdown */
.dropdown-locations {
  display: flex;
  gap: 8px;
  min-width: 560px;
  left: 50%;
}

.dropdown-city-group {
  flex: 1;
  min-width: 170px;
}

.dropdown-city-group h5 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  padding: 8px 12px 10px;
  border-bottom: 1px solid var(--white-10);
  margin-bottom: 4px;
}

.dropdown-city-group h5 i {
  font-size: 0.7rem;
}

.dropdown-city-group a {
  display: block;
  padding: 9px 12px;
  font-size: 0.83rem;
  color: var(--white-70);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.dropdown-city-group a:hover {
  background: var(--white-10);
  color: var(--white);
  padding-left: 18px;
}

/* ---- Mobile Toggle ---- */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1002;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-base);
}

/* ---- Mobile Nav Overlay ---- */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1098;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ---- Premium Mobile Navigation ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.98) 0%, rgba(10, 10, 10, 0.99) 100%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-left: 1px solid var(--white-10);
  z-index: 1099;
  flex-direction: column;
  overflow: hidden;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
  right: 0;
}

/* Mobile Nav Header */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--white-10);
  flex-shrink: 0;
}

.mobile-nav-header .logo-text {
  font-size: 1.2rem;
}

.mobile-nav-header .logo-img {
  height: 35px;
  width: auto;
}

.mobile-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  color: var(--white-70);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.mobile-close:hover {
  background: rgba(255, 0, 0, 0.15);
  color: var(--white);
  border-color: rgba(255, 0, 0, 0.3);
}

/* Mobile Nav Body */
.mobile-nav-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 0;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-body::-webkit-scrollbar {
  width: 3px;
}

.mobile-nav-body::-webkit-scrollbar-track {
  background: transparent;
}

.mobile-nav-body::-webkit-scrollbar-thumb {
  background: var(--white-10);
  border-radius: 3px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white-70);
  transition: all var(--transition-base);
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--white);
  background: var(--white-05);
  border-left-color: var(--accent);
}

.mobile-nav-link i {
  width: 22px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--accent);
}

/* Mobile Accordion */
.mobile-accordion {
  border-bottom: 1px solid var(--white-05);
}

.mobile-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white-70);
  transition: all var(--transition-base);
  border-left: 3px solid transparent;
}

.mobile-accordion-trigger span {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-accordion-trigger span i {
  width: 22px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--accent);
}

.mobile-accordion-trigger:hover {
  color: var(--white);
  background: var(--white-05);
  border-left-color: var(--accent);
}

.mobile-accordion-icon {
  font-size: 0.7rem;
  color: var(--white-50);
  transition: transform 0.3s ease;
}

.mobile-accordion.open .mobile-accordion-icon {
  transform: rotate(180deg);
}

.mobile-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--white-03);
}

.mobile-accordion.open .mobile-accordion-content {
  max-height: 600px;
}

.mobile-accordion-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px 11px 48px;
  font-size: 0.88rem;
  color: var(--white-50);
  transition: all var(--transition-base);
  border-left: 3px solid transparent;
}

.mobile-accordion-content a i {
  width: 18px;
  text-align: center;
  color: var(--secondary);
  font-size: 0.8rem;
}

.mobile-accordion-content a:hover {
  color: var(--white);
  background: var(--white-05);
  border-left-color: var(--secondary);
  padding-left: 54px;
}

.mobile-city-label {
  padding: 10px 24px 6px 48px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
}

.mobile-city-label:not(:first-child) {
  margin-top: 4px;
  border-top: 1px solid var(--white-05);
  padding-top: 12px;
}

/* Mobile Nav Footer */
.mobile-nav-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--white-10);
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.3);
}

.mobile-nav-cta {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.mobile-nav-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.mobile-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  transition: all var(--transition-base);
}

.mobile-action-btn.call {
  background: var(--secondary);
}

.mobile-action-btn.call:hover {
  background: var(--secondary-dark);
}

.mobile-action-btn.whatsapp {
  background: #25D366;
}

.mobile-action-btn.whatsapp:hover {
  background: #1da855;
}

.mobile-nav-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.mobile-nav-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-50);
  font-size: 0.85rem;
  transition: all var(--transition-base);
}

.mobile-nav-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* Mobile Nav Animations */
@media (max-width: 992px) {
  .mobile-nav {
    display: flex;
  }

  .mobile-nav-overlay {
    display: none;
  }

  .mobile-nav-overlay.active {
    display: block;
  }
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 87, 255, 0.15) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.3);
  margin-bottom: 30px;
}

.hero-badge i {
  font-size: 0.7rem;
}

.hero h1 {
  font-family: var(--font-hero);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1 .highlight {
  color: var(--accent);
  position: relative;
}

.hero h1 .highlight-blue {
  color: var(--secondary);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  gap: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--white-10);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat .number span {
  color: var(--accent);
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--white-50);
  margin-top: 6px;
}

/* Floating Contact Icons */
.hero-float-contact {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-float-contact a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  transition: all var(--transition-base);
  border: 1px solid var(--white-10);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
}

.hero-float-contact a.whatsapp {
  background: #25D366;
  border-color: #25D366;
}

.hero-float-contact a.phone {
  background: var(--secondary);
  border-color: var(--secondary);
}

.hero-float-contact a:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* ---- Trusted By Section ---- */
.trusted-section {
  padding: 60px 0;
  border-top: 1px solid var(--white-05);
  border-bottom: 1px solid var(--white-05);
  background: var(--primary-light);
  overflow: hidden;
}

.trusted-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-30);
  margin-bottom: 30px;
}

.logo-carousel {
  display: flex;
  gap: 60px;
  animation: scrollLogos 30s linear infinite;
  width: max-content;
}

.logo-carousel:hover {
  animation-play-state: paused;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 60px;
  padding: 0 20px;
  opacity: 0.4;
  filter: grayscale(100%) brightness(2);
  transition: all var(--transition-base);
}

.logo-item:hover {
  opacity: 0.8;
  filter: grayscale(0%);
}

.logo-item span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  white-space: nowrap;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ---- Services Section ---- */
.services-section {
  padding: var(--section-padding);
  background: var(--primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
  position: relative;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 87, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 87, 255, 0.1);
}

.service-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
  transform: scale(1.1);
}

.service-card-image .service-icon {
  position: absolute;
  bottom: -24px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: var(--gradient-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  z-index: 2;
  box-shadow: 0 8px 25px rgba(0, 87, 255, 0.4);
}

.service-card-content {
  padding: 36px 24px 24px;
}

.service-card-content h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  transition: var(--transition-base);
}

.service-card:hover .service-card-content h3 {
  color: var(--secondary-light);
}

.service-card-content p {
  font-size: 0.9rem;
  color: var(--white-50);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  transition: var(--transition-base);
}

.service-link:hover {
  color: var(--accent);
  gap: 14px;
}

/* ---- Mezzanine SEO Section ---- */
.mezzanine-section {
  padding: var(--section-padding);
  background: var(--primary-light);
  position: relative;
  overflow: hidden;
}

.mezzanine-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 87, 255, 0.08) 0%, transparent 70%);
  z-index: 0;
}

.mezzanine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.mezzanine-content .feature-list {
  margin: 30px 0 40px;
}

.mezzanine-content .feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--white-70);
  border-bottom: 1px solid var(--white-05);
}

.mezzanine-content .feature-list li i {
  color: var(--accent);
  font-size: 1rem;
  width: 24px;
}

.mezzanine-diagram {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  overflow: hidden;
}

.diagram-warehouse {
  position: relative;
  width: 100%;
  height: 350px;
}

.diagram-floor {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
  box-shadow: var(--glow-blue);
}

.diagram-floor.ground {
  bottom: 10%;
}

.diagram-floor.mezzanine {
  bottom: 50%;
}

.diagram-floor.roof {
  top: 5%;
  background: var(--white-30);
  box-shadow: none;
}

.diagram-column {
  position: absolute;
  bottom: 10%;
  width: 6px;
  background: linear-gradient(180deg, var(--white-30), var(--secondary));
  border-radius: 3px;
}

.diagram-column:nth-child(4) {
  left: 10%;
  height: 85%;
}

.diagram-column:nth-child(5) {
  left: 35%;
  height: 85%;
}

.diagram-column:nth-child(6) {
  right: 35%;
  height: 85%;
}

.diagram-column:nth-child(7) {
  right: 10%;
  height: 85%;
}

.diagram-support {
  position: absolute;
  bottom: 10%;
  width: 4px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: var(--glow-orange);
}

.diagram-support:nth-child(8) {
  left: 20%;
  height: 40%;
}

.diagram-support:nth-child(9) {
  left: 50%;
  height: 40%;
}

.diagram-support:nth-child(10) {
  right: 20%;
  height: 40%;
}

.diagram-label {
  position: absolute;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}

.diagram-label.upper {
  top: 28%;
  right: 12%;
  color: var(--secondary);
  background: rgba(0, 87, 255, 0.1);
  border: 1px solid rgba(0, 87, 255, 0.2);
}

.diagram-label.lower {
  bottom: 25%;
  right: 12%;
  color: var(--accent);
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.2);
}

.diagram-arrow {
  position: absolute;
  right: 6%;
  width: 2px;
  background: var(--white-30);
}

.diagram-arrow.upper-arrow {
  top: 10%;
  height: 40%;
}

.diagram-arrow.lower-arrow {
  bottom: 12%;
  height: 38%;
}

.diagram-arrow::before,
.diagram-arrow::after {
  content: '';
  position: absolute;
  left: -4px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.diagram-arrow::before {
  top: 0;
  border-bottom: 8px solid var(--white-30);
}

.diagram-arrow::after {
  bottom: 0;
  border-top: 8px solid var(--white-30);
}

.space-optimization {
  text-align: center;
  margin-top: 20px;
  padding: 16px;
  background: rgba(0, 87, 255, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 87, 255, 0.15);
}

.space-optimization .percentage {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.space-optimization .text {
  font-size: 0.85rem;
  color: var(--white-50);
  margin-top: 4px;
}

/* ---- Projects Section ---- */
.projects-section {
  padding: var(--section-padding);
  background: var(--primary);
}

.project-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white-50);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  cursor: pointer;
  transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--white);
  background: rgba(0, 87, 255, 0.15);
  border-color: rgba(0, 87, 255, 0.4);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay .category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.project-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.project-overlay p {
  font-size: 0.85rem;
  color: var(--white-50);
}

/* ---- Why Choose Us ---- */
.why-section {
  padding: var(--section-padding);
  background: var(--primary-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: all var(--transition-base);
}

.why-card:hover {
  border-color: rgba(255, 106, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.1);
}

.why-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  transition: var(--transition-base);
}

.why-card:hover .why-icon {
  background: var(--gradient-orange);
  color: var(--white);
  box-shadow: var(--glow-orange);
}

.why-card .count {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.why-card h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.8rem;
  color: var(--white-50);
}

/* ---- Testimonials Section ---- */
.testimonials-section {
  padding: var(--section-padding);
  background: var(--primary);
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  margin: 0 12px;
  padding: 40px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--white-05);
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars i {
  color: #FFB800;
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.testimonial-info h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--white-50);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white-30);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
}

.slider-dot.active {
  background: var(--secondary);
  width: 30px;
  border-radius: 5px;
}

/* ---- CTA Section ---- */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 87, 255, 0.3) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.15rem;
  color: var(--white-70);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Contact Section ---- */
.contact-section {
  padding: var(--section-padding);
  background: var(--primary-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.contact-card:hover {
  border-color: rgba(0, 87, 255, 0.3);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(0, 87, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--white-50);
  line-height: 1.6;
}

.contact-card a {
  color: var(--secondary);
}

.contact-card a:hover {
  color: var(--accent);
}

.contact-map {
  margin-top: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  height: 200px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(80%) invert(90%) contrast(90%);
}

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form .form-subtitle {
  color: var(--white-50);
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white-70);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--primary);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-base);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-30);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff50' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group select option {
  background: var(--primary);
  color: var(--white);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

/* ---- Footer ---- */
.footer {
  padding: 80px 0 0;
  background: #0a0a0a;
  border-top: 1px solid var(--white-05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-about .logo {
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 0.9rem;
  color: var(--white-50);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white-50);
  transition: var(--transition-base);
}

.footer-social a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  font-size: 0.9rem;
  color: var(--white-50);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-column ul li a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-column ul li a i {
  font-size: 0.7rem;
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--white-05);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--white-30);
}

/* ---- Floating Action Buttons ---- */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-2px);
}

.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.whatsapp:hover {
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.float-btn.call {
  background: var(--secondary);
}

.float-btn.call:hover {
  box-shadow: 0 8px 30px rgba(0, 87, 255, 0.4);
}

.float-btn .tooltip {
  position: absolute;
  right: 70px;
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-base);
  border: 1px solid var(--white-10);
}

.float-btn:hover .tooltip {
  opacity: 1;
}

/* ---- Exit Intent Popup ---- */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.popup-overlay.active {
  display: flex;
}

.popup-content {
  background: var(--primary-lighter);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-xl);
  padding: 50px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: popupSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popupSlide {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  color: var(--white-50);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.popup-close:hover {
  background: rgba(255, 0, 0, 0.2);
  color: var(--white);
}

.popup-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.1);
  border: 2px solid rgba(255, 106, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent);
}

.popup-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.popup-content p {
  color: var(--white-50);
  margin-bottom: 24px;
}

.popup-content .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}

/* ---- Mobile Sticky Contact Bar ---- */
.mobile-contact-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--primary);
  border-top: 1px solid var(--white-10);
  z-index: 800;
  padding: 10px 0;
}

.mobile-contact-bar .container {
  display: flex;
  gap: 10px;
}

.mobile-contact-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition-base);
}

.mobile-contact-bar a.call-btn {
  background: var(--secondary);
}

.mobile-contact-bar a.whatsapp-btn {
  background: #25D366;
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 80px 0;
    --container-padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }

  .hero-float-contact {
    display: none;
  }

  .hero-stats {
    gap: 30px;
    flex-wrap: wrap;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mezzanine-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card {
    min-width: calc(50% - 16px);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .floating-buttons {
    display: none;
  }

  .mobile-contact-bar {
    display: block;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-card {
    min-width: calc(100% - 16px);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .hero-content {
    padding-top: 80px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 0 16px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat .number {
    font-size: 2rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .project-filters {
    justify-content: center;
  }
}