/* ============================================================
   LADAKH HYDRA RECOVERY – ELEMENTOR BLOCKS STYLESHEET
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&family=Barlow+Condensed:wght@400;600;700&display=swap');

/* ── ROOT VARIABLES ── */
:root {
  --lhr-yellow:   #F5C400;
  --lhr-navy:     #0B1629;
  --lhr-navy-mid: #122040;
  --lhr-gray:     #8A9BB5;
  --lhr-white:    #FFFFFF;
}

/* ── SHARED TYPOGRAPHY ── */
.lhr-section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.lhr-section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
}

.lhr-body-text {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--lhr-gray);
  font-weight: 300;
}

/* ── SHARED BUTTONS ── */
.lhr-btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--lhr-yellow);
  color: var(--lhr-navy);
  border: none;
  padding: 16px 36px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  cursor: pointer;
}
.lhr-btn-primary:hover { opacity: 0.9; transform: translateY(-2px); color: var(--lhr-navy); text-decoration: none; }

.lhr-btn-outline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 16px 36px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.lhr-btn-outline:hover { border-color: var(--lhr-yellow); color: var(--lhr-yellow); text-decoration: none; }

/* ── SHARED SECTION HEADER ── */
.lhr-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
}
.lhr-section-header-left { flex: 0 0 auto; }
.lhr-section-header-right { flex: 0 1 460px; }
@media (max-width: 767px) { .lhr-section-header { flex-direction: column; align-items: flex-start; gap: 20px; } }

/* ── FADE-UP ANIMATION ── */
.lhr-fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.lhr-fade-up.lhr-visible { opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.lhr-hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 40px 80px;
  position: relative;
  overflow: hidden;
}
.lhr-hero-inner { max-width: 820px; width: 100%; }

.lhr-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(245,196,0,0.4);
  padding: 6px 16px 6px 8px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}
.lhr-hero-badge span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
}
.lhr-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: lhr-pulse 2s infinite;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes lhr-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.lhr-hero-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 13vw, 170px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 0 24px;
}

.lhr-hero-subtitle {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.lhr-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.lhr-hero-stat {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  clip-path: polygon(20px 0%, 100% 0%, 100% 100%, 0% 100%);
  min-width: 160px;
}
.lhr-hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  display: block;
}
.lhr-hero-stat-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
}
@media (max-width: 767px) {
  .lhr-hero { padding: 0 20px 60px; }
  .lhr-hero-stat { position: relative; clip-path: none; margin-top: 36px; width: fit-content; }
}


/* ═══════════════════════════════════════════════
   TICKER
   ═══════════════════════════════════════════════ */
.lhr-ticker-wrap { overflow: hidden; padding: 12px 0; }
.lhr-ticker-track {
  display: flex;
  white-space: nowrap;
  animation: lhr-ticker 30s linear infinite;
}
.lhr-ticker-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 28px;
}
.lhr-ticker-sep { font-size: 16px; padding: 0 6px; }
@keyframes lhr-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */
.lhr-about { padding: 100px 40px; }
.lhr-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.lhr-about-img-wrap { position: relative; }
.lhr-about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.1);
  display: block;
}
.lhr-about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  padding: 24px 28px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 12px 100%);
}
.lhr-about-badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  display: block;
}
.lhr-about-badge-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
}
.lhr-about-quote {
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  font-style: italic;
  line-height: 1.5;
  border-left: 3px solid;
  padding-left: 20px;
  margin: 28px 0;
}
.lhr-about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.lhr-about-stat {
  padding: 20px;
  border: 1px solid;
}
.lhr-about-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  line-height: 1;
  display: block;
}
.lhr-about-stat-lbl {
  font-size: 13px;
  color: var(--lhr-gray);
  font-weight: 300;
}
@media (max-width: 767px) {
  .lhr-about-inner { grid-template-columns: 1fr; gap: 48px; }
  .lhr-about { padding: 70px 20px; }
  .lhr-about-badge { right: 0; }
}


/* ═══════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════ */
.lhr-services { padding: 100px 40px; position: relative; }
.lhr-services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lhr-yellow), transparent);
}
.lhr-services-grid {
  display: grid;
  gap: 24px;
}
.lhr-cols-2 { grid-template-columns: repeat(2, 1fr); }
.lhr-cols-3 { grid-template-columns: repeat(3, 1fr); }
.lhr-cols-4 { grid-template-columns: repeat(4, 1fr); }

.lhr-service-card {
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.lhr-service-card:hover {
  border-color: rgba(245,196,0,0.25);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.lhr-service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter 0.4s;
  display: block;
}
.lhr-service-card:hover .lhr-service-img { filter: grayscale(0%); }
.lhr-service-body { padding: 28px 24px; flex: 1; }
.lhr-service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  margin-bottom: 8px;
  display: block;
}
.lhr-service-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: #fff;
  letter-spacing: 0.03em;
  margin: 0 0 10px;
  line-height: 1;
}
.lhr-service-desc {
  font-size: 14px;
  color: var(--lhr-gray);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 18px;
}
.lhr-service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.lhr-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid;
  padding: 3px 10px;
}
.lhr-service-card-bar {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}
.lhr-service-card:hover .lhr-service-card-bar { transform: scaleX(1); }

@media (max-width: 991px) { .lhr-cols-3, .lhr-cols-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .lhr-cols-2, .lhr-cols-3, .lhr-cols-4 { grid-template-columns: 1fr; } }
@media (max-width: 991px) { .lhr-services { padding: 70px 20px; } }


/* ═══════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════ */
.lhr-stats { padding: 80px 40px; position: relative; overflow: hidden; }
.lhr-stats-watermark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 200px;
  color: rgba(11,22,41,0.06);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.lhr-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
}
.lhr-stat-block {
  text-align: center;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lhr-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1;
  display: block;
}
.lhr-stat-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
}
.lhr-stats-divider {
  width: 1px;
  height: 80px;
  background: rgba(11,22,41,0.15);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .lhr-stats-inner { gap: 20px; }
  .lhr-stat-block { padding: 0 20px; }
  .lhr-stats-divider { display: none; }
  .lhr-stats-watermark { font-size: 90px; }
}


/* ═══════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════ */
.lhr-why { padding: 100px 40px; }
.lhr-why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.lhr-why-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lhr-why-item:last-child { border-bottom: none; }
.lhr-why-icon {
  width: 52px; height: 52px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lhr-why-icon .dashicons { font-size: 22px; width: auto; height: auto; }
.lhr-why-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.lhr-why-desc {
  font-size: 14px;
  color: var(--lhr-gray);
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}
.lhr-why-image-col {}
.lhr-why-image-wrap { position: relative; }
.lhr-why-image-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  filter: grayscale(20%);
  display: block;
}
.lhr-why-cert-badge {
  position: absolute;
  top: 30px; left: 0;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lhr-why-cert-badge .dashicons { font-size: 28px; width: auto; height: auto; }
@media (max-width: 767px) {
  .lhr-why-inner { grid-template-columns: 1fr; }
  .lhr-why { padding: 70px 20px; }
  .lhr-why-image-wrap img { height: 320px; }
}


/* ═══════════════════════════════════════════════
   EQUIPMENT
   ═══════════════════════════════════════════════ */
.lhr-equipment { padding: 100px 40px; }
.lhr-equipment-grid {
  display: grid;
  gap: 16px;
}
.lhr-equip-item {
  border: 1px solid rgba(255,255,255,0.06);
  padding: 28px 24px;
  position: relative;
  transition: all 0.3s;
  background: rgba(255,255,255,0.02);
}
.lhr-equip-item:hover {
  border-color: rgba(245,196,0,0.3);
  background: rgba(245,196,0,0.04);
}
.lhr-equip-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  display: block;
  margin-bottom: -8px;
  transition: color 0.3s;
}
.lhr-equip-item:hover .lhr-equip-num { color: rgba(245,196,0,0.15); }
.lhr-equip-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 8px;
}
.lhr-equip-spec {
  font-size: 13px;
  color: var(--lhr-gray);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}
.lhr-equip-arrow {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 20px;
  transition: transform 0.3s;
  opacity: 0.4;
}
.lhr-equip-item:hover .lhr-equip-arrow { transform: translate(3px,-3px); opacity: 1; }
@media (max-width: 991px) { .lhr-equipment { padding: 70px 20px; } }


/* ═══════════════════════════════════════════════
   TERRAIN
   ═══════════════════════════════════════════════ */
.lhr-terrain { padding: 100px 40px; }
.lhr-terrain-inner { max-width: 680px; }
.lhr-terrain-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lhr-terrain-feature:last-child { border-bottom: none; }
.lhr-terrain-feature .dashicons { font-size: 20px; width: auto; height: auto; flex-shrink: 0; }
.lhr-terrain-feature p { font-size: 15px; color: rgba(255,255,255,0.8); margin: 0; font-weight: 400; }
@media (max-width: 767px) { .lhr-terrain { padding: 70px 20px; } }


/* ═══════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════ */
.lhr-process { padding: 100px 40px; }
.lhr-process-header { text-align: center; margin-bottom: 56px; }
.lhr-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.lhr-process-step {
  border: 1px solid rgba(255,255,255,0.05);
  padding: 28px 24px;
  background: rgba(255,255,255,0.02);
  transition: all 0.3s;
  position: relative;
}
.lhr-process-step:hover { border-color: rgba(245,196,0,0.2); background: rgba(245,196,0,0.03); }
.lhr-process-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.lhr-process-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 10px;
}
.lhr-process-desc {
  font-size: 14px;
  color: var(--lhr-gray);
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 991px) { .lhr-process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .lhr-process-grid { grid-template-columns: 1fr; } }
@media (max-width: 991px)  { .lhr-process { padding: 70px 20px; } }


/* ═══════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════ */
.lhr-cta {
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lhr-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(245,196,0,0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(245,196,0,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.lhr-cta-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 68px);
  letter-spacing: 0.05em;
  text-decoration: none;
  display: block;
  margin-bottom: 36px;
  transition: opacity 0.3s;
}
.lhr-cta-phone:hover { opacity: 0.8; }
.lhr-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 767px) { .lhr-cta { padding: 70px 20px; } }


/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
.lhr-contact { padding: 100px 40px; }
.lhr-contact-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: start;
}
.lhr-contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lhr-contact-item:last-child { border-bottom: none; }
.lhr-contact-icon {
  width: 46px; height: 46px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lhr-contact-icon .dashicons { font-size: 18px; width: auto; height: auto; }
.lhr-contact-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lhr-gray);
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}
.lhr-contact-value {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}
.lhr-contact-value a { color: #fff; text-decoration: none; transition: color 0.3s; }
.lhr-contact-value a:hover { color: var(--lhr-yellow); }

.lhr-form-placeholder {
  border: 1px dashed rgba(255,255,255,0.15);
  padding: 36px;
  text-align: center;
}
.lhr-form-placeholder code {
  background: rgba(255,255,255,0.08);
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 13px;
}

@media (max-width: 767px) {
  .lhr-contact-inner { grid-template-columns: 1fr; }
  .lhr-contact { padding: 70px 20px; }
}
