@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  --blue: #1B5E9B;
  --navy: #0D2E4A;
  --red: #E8402A;
  --bg: #FAF9F6;
  /* Premium Alabaster white background */
  --text: #1E293B;
  /* Slate 800 for softer premium reading */
  --muted: #64748B;
  /* Slate 500 */
  --border: rgba(226, 232, 240, 0.8);
  /* Slate 200 */
  --pale-blue: #F0F7FF;
  --white: #FFFFFF;
  --green-wa: #25D366;
  --gold: #C5A880;
  /* Subtle warm gold premium accent */

  /* Advanced visual gradients */
  --gradient-sapphire: linear-gradient(135deg, #1B5E9B 0%, #0D2E4A 100%);
  --gradient-gold: linear-gradient(135deg, #C5A880 0%, #A3845C 100%);
  --gradient-soft: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.5) 100%);

  /* Modern soft premium shadows */
  --shadow-sm: 0 2px 8px rgba(13, 46, 74, 0.04);
  --shadow-md: 0 12px 24px -10px rgba(13, 46, 74, 0.08);
  --shadow-lg: 0 20px 40px -15px rgba(13, 46, 74, 0.12);
  --shadow-premium: 0 30px 60px -20px rgba(13, 46, 74, 0.15), 0 0 0 1px rgba(27, 94, 155, 0.05);

  --max-w: 1280px;
  --section-py: 96px;
  /* Generous breathing space */
  --section-px: 24px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-btn: 8px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  /* Custom elegant transition curve */
}

/* ── Reset ──────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.65;
}

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

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

ul {
  list-style: none;
}

/* ── Typography ─────────────────────────────────────────────── */
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 0.5em;
}

body h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

body h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

body h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--blue);
}

body h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1em;
}

body p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 1em;
}

.text-muted {
  color: var(--muted);
  font-size: 14px;
}

.text-body {
  font-size: 1.125rem;
  color: #334155;
  line-height: 1.7;
}

.stats-number {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.03em;
}

/* ── Layout Helpers ─────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--section-px);
}

.section {
  padding-block: var(--section-py);
}

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

.section--bg {
  background: var(--bg);
}

.section--navy {
  background: var(--navy);
}

.section--blue {
  background: var(--blue);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

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

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

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  font-family: inherit;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-primary:hover {
  background: #154e82;
  border-color: #154e82;
  transform: translateY(-1px);
}

.btn-cta {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-cta:hover {
  background: #c73321;
  border-color: #c73321;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--gradient-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-sapphire);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-premium);
  transform: translateY(-6px);
  border-color: rgba(27, 94, 155, 0.15);
}

.card:hover::before {
  opacity: 1;
}

/* ── Section Heading ────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--pale-blue);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-heading {
  text-align: center;
  margin-bottom: 56px;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
  margin-top: 12px;
  max-width: 600px;
  margin-inline: auto;
}

/* ── Navigation ─────────────────────────────────────────────── */
.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 72px !important;
  z-index: 1000 !important;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: transform 0.32s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease !important;
}

.navbar.nav-hidden {
  transform: translateY(-100%) !important;
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(13, 46, 74, 0.12);
}

/* Offset for fixed navbar */

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--section-px);
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.nav-link {
  position: relative;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  border-radius: 6px;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--blue);
  background: var(--pale-blue);
}

.nav-link.active {
  color: var(--blue);
  font-weight: 600;
}

/* Mega menu / dropdown */
.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 40px rgba(13, 46, 74, 0.15);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.dropdown a:hover {
  background: var(--pale-blue);
  color: var(--blue);
}

/* Mega menu for products */
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 48px rgba(13, 46, 74, 0.15);
  width: 640px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.mega-item:hover {
  background: var(--pale-blue);
  color: var(--blue);
}

.mega-item .icon {
  font-size: 20px;
}

.nav-cta {
  margin-left: auto;
}

/* Mobile */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy);
  font-size: 22px;
  margin-left: auto;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--navy);
  margin-bottom: 24px;
}

.nav-mobile-link {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-mobile-link:hover {
  color: var(--blue);
}

.nav-mobile-sub {
  padding-left: 16px;
}

.nav-mobile-sub a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-mobile-sub a:hover {
  color: var(--blue);
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
  z-index: 0;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.ll-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy);
  opacity: 0.25;
  pointer-events: none;
}

/* Global reset */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Ensure hero slides and media cover full viewport */
.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide-media,
.hero-slide img,
.hero-slide picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--section-px);
  /* Remove vertical padding to keep content centered */
  padding-block: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.hero h1 {
  color: var(--white);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  max-width: 650px;
  margin-top: 24px;
  margin-inline: auto;
  line-height: 1.6;
  text-align: center;
  font-weight: 600;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.ll-hero-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-self: flex-end;
  margin-bottom: 35px;
  padding-bottom: 10px !important;
}

.ll-hero-content>div {
  max-width: 920px;
  margin-inline: auto;
}

.ll-hero-btns {
  justify-content: center;
}

.ll-hero-trust {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px 40px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.ll-trust-item {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ll-trust-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 12px;
  flex-shrink: 0;
}

/* Page-interior hero (shorter) */
.hero-inner {
  min-height: 360px;
  display: flex;
  align-items: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.hero-inner-bg {
  position: absolute;
  inset: 0;
}

.hero-inner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero-inner-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--section-px);
  padding-block: 64px;
}

.hero-inner h1 {
  color: var(--white);
}

.hero-inner p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 12px;
  font-size: 17px;
}

/* ── Trust Strip ────────────────────────────────────────────── */
.trust-strip {
  background: var(--pale-blue);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 16px;
}

.trust-strip-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--section-px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.trust-item .trust-dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
}

/* ── Stats ──────────────────────────────────────────────────── */
.stats-section {
  background: var(--navy);
  padding-block: 64px;
}

.stats-grid {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--section-px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 10px;
  font-weight: 500;
}

/* ── About snapshot ─────────────────────────────────────────── */
.ll-about-snapshot {
  gap: 56px;
}

.ll-about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13, 46, 74, 0.16);
  border: 1px solid rgba(13, 46, 74, 0.08);
}

.ll-about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.ll-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 700;
  color: var(--blue);
}

.ll-link-cta:hover {
  text-decoration: underline;
}

/* ── Bottom-half homepage sections ─────────────────────────── */
.ll-section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
}

.ll-section-heading p {
  color: var(--muted);
  font-size: 17px;
  margin-top: 10px;
}

/* SECTION 4 — Product Portfolio */
.ll-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ll-category-card {
  background: var(--white);
  border: 1px solid rgba(13, 46, 74, 0.10);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 10px 26px rgba(13, 46, 74, 0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 210px;
}

.ll-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(13, 46, 74, 0.12);
  border-color: rgba(27, 94, 155, 0.26);
}

.ll-cat-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pale-blue);
  color: var(--blue);
  font-size: 24px;
  margin-bottom: 14px;
}

.ll-cat-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.ll-cat-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.ll-cat-link {
  margin-top: auto;
  font-weight: 800;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ll-cat-link:hover {
  text-decoration: underline;
}

.ll-portfolio-cta {
  margin-top: 26px;
  text-align: center;
}

/* SECTION 5 — Quality strip */
.ll-quality-strip {
  background: var(--pale-blue);
  border-top: 1px solid rgba(13, 46, 74, 0.08);
  border-bottom: 1px solid rgba(13, 46, 74, 0.08);
  padding: 18px 0;
}

.ll-quality-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ll-quality-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.ll-quality-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 94, 155, 0.10);
  color: var(--blue);
  font-size: 32px;
  flex-shrink: 0;
}

.ll-quality-text {
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.ll-quality-right {
  flex-shrink: 0;
}

/* SECTION 6 — Why choose us */
.ll-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ll-feature-card {
  background: var(--white);
  border: 1px solid rgba(13, 46, 74, 0.10);
  border-radius: 14px;
  padding: 22px 20px;
  transition: var(--transition);
  box-shadow: 0 10px 28px rgba(13, 46, 74, 0.06);
}

.ll-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(13, 46, 74, 0.12);
  border-color: rgba(27, 94, 155, 0.24);
}

.ll-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pale-blue);
  color: var(--blue);
  font-size: 24px;
  margin-bottom: 12px;
}

.ll-feature-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
}

.ll-feature-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* SECTION 7 — Testimonials */
.ll-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.ll-testimonial-card {
  background: var(--white);
  border: 1px solid rgba(13, 46, 74, 0.10);
  border-radius: 14px;
  padding: 22px 22px;
  box-shadow: 0 10px 28px rgba(13, 46, 74, 0.06);
  transition: var(--transition);
}

.ll-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(13, 46, 74, 0.12);
  border-color: rgba(27, 94, 155, 0.24);
}

.ll-stars {
  color: #F4B400;
  font-size: 14px;
  display: inline-flex;
  gap: 4px;
  margin-bottom: 10px;
}

.ll-quote {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 16px;
}

.ll-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ll-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.ll-name {
  font-weight: 900;
  color: var(--navy);
  font-size: 14px;
}

.ll-meta {
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

/* SECTION 8 — CTA banner */
.ll-cta-banner {
  background: var(--blue);
  color: #fff;
  padding: 54px 0;
}

.ll-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.ll-cta-title {
  color: #fff;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 900;
  margin-bottom: 10px;
}

.ll-cta-sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  max-width: 720px;
}

.ll-cta-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
}

.ll-btn-whatsapp {
  background: var(--green-wa);
  border-color: var(--green-wa);
  color: #fff;
}

.ll-btn-whatsapp:hover {
  background: #1fb455;
  border-color: #1fb455;
  transform: translateY(-1px);
}

/* Responsive tweaks for new sections */
@media (max-width: 1024px) {
  .ll-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .ll-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .ll-quality-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ll-quality-right {
    width: 100%;
  }

  .ll-quality-right .btn {
    width: 100%;
  }

  .ll-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .ll-cta-actions {
    width: 100%;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .ll-category-grid {
    grid-template-columns: 1fr;
  }

  .ll-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ── About / Products pages ─────────────────────────────────── */
.ll-page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.ll-page-hero .hero-inner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy);
  opacity: 0.55;
  pointer-events: none;
}

.ll-page-hero .hero-inner-bg img {
  opacity: 0.6;
}

.ll-page-hero h1 {
  color: #fff;
}

.ll-page-hero p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 760px;
  margin-inline: auto;
  font-weight: 600;
}

/* Mission / Vision */
.ll-mv {
  gap: 22px;
}

.ll-mv-card {
  background: var(--white);
  border: 1px solid rgba(13, 46, 74, 0.10);
  border-radius: 14px;
  padding: 26px 24px;
  box-shadow: 0 14px 40px rgba(13, 46, 74, 0.08);
}

.ll-mv-card h3 {
  margin-bottom: 10px;
}

/* Story + video */
.ll-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: start;
}

.ll-story-p {
  margin-top: 14px;
  color: var(--text);
}

.ll-video {
  background: var(--white);
  border: 1px solid rgba(13, 46, 74, 0.10);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(13, 46, 74, 0.08);
}

.ll-video-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(13, 46, 74, 0.08);
}

.ll-video-title {
  font-weight: 900;
  color: var(--navy);
}

.ll-video-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.ll-video-chip {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--blue);
  background: var(--pale-blue);
  padding: 6px 10px;
  border-radius: 999px;
}

.ll-video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0b2236;
}

.ll-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Values */
.ll-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ll-value-card {
  background: var(--white);
  border: 1px solid rgba(13, 46, 74, 0.10);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 10px 28px rgba(13, 46, 74, 0.06);
  transition: var(--transition);
}

.ll-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(13, 46, 74, 0.12);
  border-color: rgba(27, 94, 155, 0.24);
}

.ll-value-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pale-blue);
  color: var(--blue);
  font-size: 20px;
  margin-bottom: 12px;
}

.ll-value-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
}

.ll-value-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Products */
.ll-filter-wrap {
  position: sticky;
  top: 72px;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(13, 46, 74, 0.10);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 22px;
}

.ll-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.ll-tab {
  border: 1px solid rgba(13, 46, 74, 0.16);
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}

.ll-tab:hover {
  border-color: rgba(27, 94, 155, 0.38);
  color: var(--blue);
}

.ll-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.ll-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ll-product-card {
  background: #fff;
  border: 1px solid rgba(13, 46, 74, 0.10);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(13, 46, 74, 0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.ll-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(13, 46, 74, 0.12);
  border-color: rgba(27, 94, 155, 0.24);
}

.ll-prod-img {
  height: 190px;
  background: var(--pale-blue);
  position: relative;
}

.ll-prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.ll-prod-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ll-prod-top {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
}

.ll-prod-name {
  font-weight: 900;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.3;
}

.ll-badge {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: var(--pale-blue);
  color: var(--blue);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.ll-prod-desc {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
}

.ll-comp {
  margin-top: 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  opacity: 0.85;
}

.ll-enquire {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

.ll-hidden {
  display: none !important;
}

/* Bulk */
.ll-bulk {
  background: var(--navy);
}

.ll-bulk-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ll-bulk-title {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
}

.ll-bulk-sub {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  max-width: 820px;
}

@media (max-width: 1024px) {
  .ll-story-grid {
    grid-template-columns: 1fr;
  }

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

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

  .ll-bulk-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .ll-filter-wrap {
    top: 64px;
  }
}

@media (max-width: 480px) {
  .ll-values-grid {
    grid-template-columns: 1fr;
  }

  .ll-product-grid {
    grid-template-columns: 1fr;
  }
}

/* Quality page extras */
.ll-cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ll-q-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 26px;
}

.ll-q-step {
  flex: 1 1 200px;
  min-width: 0;
  position: relative;
  padding-right: 24px;
}

.ll-q-step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 18px;
  height: 2px;
  background: rgba(13, 46, 74, 0.25);
  transform: translateY(-50%);
}

.ll-q-step:last-child::after {
  display: none;
}

.ll-q-step-num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 10px;
}

.ll-q-step-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.ll-q-step-desc {
  font-size: 14px;
  color: var(--muted);
}

.ll-q-video {
  margin-top: 8px;
}

.ll-quality-band {
  background: var(--navy);
  color: #fff;
  padding: 60px 0;
}

.ll-quality-band-title {
  color: #fff;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  margin-bottom: 14px;
}

.ll-quality-band-quote {
  font-size: 18px;
  line-height: 1.8;
  font-style: italic;
  max-width: 860px;
  color: rgba(255, 255, 255, 0.95);
}

.ll-quality-band-attrib {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

/* Capabilities page */
.ll-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ll-cap-card {
  background: var(--white);
  border: 1px solid rgba(13, 46, 74, 0.10);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 10px 28px rgba(13, 46, 74, 0.06);
  transition: var(--transition);
}

.ll-cap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(13, 46, 74, 0.12);
  border-color: rgba(27, 94, 155, 0.24);
}

.ll-cap-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pale-blue);
  color: var(--blue);
  font-size: 20px;
  margin-bottom: 12px;
}

.ll-cap-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
}

.ll-cap-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.ll-infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ll-infra-card {
  background: var(--white);
  border: 1px solid rgba(13, 46, 74, 0.10);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 10px 26px rgba(13, 46, 74, 0.06);
}

.ll-infra-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
}

.ll-infra-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.ll-markets {
  color: #fff;
}

.ll-market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ll-market-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(13, 46, 74, 0.4);
  padding: 20px 20px;
}

.ll-market-card h3 {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

@media (max-width: 1024px) {
  .ll-cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .ll-infra-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .ll-q-steps {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .ll-cert-grid {
    grid-template-columns: 1fr;
  }

  .ll-cap-grid {
    grid-template-columns: 1fr;
  }

  .ll-market-grid {
    grid-template-columns: 1fr;
  }
}

/* Leadership page */
.ll-director-grid {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 32px;
  align-items: center;
}

.ll-director-photo {
  display: flex;
  justify-content: center;
}

.ll-avatar-big {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.ll-director-name {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
}

.ll-director-role {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.ll-pullquote {
  display: flex;
  margin-top: 12px;
  padding: 12px 0;
}

.ll-pullquote-bar {
  width: 4px;
  border-radius: 999px;
  background: var(--blue);
  margin-right: 12px;
}

.ll-pullquote p {
  font-style: italic;
  color: var(--navy);
  font-size: 15px;
}

.ll-director-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.ll-director-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(13, 46, 74, 0.18);
}

.ll-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ll-team-card {
  background: var(--white);
  border: 1px solid rgba(13, 46, 74, 0.10);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 10px 26px rgba(13, 46, 74, 0.06);
}

.ll-team-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pale-blue);
  color: var(--blue);
  font-size: 18px;
  margin-bottom: 10px;
}

.ll-team-title {
  font-size: 15px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
}

.ll-team-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.ll-message-band {
  background: var(--bg);
  padding: 60px 0;
  text-align: center;
}

.ll-message-inner h2 {
  color: var(--navy);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  margin-bottom: 18px;
}

.ll-message-quote {
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  max-width: 900px;
  margin: 0 auto 14px;
  line-height: 1.8;
}

.ll-message-signoff {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

/* Contact page */
.ll-contact-hero {
  min-height: 220px;
  background: var(--navy);
}

.ll-contact-hero .hero-inner-bg {
  display: none;
}

.ll-contact-hero h1 {
  color: #fff;
}

.ll-contact-hero p {
  color: rgba(255, 255, 255, 0.86);
}

.ll-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ll-contact-card {
  background: var(--white);
  border: 1px solid rgba(13, 46, 74, 0.10);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 10px 26px rgba(13, 46, 74, 0.06);
}

.ll-contact-card h3 {
  font-size: 16px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
}

.ll-contact-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.ll-contact-card a {
  color: var(--blue);
}

.ll-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pale-blue);
  color: var(--blue);
  font-size: 20px;
  margin-bottom: 10px;
}

.ll-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
  height: 650px;
  max-height: 80vh;
}

.ll-contact-form-wrap {
  background: var(--white);
  border: 1px solid rgba(13, 46, 74, 0.10);
  border-radius: 14px;
  padding: 22px 20px 24px;
  box-shadow: 0 10px 26px rgba(13, 46, 74, 0.06);
  overflow-y: auto;
}

.ll-form-group {
  margin-bottom: 14px;
}

.ll-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.ll-form-group input,
.ll-form-group select,
.ll-form-group textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  padding: 10px 10px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.ll-form-group input:focus,
.ll-form-group select:focus,
.ll-form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(27, 94, 155, 0.28);
}

.ll-form-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}

.text-red {
  color: #E8402A;
}

.ll-contact-map {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.ll-contact-map iframe {
  width: 100%;
  max-width: 1600px;
  height: 100%;
  border: 0;
  margin: 0 auto;
  display: block;
}

@media (max-width: 1024px) {
  .ll-director-grid {
    grid-template-columns: 1fr;
  }

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

  .ll-contact-layout {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
  }
}

@media (max-width: 768px) {
  .ll-contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .ll-team-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Certification badges ───────────────────────────────────── */
.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.cert-badge:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(27, 94, 155, 0.1);
}

.cert-badge .cert-icon {
  font-size: 36px;
}

.cert-badge h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.cert-badge p {
  font-size: 13px;
  color: var(--muted);
}

/* ── Quality process steps ──────────────────────────────────── */
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
}

.footer-main {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--section-px);
  padding-block: 64px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
  display: block;
  margin-bottom: 10px;
}

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

.footer p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.footer .social-link,
.footer .footer-bottom a {
  margin-bottom: 0;
  display: flex;
}

.footer-bottom {
  background: var(--blue);
  padding-block: 16px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  align-items: flex-start;
}

.footer-contact-item i {
  width: 18px;
  text-align: center;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 4px;
  /* Slight offset to align with text cap-height */
  font-size: 15px;
}

.footer-contact-item.center {
  align-items: center;
}

.footer-contact-item.center i {
  margin-top: 0;
}

.footer-cert-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-cert {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.social-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  line-height: 1;
  margin: 0;
}

.social-link:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ── FABs ───────────────────────────────────────────────────── */
.ll-fab-container {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 999;
}

@media (max-width: 768px) {
  .ll-fab-container {
    bottom: 20px;
    right: 16px;
    gap: 10px;
  }
}

.ll-fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  text-decoration: none;
}

.ll-fab i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  margin: 0;
}

.ll-fab:hover {
  transform: scale(1.1);
}

.ll-fab-wa {
  background: #25d366;
  /* Standard WhatsApp green */
}

.ll-fab-tel {
  background: var(--blue);
}

.fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse-ring 2s ease-out infinite;
  pointer-events: none;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.65);
    opacity: 0;
  }

  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}

/* ── Animations ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

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

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .stat-item:nth-child(even) {
    border-bottom: none;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .mega-menu {
    width: 480px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 48px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .trust-strip-inner {
    gap: 20px;
  }

  .fab {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* ── Image Components ─────────────────────────────────────────── */
.ll-cat-image {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
}

/* Photo label overlay */
.ll-cat-image {
  position: relative;
}

.ll-photo-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  pointer-events: none;
}

.ll-cat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #2f649a7e;
  transition: var(--transition);
}

.ll-category-card:hover .ll-cat-image img {
  transform: scale(1.05);
  border: 1px solid #2f649a7e;
}

/* Gallery Components */
.ll-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.ll-gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 250px;
  cursor: pointer;
  transition: var(--transition);
}

.ll-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27, 94, 155, 0.15);
}

.ll-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.ll-gallery-item:hover img {
  transform: scale(1.1);
}

.ll-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 46, 74, 0.9) 0%, rgba(13, 46, 74, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
}

.ll-gallery-item:hover .ll-gallery-overlay {
  opacity: 1;
}

.ll-gallery-overlay h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--white);
}

.ll-gallery-overlay p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.4;
}

/* ── Video Components ─────────────────────────────────────────── */
.hero-video,
.hero-video-desktop,
.hero-video-mobile,
.about-video-desktop,
.about-video-mobile,
.patient-video-desktop,
.patient-video-mobile {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Mobile-first video display */
.hero-video-mobile,
.about-video-mobile,
.patient-video-mobile {
  display: block;
}

.hero-video-desktop,
.about-video-desktop,
.patient-video-desktop {
  display: none;
}

/* Responsive video visibility */
@media (min-width: 768px) {

  .hero-video-mobile,
  .about-video-mobile,
  .patient-video-mobile {
    display: none;
  }

  .hero-video-desktop,
  .about-video-desktop,
  .patient-video-desktop {
    display: block;
  }
}

/* Hero Slider Container */
.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

/* Individual Slide */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), visibility 1.2s;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Slide Media (Image or Video) */
.hero-slider .hero-slide-media,
.hero-slider picture.hero-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  opacity: 1;
}

/* Ensure background overlay is above the slider */
.ll-hero-bg::after {
  z-index: 3 !important;
}


/* Video container styling */
.ll-about-video,
.ll-patient-video-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  min-height: 400px;
}

.ll-patient-video-container {
  min-height: 500px;
}

/* Video overlay content */
.ll-patient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 46, 74, 0.8) 0%, rgba(27, 94, 155, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.ll-patient-content {
  text-align: center;
  color: var(--white);
  max-width: 600px;
  padding: 40px;
}

.ll-patient-content h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.ll-patient-content p {
  font-size: 16px;
  margin-bottom: 32px;
  opacity: 1;
  line-height: 1.6;
  color: var(--white);
  font-weight: 500;
}

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

.ll-stat-mini {
  text-align: center;
}

.ll-stat-number-mini {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.ll-stat-label-mini {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Video optimization */
video {
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  video {
    animation: none;
  }
}

/* ── Utility ────────────────────────────────────────────────── */
.text-center {
  text-align: center;
}

.text-white {
  color: var(--white) !important;
}

.text-blue {
  color: var(--blue) !important;
}

.text-navy {
  color: var(--navy) !important;
}

.mt-8 {
  margin-top: 8px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.w-full {
  width: 100%;
}