/* ============================================================
   LiveJalso – Main Stylesheet
   Brand: Red #E8192C | Navy #0D1B3E | Orange #FF6B00
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --red:    #E8192C;
  --red-dk: #B5101E;
  --navy:   #0D1B3E;
  --navy-lt:#1A2E5A;
  --orange: #FF6B00;
  --white:  #FFFFFF;
  --gray-1: #F8F9FA;
  --gray-2: #E9ECEF;
  --gray-3: #6C757D;
  --text:   #212529;
  --shadow: 0 8px 32px rgba(13,27,62,.12);
  --shadow-card: 0 4px 20px rgba(13,27,62,.10);
  --radius: 12px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-main: 'Poppins', sans-serif;
  --font-display: 'Playfair Display', serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
a { text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; }

/* ---------- Typography ---------- */
.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: .5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 800;
}
.section-title span { color: var(--red); }
.section-subtitle {
  font-size: 1rem;
  color: var(--gray-3);
  max-width: 600px;
  margin: 1rem auto 0;
}

/* ---------- Buttons ---------- */
.btn-primary-lj {
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  padding: .75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-primary-lj:hover {
  background: var(--red-dk);
  border-color: var(--red-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,25,44,.35);
}
.btn-outline-lj {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: .75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-outline-lj:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-orange-lj {
  background: var(--orange);
  color: #fff;
  border: 2px solid var(--orange);
  padding: .75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-orange-lj:hover {
  background: #e06000;
  border-color: #e06000;
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
#mainNav {
  background: rgba(13,27,62,.97);
  backdrop-filter: blur(12px);
  padding: .75rem 0;
  transition: var(--transition);
  z-index: 1000;
}
#mainNav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  padding: .5rem 0;
}
#mainNav .navbar-brand img { height: 44px; }
#mainNav .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 500;
  font-size: .9rem;
  padding: .5rem .9rem !important;
  transition: color var(--transition);
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active { color: var(--orange) !important; }
#mainNav .dropdown-menu {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  min-width: 220px;
}
#mainNav .dropdown-item {
  color: rgba(255,255,255,.8);
  font-size: .875rem;
  padding: .55rem 1.2rem;
  transition: background var(--transition);
}
#mainNav .dropdown-item:hover { background: rgba(232,25,44,.2); color: var(--orange); }
.nav-cta {
  background: var(--red);
  color: #fff !important;
  border-radius: 50px;
  padding: .45rem 1.2rem !important;
  font-weight: 600 !important;
  margin-left: .5rem;
}
.nav-cta:hover { background: var(--red-dk); color: #fff !important; }

/* ---------- Hero ---------- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
#heroVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .25;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,62,.95) 0%, rgba(232,25,44,.4) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  background: rgba(255,107,0,.2);
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.hero-title .highlight { color: var(--orange); }
.hero-title .red { color: var(--red); }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  margin-top: .2rem;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--red);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .8rem;
  border-radius: 50px;
  animation: pulse-badge 2s infinite;
}
.live-dot { width: 8px; height: 8px; background: #fff; border-radius: 50%; animation: blink 1s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes pulse-badge { 0%,100%{box-shadow:0 0 0 0 rgba(232,25,44,.5)} 70%{box-shadow:0 0 0 10px rgba(232,25,44,0)} }

/* ---------- Sections common ---------- */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.bg-navy { background: var(--navy); }
.bg-light-lj { background: var(--gray-1); }

/* ---------- Cards ---------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  height: 100%;
  border-bottom: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
}
.service-card h4 { font-weight: 700; font-size: 1.05rem; color: var(--navy); margin-bottom: .6rem; }
.service-card p { font-size: .9rem; color: var(--gray-3); line-height: 1.7; }

/* ---------- Why Choose Us ---------- */
.why-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.why-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem;
}
.why-item h5 { font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.why-item p { font-size: .9rem; color: var(--gray-3); margin: 0; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--red);
  opacity: .15;
  line-height: 1;
}
.stars { color: var(--orange); font-size: .9rem; margin-bottom: .75rem; }
.testimonial-card p { font-size: .95rem; color: var(--gray-3); font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--red));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1rem;
}
.testimonial-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.testimonial-role { font-size: .78rem; color: var(--gray-3); }

/* ---------- Pricing ---------- */
.pricing-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  height: 100%;
  background: var(--white);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pricing-card.featured { border: 2px solid var(--red); transform: scale(1.03); }
.pricing-header {
  padding: 2rem 2rem 1.5rem;
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.pricing-card.featured .pricing-header { background: linear-gradient(135deg, var(--red), var(--orange)); }
.pricing-label { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }
.pricing-name { font-size: 1.4rem; font-weight: 800; margin: .25rem 0; }
.pricing-price { font-size: 2.5rem; font-weight: 900; color: var(--orange); }
.pricing-card.featured .pricing-price { color: #fff; }
.pricing-period { font-size: .85rem; opacity: .7; }
.pricing-body { padding: 2rem; }
.pricing-feature { display: flex; align-items: center; gap: .6rem; padding: .4rem 0; font-size: .9rem; color: var(--text); }
.pricing-feature i { color: var(--red); font-size: .8rem; }
.pricing-feature.disabled { opacity: .4; }
.pricing-feature.disabled i { color: var(--gray-3); }

/* ---------- Portfolio ---------- */
.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.portfolio-thumb {
  width: 100%;
  padding-top: 66%;
  background: linear-gradient(135deg, var(--navy), #1a2e5a);
  position: relative;
}
.portfolio-thumb-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,.3);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,.95), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-meta h5 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: .2rem; }
.portfolio-meta span { color: var(--orange); font-size: .8rem; }

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--red); }
.faq-question {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  transition: background var(--transition);
}
.faq-question.active { background: rgba(232,25,44,.05); color: var(--red); }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: all .35s ease; color: var(--gray-3); font-size: .95rem; }
.faq-answer.open { max-height: 300px; padding: 1rem 1.5rem 1.25rem; }
.faq-icon { transition: transform .35s ease; font-size: .85rem; }
.faq-question.active .faq-icon { transform: rotate(180deg); }

/* ---------- Blog Cards ---------- */
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--red));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,.4);
  overflow: hidden;
  position: relative;
}
.blog-cat {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--orange);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: .8rem; color: var(--gray-3); margin-bottom: .75rem; }
.blog-card h4 { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: .6rem; line-height: 1.4; }
.blog-card p { font-size: .875rem; color: var(--gray-3); flex: 1; }
.blog-card .read-more { color: var(--red); font-weight: 600; font-size: .875rem; margin-top: 1rem; display: inline-flex; align-items: center; gap: .3rem; }
.blog-card .read-more:hover { gap: .6rem; }

/* ---------- Service Areas ---------- */
.area-badge {
  display: inline-block;
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
  color: var(--navy);
  padding: .5rem 1.1rem;
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 500;
  margin: .3rem;
  transition: var(--transition);
}
.area-badge:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateY(-2px);
}

/* ---------- Contact Form ---------- */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-control-lj {
  width: 100%;
  border: 2px solid var(--gray-2);
  border-radius: 10px;
  padding: .85rem 1.1rem;
  font-size: .95rem;
  font-family: var(--font-main);
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-control-lj:focus { outline: none; border-color: var(--red); }
.form-label-lj { font-weight: 600; font-size: .875rem; color: var(--navy); margin-bottom: .4rem; display: block; }

/* ---------- Footer ---------- */
#footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
}
.footer-top { padding: 70px 0 50px; }
.footer-brand img { height: 44px; margin-bottom: 1rem; }
.footer-desc { font-size: .9rem; line-height: 1.8; opacity: .75; max-width: 280px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--red); color: #fff; }
.footer-title { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 1.25rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-contact-item { display: flex; gap: .75rem; margin-bottom: .85rem; align-items: flex-start; }
.footer-contact-item i { color: var(--orange); margin-top: .2rem; flex-shrink: 0; }
.footer-contact-item span { font-size: .875rem; opacity: .8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--orange); }

/* ---------- WhatsApp Float ---------- */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(37,211,102,.5);
  z-index: 9999;
  transition: var(--transition);
  animation: float-bounce 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); color: #fff; box-shadow: 0 8px 28px rgba(37,211,102,.7); }
@keyframes float-bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ---------- Call Button ---------- */
.call-float {
  position: fixed;
  bottom: 90px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 6px 20px rgba(232,25,44,.5);
  z-index: 9999;
  transition: var(--transition);
}
.call-float:hover { transform: scale(1.1); color: #fff; }

/* ---------- Breadcrumb ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2e5a 100%);
  padding: 80px 0 50px;
  margin-top: 0;
}
.page-hero h1 { color: #fff; font-family: var(--font-display); font-size: clamp(2rem,5vw,3rem); font-weight: 800; }
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item a { color: var(--orange); }
.breadcrumb-item.active { color: rgba(255,255,255,.7); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ---------- Scroll to top ---------- */
#scrollTop {
  position: fixed;
  bottom: 24px; left: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 9999;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,.2);
}
#scrollTop.visible { opacity: 1; pointer-events: auto; }
#scrollTop:hover { background: var(--red); }

/* ---------- Animations ---------- */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }

/* ---------- Counter ---------- */
.stat-counter {
  text-align: center;
  padding: 2rem 1.5rem;
}
.stat-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  margin-top: .4rem;
}

/* ---------- Equipment ---------- */
.equip-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
}
.equip-card:hover { background: rgba(232,25,44,.15); border-color: var(--red); transform: translateY(-4px); }
.equip-icon { font-size: 2.5rem; color: var(--orange); margin-bottom: 1rem; }
.equip-card h5 { color: #fff; font-weight: 700; font-size: .95rem; margin-bottom: .4rem; }
.equip-card p { color: rgba(255,255,255,.6); font-size: .85rem; margin: 0; }

/* ---------- Utility ---------- */
.text-red { color: var(--red) !important; }
.text-navy { color: var(--navy) !important; }
.text-orange { color: var(--orange) !important; }
.bg-red { background: var(--red); }
.divider { height: 3px; width: 60px; background: linear-gradient(90deg, var(--red), var(--orange)); border-radius: 3px; margin: 1rem 0; }
.divider.center { margin: 1rem auto; }
