/* =========================================================
   ROOT VARIABLES / DESIGN TOKENS
========================================================= */

:root {
  --bg: #090909;
  --bg-elevated: #111111;

  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --surface-soft: rgba(255, 255, 255, 0.03);

  --text: #f5f5f5;
  --text-soft: rgba(255, 255, 255, 0.88);
  --muted: rgba(255, 255, 255, 0.64);

  --line: rgba(255, 215, 0, 0.14);
  --line-strong: rgba(255, 215, 0, 0.22);

  --accent: #d4af37;
  --accent-2: #ffd700;

  /* Reduced GPU-heavy glow */
  --gold-glow: 0 0 10px rgba(255, 215, 0, 0.16);

  /* Lighter shadows for smoother scrolling */
  --shadow: 0 14px 36px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 8px 22px rgba(0, 0, 0, 0.22);

  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;

  --max-width: 1180px;
}

/* =========================================================
   GLOBAL RESET / BASE
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;

  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);

  background:
    radial-gradient(
      circle at top left,
      rgba(212, 175, 55, 0.09),
      transparent 26%
    ),
    radial-gradient(
      circle at top right,
      rgba(255, 215, 0, 0.05),
      transparent 24%
    ),
    linear-gradient(
      180deg,
      #050505 0%,
      #090909 55%,
      #0b0b0b 100%
    );

  overflow-x: hidden;

  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;

  /*
    Creates independent paint layer.
    Helps reduce repaint cost during scroll.
  */
  transform: translateZ(0);
}

/* =========================================================
   MEDIA ELEMENTS
========================================================= */

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

/* Accessible keyboard focus */

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

/* =========================================================
   LAYOUT HELPERS
========================================================= */

.container {
  max-width: var(--max-width);
}

.text-soft {
  color: var(--muted);
}

/* =========================================================
   NAVIGATION
========================================================= */

.site-nav {
  /*
    Backdrop blur is expensive.
    Lowered substantially for smoother scroll.
  */

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  background: rgba(10, 10, 10, 0.84);

  border-bottom: 1px solid rgba(255, 255, 255, 0.04);

  transform: translateZ(0);
}

.navbar-brand,
.brand-logo {
  letter-spacing: 0.02em;
}

/* Added for icon integration */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 auto;
  display: block;
}

.nav-link {
  color: rgba(255, 255, 255, 0.78) !important;

  padding: 1em 0;

  border-bottom: 2px solid transparent;

  transition: color 0.16s linear;
}

.nav-link {
    border-bottom: 2px solid white;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-2) !important;

  /*
    Removed text-shadow here.
    Text shadow repainting during scroll is expensive.
  */
}

.navbar-collapse .btn {
  margin-top: 1em;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
  border-radius: 999px;

  font-weight: 600;

  padding-top: 0.8rem;
  padding-bottom: 0.8rem;

  transform: translateZ(0);

  /*
    Restrict transitions only to transform.
    Avoid animating paint-heavy properties.
  */
  transition: transform 0.18s ease;
}

.btn-primary {
  border: 0;

  color: #101010;

  background: linear-gradient(
    135deg,
    var(--accent),
    var(--accent-2)
  );

  /*
    Reduced shadow complexity
  */
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.14);
}

.btn-primary:hover {
  color: #101010;

  transform: translateY(-1px);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.18);

  color: #fff;

  background: rgba(255, 255, 255, 0.02);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.06);

  border-color: rgba(255, 255, 255, 0.24);

  color: #fff;
}

.btn-glass {
  border: 1px solid rgba(255, 215, 0, 0.18);

  color: var(--accent-2);

  background: rgba(255, 215, 0, 0.05);
}

.btn-glass:hover {
  background: rgba(255, 215, 0, 0.08);
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

.eyebrow {
  margin-bottom: 0;

  text-transform: uppercase;
  letter-spacing: 0.18em;

  font-size: 0.75rem;

  color: rgba(255, 255, 255, 0.68);
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
  position: relative;

  min-height: 100svh;

  display: flex;
  align-items: center;

  overflow: clip;
  isolation: isolate;

  contain: layout paint;
}

.hero-split {
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 215, 0, 0.08),
      transparent 24%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(212, 175, 55, 0.06),
      transparent 24%
    ),
    linear-gradient(
      180deg,
      #050505 0%,
      #090909 55%,
      #0b0b0b 100%
    );
}

/* =========================================================
   HERO BACKGROUND LAYER
========================================================= */

.hero-bg-layer {
  position: absolute;
  inset: 0;

  z-index: -2;

  overflow: hidden;

  transform: translateZ(0);
}

/*
  Major performance optimization:
  - Removed filter
  - Reduced scaling
  - GPU accelerated only
*/

.hero-bg-image {
  width: 100%;
  height: 108%;

  object-fit: cover;
  object-position: center;

  transform: translate3d(0, 0, 0) scale(1.02);

  backface-visibility: hidden;
}

/* Overlay */

.hero-bg-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.88) 0%,
      rgba(5, 5, 5, 0.7) 42%,
      rgba(5, 5, 5, 0.42) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12),
      rgba(0, 0, 0, 0.44)
    );
}

/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content-wrap,
.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-title {
  max-width: 12.5ch;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero-text {
  max-width: 62ch;

  color: var(--muted);

  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  align-items: flex-start;
}

/* =========================================================
   DECORATIVE ORBS
========================================================= */

/*
  Heavy blur animations are expensive.
  Greatly simplified.
*/

.hero-orb {
  position: absolute;

  border-radius: 999px;

  pointer-events: none;

  opacity: 0.22;

  z-index: 1;

  transform: translateZ(0);
}

.hero-orb-one {
  width: 260px;
  height: 260px;

  top: 8%;
  right: -90px;

  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.12),
    transparent 68%
  );

  animation: floatOne 28s linear infinite;
}

.hero-orb-two {
  width: 200px;
  height: 200px;

  bottom: 8%;
  left: -80px;

  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.1),
    transparent 68%
  );

  animation: floatTwo 32s linear infinite;
}

/* =========================================================
   HERO CARD
========================================================= */

.hero-card-col {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  width: 100%;
  max-width: 460px;

  margin-inline: auto;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 215, 0, 0.08);

  border-radius: 28px;

  /*
    Smaller shadow.
    Removes huge paint area.
  */
  box-shadow: var(--shadow-soft);

  /*
    Backdrop blur reduced heavily.
  */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  overflow: hidden;

  position: relative;
  z-index: 4;

  transform: translateZ(0);

  transition: transform 0.18s ease;
}

.hero-card:hover {
  transform: translateY(-2px);
}

.hero-card-top {
  display: flex;
  gap: 0.5rem;

  padding: 1rem 1.2rem;

  border-bottom: 1px solid rgba(255, 215, 0, 0.1);

  background: rgba(255, 255, 255, 0.02);
}

/* Window dots */

.dot {
  width: 12px;
  height: 12px;

  border-radius: 50%;
}

.dot-red {
  background: #ff5f57;
}

.dot-yellow {
  background: #febc2e;
}

.dot-green {
  background: #28c840;
}

.hero-card-body {
  padding: 1.5rem;
}

.card-label {
  margin-bottom: 0.35rem;

  color: rgba(255, 255, 255, 0.62);

  text-transform: uppercase;
  letter-spacing: 0.14em;

  font-size: 0.72rem;
}

.hero-card-text {
  color: rgba(255, 255, 255, 0.76);

  line-height: 1.7;
}

/* =========================================================
   MINI GRID
========================================================= */

.mini-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 0.8rem;

  margin-top: 1.4rem;
}

.mini-item {
  padding: 0.9rem;

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 215, 0, 0.08);

  text-align: center;

  color: rgba(255, 255, 255, 0.86);
}

/* =========================================================
   CONTENT SECTIONS
========================================================= */

.content-section {
  position: relative;

  padding: 6rem 0;

  contain: layout paint;
}

.image-showcase {
  padding-top: 1rem;
}

.showcase-image-wrap {
  border-radius: var(--radius-lg);

  overflow: hidden;

  border: 1px solid rgba(255, 215, 0, 0.1);

  box-shadow: var(--shadow-soft);

  transform: translateZ(0);
}

.showcase-image {
  width: 100%;
  height: 100%;

  max-height: 440px;

  object-fit: cover;
  object-position: center;

  transform: scale(1.005);
}

.alt-section {
  background: rgba(255, 255, 255, 0.02);

  border-top: 1px solid rgba(255, 215, 0, 0.08);
  border-bottom: 1px solid rgba(255, 215, 0, 0.08);
}

/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
  max-width: 800px;

  margin: 0 auto 3rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);

  font-weight: 700;
  line-height: 1.05;

  margin-top: 0.75rem;
}

.section-subtitle {
  max-width: 760px;

  margin: 1rem auto 0;

  color: var(--muted);

  font-size: 1.05rem;
  line-height: 1.7;

  text-align: center;
}

/* =========================================================
   CARD COMPONENTS
========================================================= */

.service-card,
.info-card,
.about-panel,
.cta-card,
.timeline-item,
.about-card {
  border-radius: 28px;

  background: rgba(255, 255, 255, 0.045);

  border: 1px solid rgba(255, 215, 0, 0.08);

  box-shadow: var(--shadow-soft);

  /*
    Huge optimization:
    Lower backdrop blur dramatically.
  */
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);

  transform: translateZ(0);
}

/* Shared hover transitions */

.service-card,
.info-card,
.about-card,
.timeline-item,
.cta-card {
  transition: transform 0.18s ease;
}

.service-card {
  padding: 1.6rem;

  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover,
.info-card:hover,
.about-card:hover,
.timeline-item:hover,
.cta-card:hover {
  transform: translateY(-2px);
}

/* =========================================================
   SERVICE ICONS
========================================================= */

.service-icon {
  width: 56px;
  height: 56px;

  display: grid;
  place-items: center;

  border-radius: 18px;

  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.24),
    rgba(255, 215, 0, 0.1)
  );

  border: 1px solid rgba(255, 215, 0, 0.1);

  margin-bottom: 1rem;

  font-weight: 700;
  color: #fff;
}

/* Shared paragraph styling */

.service-card p,
.info-card p,
.timeline-item p,
.about-panel p,
.about-card p {
  color: var(--muted);

  line-height: 1.65;
}

/* =========================================================
   PRICING SECTION
========================================================= */

.pricing-section {
  position: relative;
}

.pricing-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 2rem;

  margin-top: 4rem;
}

.pricing-card {
  position: relative;

  display: flex;
  flex-direction: column;

  justify-content: space-between;

  min-height: 100%;

  padding: 2.2rem;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 215, 0, 0.08);

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  box-shadow: var(--shadow-soft);

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);

  border-color: rgba(255, 215, 0, 0.18);

  background: rgba(255, 255, 255, 0.055);
}

/* Featured card */

.pricing-card.featured {
  background:
    linear-gradient(
      180deg,
      rgba(255, 215, 0, 0.08),
      rgba(255, 255, 255, 0.04)
    );

  border-color: rgba(255, 215, 0, 0.22);
}

.pricing-badge {
  position: absolute;

  top: 1.2rem;
  right: 1.2rem;

  padding: 0.45rem 0.8rem;

  border-radius: 999px;

  background: rgba(255, 215, 0, 0.12);

  border: 1px solid rgba(255, 215, 0, 0.18);

  color: var(--accent-2);

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.pricing-card-top {
  margin-bottom: 1.5rem;
}

.pricing-label {
  margin-bottom: 0.8rem;

  color: rgba(255, 255, 255, 0.64);

  text-transform: uppercase;

  letter-spacing: 0.16em;

  font-size: 0.74rem;
}

.pricing-title {
  margin-bottom: 1rem;

  font-size: 1.7rem;

  line-height: 1.1;

  font-weight: 700;
}

.pricing-desc {
  margin: 0;

  color: var(--muted);

  line-height: 1.75;

  font-size: 1rem;
}

.pricing-divider {
  width: 100%;
  height: 1px;

  margin: 1.8rem 0;

  background: rgba(255, 215, 0, 0.08);
}

.pricing-features {
  display: grid;

  gap: 1rem;

  padding: 0;
  margin: 0;

  list-style: none;
}

.pricing-features li {
  position: relative;

  padding-left: 1.5rem;

  color: rgba(255, 255, 255, 0.86);

  line-height: 1.55;
}

.pricing-features li::before {
  content: "";

  position: absolute;

  top: 0.58rem;
  left: 0;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--accent-2);

  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.pricing-bottom {
  margin-top: 2.5rem;
}

.pricing-note {
  margin-bottom: 1.1rem;

  color: rgba(255, 255, 255, 0.58);

  font-size: 0.92rem;
}

.faq-item {
  padding: 2em 0 1em;
  border-bottom: 2px solid var(--muted);
}

/* =========================================================
   PRICING RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {
  .pricing-grid {
    grid-template-columns: 1fr;

    gap: 1.5rem;

    max-width: 720px;

    margin-inline: auto;
  }

  .pricing-card {
    padding: 2rem;
  }
}

@media (max-width: 575.98px) {
  .pricing-grid {
    margin-top: 2.5rem;
  }

  .pricing-card {
    padding: 1.6rem;

    border-radius: 24px;
  }

  .pricing-title {
    font-size: 1.45rem;
  }

  .pricing-desc,
  .pricing-features li {
    font-size: 0.96rem;
  }
}

/* =========================================================
   TIMELINE
========================================================= */

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;

  align-items: flex-start;

  padding: 1.2rem;
}

.timeline-number {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: linear-gradient(
    135deg,
    var(--accent),
    var(--accent-2)
  );

  color: #101010;

  font-weight: 700;
}

/* =========================================================
   PROCESS CARD
========================================================= */

.process-card {
  padding: 1em;

  margin: 0.5em 0 0 0;
}

/* =========================================================
   ABOUT / INFO SECTIONS
========================================================= */

.about-panel {
  padding: 2rem;
}

.info-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 1rem;
}

.info-card {
  padding: 1.4rem;

  min-height: 180px;
}

.about-card {
  overflow: hidden;

  text-align: center;

  padding: 1.35rem;
}

.about-img {
  width: 100%;
  height: 180px;

  object-fit: cover;

  border-radius: 16px;

  transform: translateZ(0);
}

/* =========================================================
   CTA SECTION
========================================================= */

.cta-section {
  padding-top: 1rem;
}

.cta-card {
  padding: 2rem;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding: 2rem 0 3rem;

  background: #050505;

  border-top: 1px solid rgba(255, 215, 0, 0.08);

  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.2rem;

  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);

  transition: color 0.16s linear;
}

.footer-links a:hover {
  color: var(--accent-2);
}

/* Added for icon integration */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
  display: block;
}

/* =========================================================
   REVEAL ANIMATIONS
========================================================= */

/*
  Performance optimized:
  - Small movement
  - No blur
  - Faster settle
  - Transform + opacity only
*/

.reveal,
[data-reveal] {
  opacity: 0;

  backface-visibility: hidden;

  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
}

.reveal[data-reveal="up"],
[data-reveal="up"] {
  transform: translate3d(0, 14px, 0);
}

.reveal[data-reveal="down"],
[data-reveal="down"] {
  transform: translate3d(0, -14px, 0);
}

.reveal[data-reveal="left"],
[data-reveal="left"] {
  transform: translate3d(14px, 0, 0);
}

.reveal[data-reveal="right"],
[data-reveal="right"] {
  transform: translate3d(-14px, 0, 0);
}

.reveal[data-reveal="scale"],
[data-reveal="scale"] {
  transform: scale(0.99);
}

.reveal.active,
[data-reveal].active {
  opacity: 1;

  transform: translate3d(0, 0, 0);
}

/* =========================================================
   STAGGER ANIMATIONS
========================================================= */

.reveal-stagger > * {
  opacity: 0;

  transition:
    opacity 0.45s ease-out,
    transform 0.45s ease-out;
}

.reveal-stagger > *.active {
  opacity: 1;

  transform: translate3d(0, 0, 0);
}

/* =========================================================
   FLOATING ANIMATIONS
========================================================= */

/*
  Very light floating movement
*/

@keyframes floatOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-4px, 4px, 0);
  }
}

@keyframes floatTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(4px, -4px, 0);
  }
}

/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 992px) {
  .nav-link {
    border-bottom: 0;
  }

  .navbar-collapse .btn {
    margin-top: 0;
  }

  .hero-title {
    max-width: 15ch;
  }

  .hero-text {
    max-width: 54ch;
  }
}

/* =========================================================
   TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;

    padding-top: 4.5rem;
    padding-bottom: 4rem;
  }

  /*
    Mobile/tablet hero image enabled again.
    Uses separate mobile-optimized source image.
  */

  .hero-bg-layer {
    display: block;

    opacity: 1;
  }

  .hero-bg-image {
    height: 100%;

    object-fit: cover;

    /*
      Better composition for phones/tablets.
      Focuses toward laptop/device area.
    */
    object-position: center top;

    /*
      Disable parallax transform on mobile.
      Greatly improves scroll smoothness.
    */
    transform: none !important;

    /*
      Darken slightly for text readability.
    */
    filter: brightness(0.42);
  }

  /*
    Stronger overlay for mobile readability.
  */

  .hero-bg-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(5, 5, 5, 0.52) 0%,
        rgba(5, 5, 5, 0.78) 48%,
        rgba(5, 5, 5, 0.96) 100%
      ),
      linear-gradient(
        90deg,
        rgba(5, 5, 5, 0.58) 0%,
        rgba(5, 5, 5, 0.22) 100%
      );
  }

  /*
    Disable floating orbs on mobile/tablet.
    Big performance improvement.
  */

  .hero-orb {
    display: none;
  }

  .hero-copy {
    text-align: center;
  }

  /*
    Reduced mobile hero title sizing.
    Better visual balance.
  */

  .hero-title {
    max-width: 11ch;

    margin-inline: auto;

    font-size: clamp(2.2rem, 7vw, 3.4rem);

    line-height: 0.98;
  }

  .hero-text {
    max-width: 100%;

    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-card-col {
    justify-content: center;
  }

  .hero-card {
    max-width: 100%;
  }

  /*
    Slightly stronger mobile glass effect.
    Helps card separation over image.
  */

  .hero-card {
    background: rgba(12, 12, 12, 0.62);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .showcase-image {
    max-height: 360px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .content-section {
    padding: 4.5rem 0;
  }

  .section-title {
    line-height: 1.08;
  }

  .hero-stats {
    gap: 0.75rem;

    flex-direction: column;
  }

  .stat-card {
    width: 100%;
    min-width: 100%;
  }

  .mini-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.4rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  .showcase-image {
    max-height: 300px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {
  .hero-section {
    padding-top: 3.75rem;
    padding-bottom: 3.5rem;
  }

  .hero-title {
    font-size: clamp(2.35rem, 10vw, 3.1rem);
    max-width: 9.5ch;
  }

  .hero-text {
    font-size: 0.98rem;

    line-height: 1.75;
  }

  .hero-card-body,
  .service-card,
  .about-panel,
  .cta-card,
  .info-card,
  .about-card,
  .timeline-item {
    padding: 1.25rem;

    border-radius: 22px;
  }

  .about-img {
    height: 145px;
  }

  .showcase-image {
    max-height: 240px;
  }

  .btn-lg {
    width: 100%;
  }

  .footer-links {
    gap: 0.9rem;
  }
}

/* =========================================================
   REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;

    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;

    scroll-behavior: auto !important;
  }

  .reveal,
  [data-reveal],
  .reveal-stagger > * {
    opacity: 1 !important;

    transform: none !important;
  }

  .hero-bg-image {
    transform: none !important;
  }
}