/* ===========================
   Global Styles
   =========================== */
:root {
  --primary-color: #f98a1c;
  --primary-soft: #fff4e7;
  --dark-color: #1a1a1a;
  --text-color: #333333;
  --muted-text: #6c757d;
  --bg-light: #ffffff;
  --bg-soft: #f7f7f7;
  --accent-dark: #2b2858; /* UltraExtractor Accent */
  --border-soft: #e5e7eb;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Jost", system-ui, sans-serif;
  color: var(--text-color);
  background-color: var(--bg-light);
  line-height: 1.6; /* spacing improvement */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.6rem;
}

a {
  text-decoration: none;
}

h2 {
  color: var(--accent-dark);
}

p {
  margin-bottom: 0.9rem;
}

/* ===========================
   Section Spacing (IMPROVED)
   =========================== */
.section-space {
  padding: 55px 0;
}

@media (min-width: 992px) {
  .section-space {
    padding: 90px 0;
  }
}

/* ===========================
   Navbar
   =========================== */
.main-navbar {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
}

.main-navbar .container {
  padding-top: 6px;
  padding-bottom: 6px;
}

.main-navbar.navbar-scrolled {
  background-color: #ffffff;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.15);
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

.brand-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 575.98px) {
  .brand-logo {
    max-height: 34px;
  }
}

.main-navbar .nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-right: 12px;
  position: relative;
}

.main-navbar .nav-link:hover {
  color: var(--primary-color);
}

.main-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.25s ease;
}

.main-navbar .nav-link:hover::after {
  width: 100%;
}

/* CTA Button */
.nav-cta-btn {
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
}

/* ===========================
   Buttons
   =========================== */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #e77b14;
  border-color: #e77b14;
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.main-btn {
  padding: 11px 26px;
  border-radius: 999px;
  font-weight: 700;
}

.ghost-btn {
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
  padding-top: 130px;
  padding-bottom: 80px;
  background: radial-gradient(
    circle at top left,
    #fff4e7 0%,
    #ffffff 45%,
    #fff1dd 100%
  );
}

@media (min-width: 1200px) {
  .hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
  }
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background-color: var(--primary-soft);
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-section h1 {
  font-size: 2.5rem;
  line-height: 1.25;
  color: var(--accent-dark);
}

@media (min-width: 992px) {
  .hero-section h1 {
    font-size: 2.9rem;
  }
}

.hero-bullets li {
  margin-bottom: 10px;
}

.hero-bullets li i {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary-color);
}

.hero-note {
  font-size: 0.85rem;
  color: var(--muted-text);
}

/* ===========================
   Hero Image Wrapper
   =========================== */
.hero-image-wrapper {
  position: relative;
  padding-left: 10px;
  text-align: center;
}

.hero-image-wrapper img {
  max-height: 520px;
}

@media (max-width: 575.98px) {
  .hero-image-wrapper {
    margin-top: 32px;
  }
}

/* ===========================
   Section Headings
   =========================== */
.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-tag {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  background-color: var(--primary-soft);
  color: var(--primary-color);
  font-weight: 600;
}

.section-heading h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-heading p {
  font-size: 1rem;
  color: #4b5563;
}

/* ===========================
   Cards – Height Balance
   =========================== */
.info-card,
.tool-card,
.feature-card,
.who-card {
  height: 100%;
}

/* ===========================
   Info Cards
   =========================== */
.info-card {
  border-radius: 16px;
  background: linear-gradient(180deg, #fff7ee 0%, #ffffff 100%);
  border: 1px solid var(--border-soft);
  padding: 24px 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-soft);
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 12px;
}

/* ===========================
   Tools Cards
   =========================== */
.tool-card {
  border-radius: 18px;
  padding: 24px 22px;
  border: 1px solid var(--border-soft);
  background: linear-gradient(180deg, #fff7ee 0%, #ffffff 100%);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.tool-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #fff4e7;
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

/* ===========================
   Features Cards
   =========================== */
.feature-card {
  border-radius: 18px;
  background: linear-gradient(180deg, #fff7ee 0%, #ffffff 100%);
  padding: 24px 22px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.feature-icon {
  font-size: 1.8rem;
  color: var(--primary-color);
  font-weight: 900;
  margin-bottom: 14px;
}

/* ===========================
   Who Cards
   =========================== */
.who-card {
  border-radius: 18px;
  background: linear-gradient(180deg, #fff7ee 0%, #ffffff 100%);
  padding: 22px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.who-icon {
  font-size: 1.7rem;
  color: var(--primary-color);
  font-weight: 900;
  margin-bottom: 12px;
}

/* =========================================================
   ULTRAEXTRACTOR360 PRICING
   ========================================================= */

.ultra-pricing-section {
  background: linear-gradient(180deg, #fff7ee 0%, #ffffff 100%);
}

/* VIDEO */
.ultra-pricing-media {
  display: flex;
  justify-content: center;
}

.ultra-pricing-video {
  width: 500px;
  height: 600px;
  max-width: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: top center;
  background: #000;
  box-shadow: 0 22px 60px rgba(249, 138, 28, 0.35);
}

/* FEATURES LIST */
.ultra-pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.ultra-pricing-features li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.ultra-pricing-features i {
  font-size: 22px;
  color: var(--primary-color);
  margin-top: 2px;
}

.ultra-pricing-features strong {
  display: block;
  font-size: 15.5px;
  color: #111827;
}

.ultra-pricing-features span {
  font-size: 14px;
  color: #4b5563;
}

/* CTA BUTTON */
.ultra-pricing-btn {
  background: linear-gradient(135deg, #f98a1c, #ff6a00);
  color: #ffffff;
  padding: 15px 44px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 14px 32px rgba(249, 138, 28, 0.4);
  transition: all 0.28s ease;
}

.ultra-pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(249, 138, 28, 0.55);
}

/* MOBILE */
@media (max-width: 576px) {
  .ultra-pricing-video {
    width: 100%;
    height: 380px;
  }
}

/* ===========================
   Reveal Animations
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 {
  transition-delay: 0.15s;
}

.reveal.delay-2 {
  transition-delay: 0.3s;
}

/* =========================== FOOTER – PREMIUM REDESIGN =========================== */
.site-footer {
  background-color: #111827;
  color: #e5e7eb;
  padding: 55px 0 25px;
  border-top: 4px solid var(--primary-color);
} /* Titles */
.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
} /* Description text */
.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5e1;
  max-width: 360px;
} /* Headings in other columns */
.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
} /* Quick Links */
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  font-size: 0.92rem;
  color: #9ca3af;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: 0.25s ease;
}
.footer-links i {
  font-size: 0.75rem;
  margin-right: 8px;
  color: var(--primary-color);
}
.footer-links a:hover {
  color: var(--primary-color);
  letter-spacing: 0.3px;
} /* Contact Section */
.footer-contact {
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-contact i {
  color: var(--primary-color);
} /* Footer Note */
.footer-note {
  color: #9ca3af;
  font-size: 0.88rem;
  margin-top: 6px;
} /* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #1f2937;
  margin-top: 32px;
  padding-top: 14px;
  text-align: left;
}
.footer-bottom p {
  color: #6b7280;
  font-size: 0.85rem;
  margin: 0;
} /* =========================== Responsive Footer =========================== */
@media (max-width: 991.98px) {
  .site-footer {
    padding: 45px 0 22px;
  }
}
@media (max-width: 575.98px) {
  .footer-title {
    font-size: 1.2rem;
  }
  .footer-desc {
    font-size: 0.92rem;
  }
  .footer-links a {
    font-size: 0.9rem;
  }
  .footer-heading {
    margin-top: 10px;
  }
} /* =========================== Footer Logo =========================== */
.footer-logo-box {
  display: flex;
  align-items: center;
}
.footer-logo {
  max-height: 42px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 575.98px) {
  .footer-logo {
    max-height: 34px;
  }
}
.footer-call {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-call:hover {
  color: var(--primary-color);
}
