@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&family=Outfit:wght@100;200;300;400;500;700;900&display=swap');

:root {
  --bg-primary: #050505;
  --bg-secondary: #0a0a0a;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --accent-color: #6366f1;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-arabic: 'IBM Plex Sans Arabic', sans-serif;
  --font-english: 'Outfit', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --container-width: 1400px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-arabic);
  line-height: 1.6;
  overflow-x: hidden;
  direction: rtl;
  /* Arabic support */
  scroll-behavior: auto;
  /* Required for Lenis */
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

/* Navigation Layout */
.main-header {
  position: fixed;
  top: 2rem;
  left: 5%;
  right: 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  max-width: 1400px;
  margin: 0 auto;
}

.links-notch {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-radius: 2rem;
  padding: 0.8rem 2.5rem;
  transition: var(--transition-smooth);
}

.links-notch:hover {
  background: rgba(255, 255, 255, 0.05);
}

.logo {
  font-family: var(--font-english);
  font-weight: 200;
  /* Light and elegant as requested */
  font-size: 1.25rem;
  letter-spacing: 4px;
  /* Spaced out for a luxury feel */
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  transition: var(--transition-smooth);
}

.nav-links a.active {
  color: var(--text-primary);
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--text-primary);
}

.lang-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-family: var(--font-english);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.lang-switcher a {
  text-decoration: none;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.lang-switcher a:hover {
  color: var(--text-primary);
}

.lang-switcher .active-lang {
  color: var(--text-primary);
  font-weight: 700;
}

.lang-switcher span {
  opacity: 0.3;
}

.mobile-menu-toggle {
  display: none;
}
.header-controls {
  display: flex;
  align-items: center;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(5, 5, 5, 0.4), rgba(5, 5, 5, 0.4)), url('assets/images/download (57).jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: heroReveal 4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  /* Slower 4s */
}

/* Raising text block */
.hero .reveal {
  margin-top: -15vh;
}

.hero-title {
  font-family: var(--font-english);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  letter-spacing: -5px;
  margin-bottom: 0px;
  padding-bottom: 0px;
  line-height: 1;
  /* Tight line height */
  opacity: 0;
  transform: translateY(30px);
  animation: titleReveal 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.8s;
}

.hero-logo-text {
  font-family: var(--font-english);
  font-weight: 100;
  font-size: clamp(3.5rem, 8vw, 6rem);
  letter-spacing: 0.5em;
  margin-right: -0.5em; /* Compensate for letter spacing so it is perfectly centered */
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0px;
  padding-bottom: 0px;
  line-height: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: logoReveal 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.8s;
  text-align: center;
}

@keyframes logoReveal {
  to {
    opacity: 0.9;
    transform: translateY(0);
  }
}

.hero p.hero-subtitle {
  font-size: clamp(0.7rem, 0.9vw, 0.8rem);
  color: rgba(255, 255, 255, 0.55);
  font-weight: 100;
  margin: 0.75rem auto 1.5rem;
  opacity: 0;
  animation: fadeIn 2s ease forwards 2.5s;
}

.hero-cta-container {
  margin-top: 0.5rem;
  opacity: 0;
  animation: fadeIn 2s ease forwards 3s;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 3rem;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  z-index: 1;
}

.hero-cta-btn:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.hero-cta-btn:hover .btn-text-main {
  opacity: 0;
  transform: translateY(-20px);
}

.hero-cta-btn:hover .btn-text-hover {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.15s;
}

@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: -3px;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25vh;
  background: linear-gradient(transparent, var(--bg-primary));
  pointer-events: none;
}

@keyframes heroReveal {
  from {
    min-height: 50vh;
    opacity: 0;
  }

  /* Start from 50vh for smoother expansion */
  to {
    min-height: 100vh;
    opacity: 1;
  }
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

.hero h1.hero-title {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 300;
  /* Elegant and light */
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: -2px;
  max-width: 900px;
}

.hero p {
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.hero-btns {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 1rem 2.5rem;
  border-radius: 3rem;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--text-primary);
  padding: 1rem 2.5rem;
  border-radius: 3rem;
  text-decoration: none;
  border-radius: 3rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: var(--glass-border);
}

/* Featured Projects Section (Static Grid) */
.projects-section {
  padding: 10rem 2rem 4rem 2rem; /* Reduced bottom padding as requested */
  background-color: #000; /* Matching the about-section below */
  width: 100%;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 4rem;
}

.featured-projects-grid,
.stationary-gallery {
  display: flex;
  height: auto;
  padding: 0;
  justify-content: center;
  gap: 4vw;
  /* Equivalent to the spacing feel of the work page */
}

.stationary-gallery .project-item {
  width: 18vw;
  margin-right: 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

.project-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-secondary);
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-card-image img {
  transform: scale(1.03);
}

.project-card-info h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.project-card-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 200;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 2rem;
  font-size: 0.8rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  background: transparent;
  z-index: 1;
}

.view-all-btn:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.btn-content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  position: relative;
}

.btn-text-main,
.btn-text-hover {
  grid-area: 1 / 1;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-text-main {
  opacity: 1;
}

.btn-text-hover {
  opacity: 0;
  transform: translateY(20px);
}

.view-all-btn:hover .btn-text-main {
  opacity: 0;
  transform: translateY(-20px);
}

.view-all-btn:hover .btn-text-hover {
  opacity: 1;
  transform: translateY(0);
  /* Delayed and smooth entry for the second text */
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.15s;
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Horizontal Gallery Section (Specific to work.html) */
.horizontal-gallery {
  background-color: #000;
  overflow: hidden;
  padding-top: 15vh;
  /* Breathable gap from hero */
  direction: ltr;
  /* West-style scroll for portfolio aesthetics */
}

.gallery-inner {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
}

.gallery-wrapper {
  display: flex;
  height: 85vh;
  /* Slightly taller */
  padding-left: 15vw;
  /* Starting gap */
  padding-right: 15vw;
  /* Added end-buffer for smooth exit */
  align-items: center;
  will-change: transform;
}

.project-item {
  flex-shrink: 0;
  width: 18vw;
  /* Smaller cards as requested */
  margin-right: 5vw;
  /* Spacing for LTR flow */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  /* Match LTR direction for info */
}

.project-image-wrapper {
  width: 100%;
  aspect-ratio: 2 / 3;
  /* Ratio 2:3 for elegant verticality */
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-secondary);
  transition: var(--transition-smooth);
}

.project-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-item:hover .project-image-wrapper img {
  transform: scale(1.05);
}

.project-info {
  margin-top: 2rem;
  font-family: var(--font-arabic);
}

.project-num {
  font-family: var(--font-english);
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

.project-info h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
}

.project-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 200;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.links-notch:hover {
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .main-header {
    top: 1rem;
    left: 2%;
    right: 2%;
  }
}

@media (max-width: 768px) {
  .main-header {
    padding: 1rem 1.5rem;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  
  .header-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 100;
  }
  
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
  }

  .links-notch {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 90;
    padding: 0;
  }
  
  .main-header.menu-open .links-notch {
    opacity: 1;
    visibility: visible;
  }
  
  .main-header .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  
  .main-header .nav-links a {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
  }


  .hero h1 {
    font-size: 3rem;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* About Us & Expanding Video Section */
.about-section {
  padding: 8rem 0 25rem 0; /* Standardized 8rem gap as requested */
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000;
}

.about-text-container {
  width: 100%;
  max-width: var(--container-width);
  padding: 0 5%;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.about-text-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  /* Text above watermark */
}

.about-status-block {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 0.5rem;
  margin-right: 15%; /* Pushing it towards the text from the right edge */
}

.status-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.status-label {
  font-size: 0.75rem; /* Increased size as requested */
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  opacity: 0.5;
  font-family: var(--font-arabic);
}

.status-value {
  font-size: 0.85rem; /* Increased size as requested */
  font-family: var(--font-english);
  color: var(--text-primary);
  opacity: 0.8;
  letter-spacing: 0.05em;
}

.about-watermark {
  font-family: var(--font-english);
  font-size: 9vw;
  /* Shrink size as requested */
  font-weight: 800;
  letter-spacing: 3vw;
  color: var(--text-primary);
  opacity: 0.05;
  /* Ghost-like presence */
  user-select: none;
  pointer-events: none;
  line-height: 0.9;
  /* Slightly more space */
  text-transform: uppercase;
  position: absolute;
  left: 2%; /* Pushed towards the text as requested */
  white-space: nowrap;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Ensure same left alignment for both words */
}

.about-p-small {
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
  color: var(--text-secondary);
  margin-top: 1rem;
  opacity: 0.8;
  text-align: right;
  width: 100%;
}

.about-link {
  margin-top: 2.5rem;
  font-size: 0.75rem;
  color: var(--text-primary);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  transition: all 0.3s ease;
  font-family: var(--font-arabic);
  align-self: flex-start;
  background: transparent;
}

.about-link:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.video-expand-container {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 0;
}

.video-media-wrapper {
  width: 100%;
  /* Stable container width */
  height: 100vh;
  /* Stable container height */
  position: relative;
  overflow: hidden;
  /* Ultra-small central mask: 45% top/bottom and 48% sides */
  clip-path: inset(45% 48% 45% 48% round 120px);
  will-change: clip-path;
  background: #111;
}

body.is-cinema-mode .video-controls {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.video-custom-cursor {
  position: fixed;
  width: 90px; /* Slightly smaller for precision */
  height: 90px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: opacity 0.3s, transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 9999;
  mix-blend-mode: difference;
}

.play-icon {
  width: 35px;
  height: 35px;
  color: black;
  margin-left: 5px; /* Visual centering adjustment for triangle */
}

.video-media-wrapper:hover .video-custom-cursor {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Cinema Mode UI Retreat */
.main-header {
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s ease;
}

body.is-cinema-mode .main-header {
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
}

body.is-cinema-mode .video-overlay {
  opacity: 0;
}

/* Video Controls HUD Enhancement */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 10;
  pointer-events: none;
}

/* Visibility handled via .hud-active class within cinema mode */
body.is-cinema-mode .video-controls.hud-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.video-timeline {
  width: 100%;
  height: 20px; /* Thicker interactive area */
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.video-timeline::after {
  content: '';
  width: 100%;
  height: 1px; /* The visible line */
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
}

.timeline-progress {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  width: 0%;
  background: white;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); /* Subtle glow */
  transform: translateY(-50%);
  z-index: 2;
  transition: width 0.1s linear;
}

.video-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.control-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.5rem 1.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: white;
  color: black;
}

/* Cinema Mode UI Retreat */
body.is-cinema-mode .main-header {
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
}

body.is-cinema-mode .video-overlay {
  opacity: 0;
}

@media (max-width: 768px) {
  .video-custom-cursor { display: none; }
  .video-controls { padding: 1.5rem; }
}

.video-media-wrapper img,
.video-media-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  /* Subtle zoom for depth */
  transition: transform 0.5s ease;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .video-media-wrapper {
    width: 90%;
    border-radius: 20px;
  }

  .about-content .section-title {
    font-size: 1.6rem;
  }
}

/* Fix for Browser Autofill White Background - Pure Black Override */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: white !important;
  -webkit-box-shadow: 0 0 0px 1000px #000 inset !important;
  box-shadow: 0 0 0px 1000px #000 inset !important;
  caret-color: white !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* Footer Shared Styles */
.footer-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 200;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.85;
  display: inline-block;
}

.footer-link:hover {
  opacity: 1;
  transform: translateX(-10px);
  color: white;
}

.footer-col-title {
  display: block;
  margin-bottom: 2rem;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-secondary);
  opacity: 0.6;
  font-family: var(--font-english);
}

.footer-active {
  color: white !important;
  opacity: 1 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
  }
  
  #prestige-footer {
    padding: 3rem 5% 2rem 5% !important;
  }
  
  .footer-col-title {
    margin-bottom: 0.75rem !important;
    font-size: 0.5rem !important;
  }
  
  #prestige-footer .footer-link,
  #prestige-footer .footer-col > div {
    font-size: 0.65rem !important;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start !important;
    padding-top: 1rem !important;
  }
}