/* =========================================================
   LAROU ENTERPRISES LLC
   COMPLETE WEBSITE STYLESHEET
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
  --black: #080808;
  --black-soft: #111111;
  --charcoal: #181818;
  --charcoal-light: #242424;

  --white: #ffffff;
  --off-white: #f7fbff;
  --cream: #edf6ff;

  --gold: #4DA3FF;
  --gold-light: #7CC4FF;
  --gold-dark: #1E74E8;

  --gray: #6e6e6e;
  --gray-light: #d8d8d8;
  --gray-dark: #3d3d3d;

  --border-light: rgba(255, 255, 255, 0.12);
  --border-dark: rgba(0, 0, 0, 0.1);

  --shadow-small: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 20px 50px rgba(0, 0, 0, 0.13);
  --shadow-large: 0 30px 80px rgba(0, 0, 0, 0.22);

  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;

  --container-width: 1180px;
}


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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--off-white);
  color: var(--black-soft);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

section {
  position: relative;
}

::selection {
  background: var(--gold);
  color: var(--white);
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--white);
  font-weight: 800;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 20px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}


/* =========================================================
   REUSABLE LAYOUT
========================================================= */

.container {
  width: min(100% - 40px, var(--container-width));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 55px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 20px;
  color: var(--black);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-heading > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--gray);
  font-size: 1.05rem;
}

.section-heading.centered > p:not(.eyebrow) {
  margin-inline: auto;
}

.section-heading.light h2 {
  color: var(--white);
}

.section-heading.light > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 35px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.gold-line {
  width: 70px;
  height: 4px;
  margin-bottom: 24px;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    var(--gold-dark),
    var(--gold-light)
  );
}


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

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-align: center;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.button::before {
  position: absolute;
  top: 0;
  left: -130%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  content: "";
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.button:hover::before {
  left: 150%;
}

.button:hover {
  transform: translateY(-3px);
}

.button-gold {
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold)
  );
  color: var(--white);
  box-shadow: 0 14px 34px rgba(77, 163, 255, 0.3);
}

.button-gold:hover {
  box-shadow: 0 18px 45px rgba(77, 163, 255, 0.42);
}

.button-dark {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 13px 35px rgba(0, 0, 0, 0.18);
}

.button-dark:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(77, 163, 255, 0.25);
}

.button-light {
  border-color: rgba(0, 0, 0, 0.12);
  background: var(--white);
  color: var(--black);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.button-outline:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.button.full {
  width: 100%;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
  font-size: 0.94rem;
  font-weight: 800;
}

.text-link::after {
  content: "â†’";
  transition: transform var(--transition);
}

.text-link:hover {
  color: var(--gold-dark);
}

.text-link:hover::after {
  transform: translateX(6px);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(18px);
  transition:
    background-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.96);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.nav-wrap {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  min-width: 240px;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand img {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border: 1px solid rgba(77, 163, 255, 0.4);
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 0 30px rgba(77, 163, 255, 0.12);
}

.brand span {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font-size: 0.96rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.brand small {
  margin-top: 5px;
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
  transition: color var(--transition);
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  bottom: 22px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transition: width var(--transition);
}

.main-nav > a:not(.nav-cta):hover,
.main-nav > a:not(.nav-cta).active {
  color: var(--white);
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta).active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 7px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
  transition:
    transform var(--transition),
    background-color var(--transition),
    box-shadow var(--transition);
}

.nav-cta:hover {
  background: var(--gold-light);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(77, 163, 255, 0.3);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 10px;
  background: var(--white);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


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

.hero {
  position: relative;
  display: flex;
  min-height: 820px;
  align-items: center;
  overflow: hidden;
  padding: 155px 0 90px;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(77, 163, 255, 0.14),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 25%,
      rgba(77, 163, 255, 0.12),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #050505 0%,
      #111111 55%,
      #080808 100%
    );
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );
  background-size: 55px 55px;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8),
    transparent
  );
}

.hero-shape {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(77, 163, 255, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.hero-shape-one {
  top: 8%;
  right: -180px;
  width: 520px;
  height: 520px;
  animation: floatShape 8s ease-in-out infinite;
}

.hero-shape-two {
  bottom: -200px;
  left: -180px;
  width: 440px;
  height: 440px;
  animation: floatShape 10s ease-in-out infinite reverse;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.2fr) minmax(350px, 0.8fr);
  gap: 80px;
}

.hero-copy {
  max-width: 750px;
}

.hero-copy .eyebrow {
  margin-bottom: 23px;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(3.25rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.hero h1 span {
  display: block;
  color: var(--gold-light);
  text-shadow: 0 0 50px rgba(77, 163, 255, 0.18);
}

.hero-text {
  max-width: 680px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.85;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.hero-contact a {
  color: var(--gold-light);
  font-weight: 750;
}

.hero-contact a:hover {
  color: var(--white);
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 55px 42px;
  border: 1px solid rgba(77, 163, 255, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.025)
    );
  box-shadow: var(--shadow-large);
  text-align: center;
  backdrop-filter: blur(22px);
  animation: floatCard 5.5s ease-in-out infinite;
}

.hero-card::before {
  position: absolute;
  top: -160px;
  right: -130px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(77, 163, 255, 0.15);
  filter: blur(10px);
  content: "";
}

.hero-card::after {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(77, 163, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.hero-logo-wrap {
  position: relative;
  z-index: 1;
  width: 145px;
  height: 145px;
  margin: 0 auto 28px;
  padding: 12px;
  border: 1px solid rgba(77, 163, 255, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  box-shadow:
    0 0 0 12px rgba(77, 163, 255, 0.04),
    0 0 50px rgba(77, 163, 255, 0.18);
}

.hero-logo-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.hero-card > p {
  position: relative;
  z-index: 1;
  margin-bottom: 7px;
  color: var(--gold-light);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-card h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.1;
}

.hero-card > strong {
  position: relative;
  z-index: 1;
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
}

.hero-card-line {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 2px;
  margin: 23px auto;
  background: var(--gold);
}

.hero-card small {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  line-height: 1.6;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--black-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid span {
  position: relative;
  padding: 22px 15px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.trust-grid span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  content: "";
  transform: translateY(-50%);
}


/* =========================================================
   STATISTICS
========================================================= */

.stats-section {
  padding: 50px 0;
  background: var(--white);
}

.stats-grid {
  display: grid;
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-small);
  grid-template-columns: repeat(4, 1fr);
}

.stat-card {
  position: relative;
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 28px 20px;
  text-align: center;
}

.stat-card:not(:last-child)::after {
  position: absolute;
  top: 25%;
  right: 0;
  width: 1px;
  height: 50%;
  background: var(--border-dark);
  content: "";
}

.stat-card strong {
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-card span {
  max-width: 180px;
  color: var(--gray);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
}


/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 75%,
      rgba(77, 163, 255, 0.09),
      transparent 23%
    ),
    var(--off-white);
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 90px;
}

.about-image {
  position: relative;
  max-width: 475px;
  margin-inline: auto;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--cream);
  box-shadow: var(--shadow-large);
}

.image-frame::before {
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 15px;
  content: "";
  pointer-events: none;
}

.image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.34),
    transparent 42%
  );
  content: "";
}

.image-frame img {
  width: 100%;
  height: 585px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
}

.about-image:hover .image-frame img {
  transform: scale(1.035);
}

.founder-card {
  position: relative;
  z-index: 4;
  width: calc(100% - 44px);
  margin: -65px auto 0;
  padding: 27px;
  border: 1px solid rgba(77, 163, 255, 0.25);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-medium);
  text-align: center;
  backdrop-filter: blur(14px);
}

.founder-card h3 {
  margin-bottom: 5px;
  color: var(--black);
  font-size: 1.3rem;
}

.founder-card p {
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 0.83rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-card span {
  color: var(--gray);
  font-size: 0.75rem;
}

.about-content h2 {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--black);
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.about-content > p:not(.eyebrow) {
  margin-bottom: 18px;
  color: var(--gray-dark);
  font-size: 1.02rem;
  line-height: 1.85;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  margin-top: 35px;
}


/* =========================================================
   SERVICES SECTION
========================================================= */

.section-dark {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(77, 163, 255, 0.13),
      transparent 25%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(77, 163, 255, 0.08),
      transparent 22%
    ),
    var(--black-soft);
}

.section-dark::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    );
  background-size: 52px 52px;
  content: "";
  pointer-events: none;
}

.section-dark .container {
  position: relative;
  z-index: 1;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 350px;
  overflow: hidden;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.025)
    );
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.17);
  backdrop-filter: blur(15px);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    box-shadow var(--transition);
}

.service-card::before {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(77, 163, 255, 0.12);
  content: "";
  transition:
    transform var(--transition-slow),
    background-color var(--transition);
}

.service-card:hover {
  border-color: rgba(77, 163, 255, 0.5);
  background:
    linear-gradient(
      145deg,
      rgba(77, 163, 255, 0.12),
      rgba(255, 255, 255, 0.035)
    );
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.32);
  transform: translateY(-9px);
}

.service-card:hover::before {
  background: rgba(77, 163, 255, 0.2);
  transform: scale(1.22);
}

.service-number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: rgba(255, 255, 255, 0.12);
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1;
}

.service-icon {
  display: flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border: 1px solid rgba(77, 163, 255, 0.34);
  border-radius: 13px;
  background: rgba(77, 163, 255, 0.1);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(-4deg) scale(1.06);
}

.service-card h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.2;
}

.service-card > p {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.75;
}

.service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--gold-light);
  font-size: 0.84rem;
  font-weight: 850;
}

.service-card > a::after {
  content: "â†’";
  transition: transform var(--transition);
}

.service-card > a:hover::after {
  transform: translateX(6px);
}


/* =========================================================
   BOOKS SECTION
========================================================= */

.books-section {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 90% 80%,
      rgba(77, 163, 255, 0.1),
      transparent 24%
    ),
    var(--off-white);
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.book-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-small);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.book-card:hover {
  border-color: rgba(77, 163, 255, 0.48);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.16);
  transform: translateY(-10px);
}

.book-image {
  position: relative;
  display: flex;
  height: 390px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 34px;
  background:
    radial-gradient(
      circle at 50% 25%,
      rgba(77, 163, 255, 0.16),
      transparent 37%
    ),
    linear-gradient(
      145deg,
      #171717,
      #090909
    );
}

.book-image::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 35%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55),
    transparent
  );
  content: "";
}

.book-image img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(0, 0, 0, 0.45));
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.book-card:hover .book-image img {
  filter: drop-shadow(0 28px 28px rgba(0, 0, 0, 0.55));
  transform: translateY(-8px) rotate(-2deg) scale(1.035);
}

.book-category {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  padding: 8px 12px;
  border: 1px solid rgba(77, 163, 255, 0.38);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.78);
  color: var(--gold-light);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.book-content {
  display: flex;
  min-height: 305px;
  flex-direction: column;
  padding: 28px;
}

.book-content h3 {
  margin-bottom: 13px;
  color: var(--black);
  font-size: 1.35rem;
  line-height: 1.25;
}

.book-content p {
  margin-bottom: 25px;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

.book-content .button {
  margin-top: auto;
}


/* =========================================================
   FEATURED BUSINESSES
========================================================= */

.businesses-section {
  background: var(--white);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.business-card {
  position: relative;
  display: grid;
  min-height: 360px;
  align-items: center;
  overflow: hidden;
  padding: 42px;
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  background: var(--off-white);
  box-shadow: var(--shadow-small);
  grid-template-columns: 145px 1fr;
  gap: 35px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.business-card:hover {
  border-color: rgba(77, 163, 255, 0.42);
  box-shadow: var(--shadow-medium);
  transform: translateY(-7px);
}

.business-card.featured {
  border-color: rgba(77, 163, 255, 0.32);
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(77, 163, 255, 0.18),
      transparent 30%
    ),
    var(--black-soft);
  color: var(--white);
}

.business-card-logo {
  position: relative;
  z-index: 1;
  display: flex;
  width: 145px;
  height: 145px;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border: 1px solid rgba(77, 163, 255, 0.3);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.business-card-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.business-card-content {
  position: relative;
  z-index: 1;
}

.business-card-content h3 {
  margin-bottom: 15px;
  color: var(--black);
  font-size: 1.65rem;
  line-height: 1.15;
}

.business-card-content > p:not(.eyebrow) {
  margin-bottom: 25px;
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.75;
}

.business-card.featured h3 {
  color: var(--white);
}

.business-card.featured .business-card-content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.66);
}


/* =========================================================
   STATEMENT SECTION
========================================================= */

.statement {
  position: relative;
  display: flex;
  min-height: 560px;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(77, 163, 255, 0.2),
      transparent 36%
    ),
    linear-gradient(
      130deg,
      #050505,
      #151515
    );
  color: var(--white);
  text-align: center;
}

.statement::before,
.statement::after {
  position: absolute;
  border: 1px solid rgba(77, 163, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.statement::before {
  top: -260px;
  left: -100px;
  width: 600px;
  height: 600px;
}

.statement::after {
  right: -160px;
  bottom: -310px;
  width: 680px;
  height: 680px;
}

.statement-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );
  background-size: 60px 60px;
}

.statement .container {
  position: relative;
  z-index: 2;
  max-width: 950px;
}

.statement p {
  margin-bottom: 25px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.statement h2 {
  margin-bottom: 36px;
  color: var(--white);
  font-size: clamp(2.7rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.06em;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(77, 163, 255, 0.11),
      transparent 25%
    ),
    var(--off-white);
}

.contact-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.75fr);
  gap: 90px;
}

.contact-grid .section-heading {
  margin-bottom: 0;
}

.contact-points {
  display: grid;
  gap: 17px;
  margin-top: 35px;
}

.contact-points p {
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.7);
  color: var(--gray);
  font-size: 0.9rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.contact-points strong {
  display: block;
  margin-bottom: 4px;
  color: var(--black);
  font-size: 0.94rem;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 35px;
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-medium);
}

.contact-card > a:not(.button),
.contact-card > div {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--border-dark);
  border-radius: 11px;
  background: var(--off-white);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background-color var(--transition);
}

.contact-card > a:not(.button):hover {
  border-color: rgba(77, 163, 255, 0.45);
  background: var(--white);
  transform: translateX(5px);
}

.contact-card small {
  margin-bottom: 7px;
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--black);
  font-size: 0.94rem;
  line-height: 1.45;
  word-break: break-word;
}


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

.site-footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #050505;
  color: var(--white);
}

.footer-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(77, 163, 255, 0.28);
  border-radius: 50%;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.79rem;
  font-weight: 700;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.74rem;
  text-align: center;
}


/* =========================================================
   BACK TO TOP BUTTON
========================================================= */

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(77, 163, 255, 0.4);
  border-radius: 50%;
  background: var(--black);
  color: var(--gold-light);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity var(--transition),
    transform var(--transition),
    background-color var(--transition),
    color var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-4px);
}


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

/*
  Elements remain visible if JavaScript fails.
  JavaScript will add the "js-enabled" class to the body.
*/

body.js-enabled .reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

body.js-enabled .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.card-grid .reveal:nth-child(2),
.books-grid .reveal:nth-child(2),
.stats-grid .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.card-grid .reveal:nth-child(3),
.books-grid .reveal:nth-child(3),
.stats-grid .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.card-grid .reveal:nth-child(4),
.books-grid .reveal:nth-child(4),
.stats-grid .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.card-grid .reveal:nth-child(5) {
  transition-delay: 0.32s;
}

.card-grid .reveal:nth-child(6) {
  transition-delay: 0.4s;
}


/* =========================================================
   KEYFRAME ANIMATIONS
========================================================= */

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

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

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-18px) rotate(5deg);
  }
}


/* =========================================================
   TABLET RESPONSIVENESS
========================================================= */

@media (max-width: 1100px) {
  .main-nav {
    gap: 17px;
  }

  .main-nav > a:not(.nav-cta) {
    font-size: 0.8rem;
  }

  .hero-grid {
    gap: 50px;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  }

  .books-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-card {
    grid-template-columns: 115px 1fr;
    gap: 25px;
    padding: 32px;
  }

  .business-card-logo {
    width: 115px;
    height: 115px;
  }
}


@media (max-width: 950px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 84px;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    align-items: stretch;
    overflow: hidden;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(8, 8, 8, 0.98);
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 0.45s ease,
      opacity var(--transition);
  }

  .main-nav.open {
    max-height: 620px;
    padding: 15px 20px 28px;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav > a:not(.nav-cta) {
    padding: 17px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 145px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    max-width: 520px;
    margin-inline: auto;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 75px;
  }

  .about-content {
    max-width: 760px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card:nth-child(2)::after {
    display: none;
  }

  .stat-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border-dark);
  }

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

  .business-card {
    grid-template-columns: 145px 1fr;
  }

  .business-card-logo {
    width: 145px;
    height: 145px;
  }
}


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

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, var(--container-width));
  }

  .section {
    padding: 78px 0;
  }

  .nav-wrap {
    min-height: 76px;
  }

  .main-nav {
    top: 76px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 45px;
    height: 45px;
    flex-basis: 45px;
  }

  .brand strong {
    max-width: 190px;
    font-size: 0.78rem;
  }

  .brand small {
    font-size: 0.55rem;
  }

  .hero {
    padding: 130px 0 75px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-card {
    padding: 42px 25px;
  }

  .hero-logo-wrap {
    width: 120px;
    height: 120px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .hero-contact > span:first-of-type {
    display: none;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid span {
    padding: 18px 8px;
    font-size: 0.64rem;
  }

  .trust-grid span:nth-child(2)::after {
    display: none;
  }

  .trust-grid span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stats-section {
    padding: 30px 0;
  }

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

  .stat-card {
    min-height: 130px;
  }

  .stat-card:not(:last-child) {
    border-bottom: 1px solid var(--border-dark);
  }

  .stat-card::after {
    display: none;
  }

  .about-grid {
    gap: 65px;
  }

  .image-frame img {
    height: 500px;
  }

  .about-content h2 {
    font-size: clamp(2.4rem, 12vw, 3.7rem);
  }

  .about-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .about-actions .button {
    width: 100%;
  }

  .card-grid,
  .books-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 320px;
  }

  .book-image {
    height: 430px;
  }

  .book-content {
    min-height: auto;
  }

  .business-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .business-card-logo {
    width: 130px;
    height: 130px;
    margin-inline: auto;
  }

  .business-card-content .eyebrow {
    justify-content: center;
  }

  .statement {
    min-height: 510px;
    padding: 85px 0;
  }

  .statement h2 {
    font-size: clamp(2.7rem, 14vw, 4.5rem);
  }

  .contact-grid {
    gap: 55px;
  }

  .contact-card {
    padding: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}


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

@media (max-width: 430px) {
  .brand small {
    display: none;
  }

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

  .hero-card h2 {
    font-size: 1.65rem;
  }

  .image-frame img {
    height: 430px;
  }

  .founder-card {
    width: calc(100% - 24px);
    padding: 22px 15px;
  }

  .book-image {
    height: 375px;
    padding: 27px;
  }

  .service-card,
  .business-card {
    padding: 27px;
  }

  .contact-card strong {
    font-size: 0.83rem;
  }
}


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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body.js-enabled .reveal {
    opacity: 1;
    transform: none;
  }
}
/* =========================================================
   BUTTON AND ARROW FIX
   Paste this at the very bottom of style.css
========================================================= */

/* Remove corrupted arrow symbols */

.text-link::after,
.service-card > a::after {
  content: "";
}


/* Create clean arrows without special characters */

.text-link::after,
.service-card > a::after {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}


/* Arrow movement on hover */

.text-link:hover::after,
.service-card > a:hover::after {
  transform: translateX(5px) rotate(45deg);
}


/* Service links */

.service-card > a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  color: var(--gold-light);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.2;
}


/* Main royal-blue buttons */

.button-gold,
.nav-cta {
  border: 1px solid transparent;
  background: linear-gradient(
    135deg,
    #7cc4ff,
    #4da3ff
  );
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(77, 163, 255, 0.32);
}


/* Blue button hover */

.button-gold:hover,
.nav-cta:hover {
  border-color: #91ceff;
  background: linear-gradient(
    135deg,
    #91ceff,
    #5aaeff
  );
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(77, 163, 255, 0.48);
}


/* Dark buttons with blue hover */

.button-dark {
  border: 1px solid #080808;
  background: #080808;
  color: #ffffff;
}

.button-dark:hover {
  border-color: #4da3ff;
  background: #4da3ff;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(77, 163, 255, 0.3);
}


/* Outline buttons */

.button-outline {
  border: 1px solid rgba(124, 196, 255, 0.55);
  background: rgba(77, 163, 255, 0.08);
  color: #ffffff;
}

.button-outline:hover {
  border-color: #4da3ff;
  background: #4da3ff;
  color: #ffffff;
}


/* Service icon hover */

.service-card:hover .service-icon {
  border-color: #7cc4ff;
  background: #4da3ff;
  color: #ffffff;
  transform: rotate(-4deg) scale(1.06);
}


/* Back-to-top button */

.back-to-top {
  border-color: rgba(77, 163, 255, 0.5);
  color: #7cc4ff;
}

.back-to-top:hover {
  background: #4da3ff;
  color: #ffffff;
}


/* Prevent button text from wrapping awkwardly */

.button,
.nav-cta,
.service-card > a,
.text-link {
  white-space: nowrap;
}
/*=========================
PRELOADER
=========================*/

#preloader{

    position:fixed;
    inset:0;

    background:#080808;

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:999999;

    transition:opacity .8s ease,
               visibility .8s ease;

}

#preloader.hide{

    opacity:0;
    visibility:hidden;

}

.loader-content{

    text-align:center;

}

.loader-content img{

    width:120px;

    margin-bottom:30px;

    animation:floatLogo 2s ease-in-out infinite;

}

.loader-content h1{

    color:#ffffff;

    font-size:72px;

    font-weight:900;

    letter-spacing:8px;

    margin-bottom:10px;

}

.loader-content p{

    color:#7CC4FF;

    letter-spacing:6px;

    font-size:15px;

    margin-bottom:35px;

}

.loader-line{

    width:260px;

    height:4px;

    background:rgba(255,255,255,.08);

    border-radius:20px;

    overflow:hidden;

}

.loader-line span{

    display:block;

    width:0;

    height:100%;

    background:linear-gradient(
        90deg,
        #4DA3FF,
        #7CC4FF
    );

    animation:loading 2s ease forwards;

}

@keyframes loading{

    from{

        width:0;

    }

    to{

        width:100%;

    }

}

@keyframes floatLogo{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

}/* =========================================================
 /* =========================================================
   LAROU ENTERPRISES CSS-ONLY PRELOADER
========================================================= */

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #050505;

  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  animation: preloaderExit 0.8s ease 2.4s forwards;
}

.loader-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  text-align: center;
}

.loader-content img {
  width: 130px;
  height: 130px;

  margin-bottom: 34px;

  background: #ffffff;
  object-fit: contain;

  animation: loaderLogoFloat 1.8s ease-in-out infinite;
}

.loader-content h1 {
  margin: 0 0 14px;

  color: #ffffff;

  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;

  line-height: 1;
  letter-spacing: 0.14em;
}

.loader-content p {
  margin: 0 0 34px;

  color: #7cc4ff;

  font-size: clamp(0.7rem, 2vw, 0.95rem);
  font-weight: 700;

  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.loader-line {
  width: min(280px, 72vw);
  height: 4px;

  overflow: hidden;

  border-radius: 999px;

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

.loader-line span {
  display: block;

  width: 0;
  height: 100%;

  border-radius: inherit;

  background: linear-gradient(
    90deg,
    #1e74e8,
    #4da3ff,
    #7cc4ff
  );

  animation: loaderProgress 2s ease forwards;
}

@keyframes loaderProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

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

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

@keyframes preloaderExit {
  0% {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  99% {
    opacity: 0;
    visibility: visible;
    pointer-events: none;
  }

  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  #preloader {
    animation-duration: 0.01ms;
    animation-delay: 0.5s;
  }

  .loader-content img,
  .loader-line span {
    animation-duration: 0.01ms;
  }
}