/* COLOR TOKENS */
:root {
  --blue: #003d7c;
  --green: #18a64b;
  --orange: #f36c0c;
  --light-blue: #e6f0fa;
  --gray: #f8f9fa;
}

/* GLOBAL */
body {
  font-family: system-ui, Arial, sans-serif;
  line-height: 1.6;
  color: #444;
}

h1, h2, h3, h4, h5 {
  color: var(--blue);
  font-weight: 700;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--green);
}

.btn-primary {
  background: var(--blue);
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.btn-success {
  background: var(--green);
  border: none;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background: #15934a;
  transform: translateY(-2px);
}

.logo {
  max-height: 62px;
}

.icon {
  color: var(--green);
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 800px;
  margin: 0 auto;
}

.badge {
  font-weight: 500;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
}

/* HEADER/NAV */
.navbar {
  padding: 0.75rem 0;
}

.navbar .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
  color: #444;
}

.navbar .nav-link.active {
  color: var(--blue);
  font-weight: 600;
}

.header-phone a {
  font-size: 1.1rem;
}

/* HERO */
/* .hero {
  min-height: 85vh;
  background: url('../img/hero-img.jpg') center/cover no-repeat;
  position: relative;
  margin-top: 70px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
} */

.text-highlight {
  color: var(--orange);
}

/* .hero-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  margin-bottom: 0.5rem;
  font-weight: 500;
} */


.new-hero {
  position: relative;
  /* background: linear-gradient(135deg, var(--blue) 0%, #001a54 100%); */
  /* margin-top: 76px; */
  /* padding: 5rem 0; */
  overflow: hidden;
}

.new-hero:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.new-hero .text-highlight {
  color: var(--green);
}
.new-hero p{
      font-size: 24px;
    color: #8399a4;
    font-weight: 600;
    line-height: 35px;
}
 

.hero-card, .hero-card-2 {
  position: absolute;
  display: flex;
  align-items: center;
  background: white;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 3;
  max-width: 300px;
}

.hero-card {
  top: 20%;
  left: 0;
  animation: float 6s ease-in-out infinite;
}

.hero-card-2 {
  bottom: 20%;
  right: 0;
  animation: float 6s ease-in-out infinite;
  animation-delay: 2s;
}

.hero-card-icon {
  background: var(--light-blue);
  color: var(--blue);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.hero-card-content {
  flex-grow: 1;
}

.hero-card-content h4 {
  font-size: 1rem;
  margin: 0 0 5px;
}

.hero-card-content p {
  font-size: 0.85rem;
  margin: 0;
  color: #6c757d;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  border-radius: 50px;
  margin-right: 10px;
  margin-bottom: 10px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-badge span{
  color: #fff;
}
.badge-icon {
  color: var(--green);
  margin-right: 10px;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 991px) {
  .hero-card, .hero-card-2 {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 15px auto;
  }
  
  .hero-image-container {
    flex-direction: column;
  }
  
  .hero-image {
    margin-bottom: 20px;
  }
}


/* FEATURES SECTION */
.feature-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
  padding: 1rem;
  border-radius: 50%;
  background: var(--light-blue);
  display: inline-block;
  margin-bottom: 1rem;
}

/* CARRIERS SECTION */
.partner {
  max-height: 55px;
  opacity: 0.85;
  filter: grayscale(0.8);
  transition: all 0.3s ease;
}

.carrier-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carrier-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.carrier-card:hover .partner {
  filter: none;
  opacity: 1;
}

/* WIZARD */
/* Enhanced wizard styles */
#wizard .card {
  border: none;
  border-left: 5px solid var(--green);
  transition: all 0.3s ease;
}

#wizard .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}

#wizard .badge {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  letter-spacing: 1px;
}

#wizard .alert {
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
}

.wizard-title {
  color: var(--blue);
  font-weight: 700;
}

.success-icon {
  font-size: 4.5rem;
  color: var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.pulse-animation {
  animation: pulse-btn 1.5s ease-in-out infinite;
}

@keyframes pulse-btn {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.cta-box {
  border: 2px solid #ffc107;
  animation: flash 2s infinite;
}

@keyframes flash {
  0%, 100% {
    border-color: #ffc107;
  }
  50% {
    border-color: #ff6347;
  }
}

/* Button enhancements */
#wizard .btn {
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

#wizard .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

#wizard .btn-primary {
  background: var(--blue);
  border: none;
}

#wizard .btn-primary:hover {
  background: var(--green);
}

#wizard .btn-success {
  background: var(--green);
  border: none;
  font-size: 1.2rem;
  padding: 1rem 2rem;
}

#wizard .btn-success:hover {
  background: #15934a;
  transform: scale(1.05);
}

/* Mobile responsiveness */
@media (max-width: 576px) {
  #wizard .alert {
    flex-direction: column;
    text-align: center;
  }
  
  #wizard .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }
}

/* TESTIMONIALS */
.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-card:before {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  color: var(--light-blue);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.5;
}

.testimonial-rating {
  color: var(--orange);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  font-size: 2rem;
  color: var(--blue);
  margin-right: 1rem;
}

/* CTA SECTION */
.cta-section {
  position: relative;
  background: url('../img/cta-bg.jpg') center/cover no-repeat;
  padding: 5rem 0;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 61, 124, 0.85);
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

/* QUOTE PAGE */
.quote-hero {
  background: var(--light-blue);
  padding: 4rem 0;
  /* margin-top: 76px; */
}

.step-sidebar {
  top: 100px;
}

.step-sidebar .step-item {
  padding: 1rem 1.25rem;
  border-left: 4px solid #dee2e6;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #6c757d;
  transition: all 0.3s ease;
  border-radius: 0 5px 5px 0;
}

.step-sidebar .active, 
.step-sidebar .completed {
  border-color: var(--green);
  color: var(--blue);
  background: var(--light-blue);
}

.step-num {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  background: #dee2e6;
  font-size: 0.9rem;
  font-weight: 700;
  margin-right: 0.75rem;
  transition: all 0.3s ease;
}

.step-sidebar .active .step-num,
.step-sidebar .completed .step-num {
  background: var(--green);
  color: #fff;
}

.step-sidebar .completed .step-num:after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.quote-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 0.25rem rgba(24, 166, 75, 0.25);
}

/* FOOTER */
 .site-footer {
  /* margin-top: 5rem; */
}

.disclaimer-section {
  background: #f5f9ff;
  padding: 3rem 0;
  border-top: 3px solid var(--green);
}

.disclaimer-title {
  color: var(--blue);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.disclaimer-title:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--green);
  margin-top: 0.75rem;
}

.disclaimer-content {
  color: #5a5a5a;
  line-height: 1.6;
}

.disclaimer-content p {
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.footer-bottom {
  background: var(--blue);
  color: white;
  padding: 2rem 0;
}

.footer-bottom p {
  color: white;
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-links li {
  display: inline-block;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--green);
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .disclaimer-content p {
    font-size: 0.8125rem;
  }
  
  .disclaimer-section {
    padding: 2rem 1rem;
  }
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }
  
  .hero {
    min-height: 70vh;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .quote-card {
    padding: 1.5rem;
  }
  
  .testimonial-card:before {
    display: none;
  }
}

/* ANIMATIONS */
.fade-in {
  animation: fade 0.8s ease-in both;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-in both;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* PRIVACY PAGE */
.privacy-section h5 {
  margin-top: 2rem;
  color: var(--blue);
}

/* PLANS PAGE */
.plan-card {
  border-radius: 12px;
  border: 1px solid #e9ecef;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.plan-header {
  background: var(--light-blue);
  padding: 1.5rem;
  border-bottom: 1px solid #e9ecef;
}

.plan-body {
  padding: 1.5rem;
}

.plan-features {
  margin-bottom: 1.5rem;
}

.plan-features li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.75rem;
}

.plan-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--green);
  position: absolute;
  left: 0;
}

.plan-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
}

.premium-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--orange);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* RESOURCES PAGE */
.resource-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.resource-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.resource-body {
  padding: 1.5rem;
}

.resource-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--light-blue);
  color: var(--blue);
  margin-bottom: 0.75rem;
}

/* FORMS AND VALIDATION */
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 0.25rem rgba(24, 166, 75, 0.25);
}

.btn-outline-primary {
    --bs-btn-color:            #003d7c;
    --bs-btn-border-color:     #003d7c;

    --bs-btn-hover-color:      #fff;
    --bs-btn-hover-bg:         #003d7c;
    --bs-btn-hover-border-color:#003d7c;

    /* 0,61,124 is the RGB equivalent of #003d7c */
    --bs-btn-focus-shadow-rgb: 0, 61, 124;

    --bs-btn-active-color:     #fff;
    --bs-btn-active-bg:        #003d7c;
    --bs-btn-active-border-color:#003d7c;
    --bs-btn-active-shadow:    inset 0 3px 5px rgba(0, 0, 0, 0.125);

    --bs-btn-disabled-color:   #003d7c;
    --bs-btn-disabled-bg:      transparent;
    --bs-btn-disabled-border-color:#003d7c;

    --bs-gradient: none;
}





/* Single Step Form Styles */
.consent-wrapper {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
}

.consent-label {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6c757d;
}

.consent-scroll {
  max-height: 200px;
  overflow-y: auto;
  padding-right: 0.5rem;
  margin-top: 0.5rem;
}

.consent-scroll::-webkit-scrollbar {
  width: 6px;
}

.consent-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.consent-scroll::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

.consent-scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.consent-scroll p {
  margin-bottom: 0.75rem;
}

.consent-scroll ol {
  padding-left: 1.5rem;
}

.consent-scroll li {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.consent-scroll a {
  color: var(--blue);
  text-decoration: underline;
}
.single-step-section {
  min-height: calc(100vh - 76px);
}

.form-side {
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.info-side {
  background: linear-gradient(135deg, var(--blue) 0%, #002a5c 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.info-side::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.form-wrapper {
  width: 100%;
  max-width: 500px;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.step-indicator {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #6c757d;
  position: relative;
  transition: all 0.3s ease;
}

.step-indicator.active {
  background: var(--green);
  color: white;
  transform: scale(1.1);
}

.step-indicator.completed {
  background: var(--blue);
  color: white;
}

.step-indicator:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -100%;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background: #e9ecef;
}

.form-container {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.form-step {
  display: none;
  animation: slideIn 0.5s ease;
}

.form-step.active {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 2rem;
  text-align: center;
}

.form-control-lg {
  font-size: 1.125rem;
  padding: 0.75rem 1rem;
  border: 2px solid #e9ecef;
}

.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 0.25rem rgba(24, 166, 75, 0.25);
}

.btn-outline-primary {
  border-width: 2px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary.selected {
  background: var(--blue);
  color: white;
}

.success-animation {
  font-size: 5rem;
  animation: bounce 1s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.info-card {
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 5px solid var(--green);
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefit-item {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.benefit-item i {
  font-size: 2rem;
  flex-shrink: 0;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.testimonial-card p {
  font-style: italic;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.carrier-result-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.carrier-result-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.carrier-logo {
  max-height: 50px;
  max-width: 150px;
}

/* Responsive */
@media (max-width: 991px) {
  .info-side {
    display: none;
  }
  
  .form-side {
    min-height: 100vh;
  }
}

@media (max-width: 576px) {
  .form-wrapper {
    padding: 1rem;
  }
  
  .form-container {
    padding: 1.5rem;
  }
  
  .step-title {
    font-size: 1.5rem;
  }
}
