/* ProValuation Custom Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  /* Color Palette */
  --color-primary-red: #C8102E;      /* Premium Cherry/Crimson Red */
  --color-primary-red-hover: #A00C22;
  --color-primary-yellow: #EAAA00;   /* Professional Amber/Gold Yellow */
  --color-primary-yellow-hover: #C69200;
  --color-dark: #0F172A;             /* Slate Dark */
  --color-dark-muted: #334155;
  --color-light: #F8FAFC;            /* Soft White Background */
  --color-white: #FFFFFF;
  --color-gray: #64748B;
  --color-border: #E2E8F0;
  
  /* Translucent & Glassmorphic */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(226, 232, 240, 0.8);
  --glass-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.05);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: var(--font-primary);
  color: var(--color-dark-muted);
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  font-weight: 700;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-light);
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gray);
}

/* --- Utilities --- */
.text-red { color: var(--color-primary-red); }
.text-yellow { color: var(--color-primary-yellow); }
.bg-red { background-color: var(--color-primary-red); }
.bg-yellow { background-color: var(--color-primary-yellow); }
.bg-light-red { background-color: #FFF5F5; }
.bg-light-yellow { background-color: #FFFDF0; }
.bg-gradient-dark { background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); }

.section-padding {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* Section Header */
.section-title-wrapper {
  margin-bottom: 50px;
}
.section-subtitle {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary-red);
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
  padding-left: 30px;
}
.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--color-primary-yellow);
}
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

/* Custom Buttons */
.btn-custom {
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid transparent;
}
.btn-custom-red {
  background-color: var(--color-primary-red);
  color: var(--color-white);
}
.btn-custom-red:hover {
  background-color: var(--color-primary-red-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(200, 16, 46, 0.15);
}
.btn-custom-yellow {
  background-color: var(--color-primary-yellow);
  color: var(--color-dark);
}
.btn-custom-yellow:hover {
  background-color: var(--color-primary-yellow-hover);
  color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(234, 170, 0, 0.2);
}
.btn-custom-outline {
  border-color: var(--color-border);
  color: var(--color-dark);
  background-color: transparent;
}
.btn-custom-outline:hover {
  border-color: var(--color-primary-red);
  color: var(--color-white);
  background-color: var(--color-primary-red);
  transform: translateY(-2px);
}
.btn-custom-white {
  background-color: var(--color-white);
  color: var(--color-primary-red);
}
.btn-custom-white:hover {
  background-color: var(--color-light);
  color: var(--color-primary-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* --- Header / Navbar --- */
.navbar-top-bar {
  background-color: var(--color-dark);
  color: var(--color-white);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar-top-bar a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.navbar-top-bar a:hover {
  color: var(--color-primary-yellow);
}

.custom-navbar {
  transition: var(--transition-smooth);
  padding: 20px 0;
  border-bottom: 1px solid transparent;
}
.custom-navbar.scrolled {
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--glass-shadow);
  border-bottom: 1px solid var(--glass-border);
}
.navbar-brand img {
  height: 42px;
  transition: var(--transition-smooth);
}
.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-dark-muted) !important;
  margin: 0 12px;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition-smooth);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary-red);
  transition: var(--transition-smooth);
}
.nav-link:hover, .nav-link.active {
  color: var(--color-primary-red) !important;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 10% 20%, rgba(254, 242, 242, 0.6) 0%, rgba(255, 253, 240, 0.6) 90.1%);
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}
/* Abstract Animated Shapes */
.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.55;
  animation: float-shapes 12s infinite alternate ease-in-out;
}
.hero-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--color-primary-red);
  top: -100px;
  right: -50px;
}
.hero-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--color-primary-yellow);
  bottom: -50px;
  left: -50px;
  animation-delay: -4s;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-tagline {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary-red);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
  display: inline-block;
  background-color: rgba(200, 16, 46, 0.08);
  padding: 8px 16px;
  border-radius: 30px;
}
.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-title span {
  background: linear-gradient(135deg, var(--color-primary-red) 0%, var(--color-primary-yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-description {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--color-dark-muted);
  margin-bottom: 35px;
}
.hero-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  z-index: 2;
}

/* Quick Consultation Form Widget */
.hero-form-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 18px;
}

/* Stats Ribbon */
.stats-ribbon {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 40px 0;
  position: relative;
  z-index: 2;
}
.stat-box {
  text-align: center;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-primary-yellow);
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- What We Stand For (About) --- */
.about-image-wrapper {
  position: relative;
}
.about-image-main {
  border-radius: 16px;
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.about-experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background-color: var(--color-primary-red);
  color: var(--color-white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(200, 16, 46, 0.25);
  max-width: 200px;
  border-left: 6px solid var(--color-primary-yellow);
}
.about-experience-badge h4 {
  color: var(--color-white);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0;
}
.about-experience-badge p {
  font-size: 0.85rem;
  margin-bottom: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Services Section --- */
.services-section {
  background-color: var(--color-light);
}
.services-filter-nav {
  margin-bottom: 40px;
}
.filter-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 20px;
  margin: 5px;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  border-radius: 30px;
  color: var(--color-dark-muted);
  transition: var(--transition-smooth);
}
.filter-btn.active, .filter-btn:hover {
  background-color: var(--color-primary-red);
  border-color: var(--color-primary-red);
  color: var(--color-white);
  box-shadow: 0 6px 15px rgba(200, 16, 46, 0.15);
}

.service-card-wrapper {
  transition: var(--transition-smooth);
}
.service-card {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 35px 30px;
  border: 1px solid var(--color-border);
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary-red) 0%, var(--color-primary-yellow) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-color: transparent;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: rgba(200, 16, 46, 0.06);
  color: var(--color-primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}
.service-card:hover .service-icon-box {
  background-color: var(--color-primary-red);
  color: var(--color-white);
}
.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  transition: var(--transition-smooth);
}
.service-card:hover .service-card-title {
  color: var(--color-primary-red);
}
.service-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-gray);
  flex-grow: 1;
}
.service-learn-more {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary-red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  transition: var(--transition-smooth);
}
.service-learn-more i {
  transition: var(--transition-smooth);
}
.service-card:hover .service-learn-more i {
  transform: translateX(4px);
}

/* --- Why Choose Us --- */
.why-choose-card {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--color-border);
  height: 100%;
  transition: var(--transition-smooth);
}
.why-choose-card:hover {
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  border-color: var(--color-primary-yellow);
}
.why-choose-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(234, 170, 0, 0.1);
  color: var(--color-primary-yellow-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.why-choose-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* --- Checklist Interactive Section --- */
.checklist-section {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.checklist-section .section-title,
.checklist-section h3,
.checklist-section h4 {
  color: var(--color-white);
}
.checklist-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
}
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .checklist-grid {
    grid-template-columns: 1fr;
  }
}
.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.checklist-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary-yellow);
}
.checklist-item.checked {
  background-color: rgba(234, 170, 0, 0.1);
  border-color: var(--color-primary-yellow);
}
.checklist-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: transparent;
  transition: var(--transition-smooth);
}
.checklist-item.checked .checklist-checkbox {
  background-color: var(--color-primary-yellow);
  border-color: var(--color-primary-yellow);
  color: var(--color-dark);
}
.checklist-label {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

/* --- Industries We Serve --- */
.industry-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: var(--transition-smooth);
  height: 100%;
}
.industry-card:hover {
  transform: scale(1.05);
  border-color: var(--color-primary-red);
  box-shadow: 0 15px 30px rgba(200, 16, 46, 0.06);
}
.industry-icon {
  font-size: 2.2rem;
  color: var(--color-primary-red);
  margin-bottom: 15px;
  transition: var(--transition-smooth);
}
.industry-card:hover .industry-icon {
  color: var(--color-primary-yellow);
}
.industry-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
}

/* --- Success Stories --- */
.success-section {
  background-color: var(--color-light);
}
.success-card {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--color-border);
  height: 100%;
}
.success-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary-red);
  margin-bottom: 15px;
}
.success-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.success-desc {
  color: var(--color-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Latest Insights --- */
.blog-card {
  background-color: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}
.blog-image-wrapper {
  overflow: hidden;
  height: 200px;
  position: relative;
}
.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.blog-card:hover .blog-image {
  transform: scale(1.1);
}
.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--color-primary-red);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
}
.blog-content {
  padding: 25px;
}
.blog-date {
  font-size: 0.8rem;
  color: var(--color-gray);
  margin-bottom: 10px;
}
.blog-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.blog-title a {
  color: var(--color-dark);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.blog-title a:hover {
  color: var(--color-primary-red);
}
.blog-readmore {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-primary-red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-smooth);
}
.blog-readmore:hover {
  color: var(--color-primary-red-hover);
}

/* --- Consultation Form --- */
.consultation-section {
  position: relative;
}
.consultation-form-card {
  background-color: var(--color-white);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  padding: 45px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: var(--color-primary-red);
}
.form-control:focus, .form-select:focus {
  border-color: var(--color-primary-red);
  box-shadow: 0 0 0 0.25rem rgba(200, 16, 46, 0.1);
}
.contact-info-card {
  background-color: var(--color-dark);
  color: var(--color-white);
  border-radius: 16px;
  padding: 45px;
  height: 100%;
  background-image: radial-gradient(circle at 100% 100%, rgba(200, 16, 46, 0.15) 0%, transparent 50%);
}
.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-primary-yellow);
  flex-shrink: 0;
}
.contact-info-text h5 {
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 5px;
}
.contact-info-text p, .contact-info-text a {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  text-decoration: none;
}
.contact-info-text a:hover {
  color: var(--color-primary-yellow);
}

/* --- Footer --- */
.footer {
  background-color: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 80px 0 30px;
}
.footer-logo {
  height: 45px;
  margin-bottom: 25px;
}
.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}
.footer-social-links {
  display: flex;
  gap: 15px;
}
.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  text-decoration: none;
}
.footer-social-link:hover {
  background-color: var(--color-primary-red);
  color: var(--color-white);
  transform: translateY(-3px);
}
.footer-heading {
  color: var(--color-white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}
.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--color-primary-yellow);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--color-primary-yellow);
  transition: var(--transition-smooth);
}
.footer-links a:hover {
  color: var(--color-white);
  padding-left: 5px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 60px;
  padding-top: 30px;
  font-size: 0.9rem;
}

/* Animations */
@keyframes float-shapes {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(30px, 50px) scale(1.1);
  }
}

/* Animation Utilities for scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Interactive Checklist Modal */
.modal-content-custom {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.checklist-modal-header {
  border-bottom: 1px solid var(--color-border);
  padding: 24px;
}
.checklist-modal-body {
  padding: 30px 24px;
}
.checklist-progress-bar {
  height: 8px;
  border-radius: 4px;
  background-color: var(--color-border);
  overflow: hidden;
  margin-bottom: 20px;
}
.checklist-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary-yellow) 0%, var(--color-primary-red) 100%);
  width: 0%;
  transition: width 0.5s ease;
}
