/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0
*/


.selected {
  border-color: #f6e05e !important;
  background-color: #fffbeb !important; 
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.06);
}


.suggestion-item:hover,
.suggestion-item.selected {
  background: #fff5f5;
}

.first-box, .second-box {
    display: flex
;
}
[data-id="progress-container"] {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #fff;
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}


.form-step.collapsed {
  opacity: 0.9;
  overflow: hidden;
  transition: max-height 300ms ease, opacity 300ms ease;
}
.form-step.active {
  max-height: 4000px;
  opacity: 1;
}

.step-check-badge {
  position: absolute;
  top: 16px;
  right: 10px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #10B981; 
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 6px 18px rgba(16,185,129,0.18);
  z-index: 60; 
  display: none; 
}


.edit-step-btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.15);
  padding: 8px 12px;
  border-radius: 8px;
  display: none;
  gap: 8px;
  align-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  font-size: 13px;
  color: #374151;
  transition: all 0.2s ease;
}

.edit-step-btn:hover {
  background: #f9fafb;
  border-color: rgba(0,0,0,0.2);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.edit-step-btn svg {
  color: #6b7280;
  stroke-width: 2;
}

.edit-step-btn:hover svg {
  color: #374151;
}


/*#selectionOverlay {*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  background: rgba(255,255,255,0.7);*/
/*  z-index: 55;*/
/*  opacity: 0;*/
/*  pointer-events: none;*/
/*  transition: opacity 180ms ease, transform 180ms ease;*/
/*  border-radius: 8px;*/
/*}*/


#selectionOverlay.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#selectionOverlay.hidden {
  opacity: 0;
  pointer-events: none;
}


/*#selectionOverlay .check-badge {*/
/*  width: 120px;*/
/*  height: 120px;*/
/*  border-radius: 28px;*/
/*  background: #10B981;*/
/*  color: #fff;*/
/*  display:flex;*/
/*  align-items:center;*/
/*  justify-content:center;*/
/*  box-shadow: 0 10px 30px rgba(16,185,129,0.18);*/
/*  font-size: 56px;*/
/*  transform: scale(0.92);*/
/*  transition: transform 220ms ease;*/
/*}*/

/*#selectionOverlay.show .check-badge {*/
/*  transform: scale(1);*/
/*}*/


/*.selection-overlay {*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  display: none;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  background: rgba(255, 255, 255, 0.95);*/
/*  z-index: 50;*/
/*  opacity: 0;*/
/*  transition: opacity 300ms ease;*/
/*  border-radius: 8px;*/
/*}*/

.selection-overlay.show {
  display: flex;
  opacity: 1;
}

.selection-overlay .overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


/*.selection-overlay .check-circle {*/
/*  width: 80px;*/
/*  height: 80px;*/
/*  background: #10B981;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  color: white;*/
/*  transform: scale(0.8);*/
/*  transition: transform 200ms ease;*/
/*  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);*/
/*}*/

/*.selection-overlay.show .check-circle {*/
/*  transform: scale(1);*/
/*}*/


.form-step.locked {
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 0;
  position: relative;
  padding: 40px;
  overflow: visible;
}


.form-step.locked::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(249, 250, 251, 0.8);
  z-index: 10; 
}


.form-step.locked .step-check-badge,
.form-step.locked .edit-step-btn {
  z-index: 60;
  position: absolute;
}


.form-step.completed {
  background: #f8fafc;
  border-radius: 8px;
  position: relative;
  opacity: 0.95;
}

.form-step.completed .edit-step-btn {
  z-index: 60;
  position: absolute;
}


label.selected {
  border-color: #10B981 !important;
  background-color: #f0fdf4 !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}


@media (max-width: 900px) {
  .step-check-badge {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .edit-step-btn {
    right: 12px;
    bottom: 12px;
    padding: 6px 10px;
    font-size: 12px;
  }
  #selectionOverlay .check-badge {
    width: 92px;
    height: 92px;
    font-size: 44px;
  }
}



/* ---- Disable selection overlay visuals (recommended) ---- */
#selectionOverlay,
#selectionOverlay .check-badge,
.selection-overlay {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}





/* ---------- Attractive Success Message (rounded tick) ---------- */
/* Place this at the end of your theme stylesheet */

.success-message,
#successMessage {
  max-width: 720px;
  margin: 22px auto;
  padding: 22px 22px 22px 88px;        /* leave space for the tick circle on the left */
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f7feff 100%);
  box-shadow: 0 14px 40px rgba(35, 50, 80, 0.08), 0 2px 6px rgba(35, 50, 80, 0.04);
  border: 1px solid rgba(60, 75, 147, 0.06); /* subtle border using your brand-ish color */
  color: #0f1724;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  position: relative;
  overflow: visible;
  transition: transform 300ms cubic-bezier(.2,.9,.25,1), opacity 220ms ease;
  opacity: 0;
  transform: translateY(6px) scale(0.995);
}

/* animate in when visible (works when .hidden class is removed by your JS) */
.success-message:not(.hidden),
#successMessage:not(.hidden) {
  animation: successPop 420ms cubic-bezier(.2,.9,.25,1);
  opacity: 1;
  transform: none;
}

/* left rounded tick circle */
.success-message::before,
#successMessage::before {
  content: "✓";
  position: absolute;
  left: 18px;                 /* distance from left edge */
  top: 50%;
  transform: translateY(-50%) scale(0.96);
  width: 84px;
  height: 84px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, #3c4b93 0%, #10b981 100%); /* blend brand + green */
  box-shadow: 0 18px 40px rgba(16,185,129,0.12), 0 6px 18px rgba(60,75,147,0.08);
  z-index: 100;
  transition: transform 320ms cubic-bezier(.2,.9,.25,1), box-shadow 220ms ease;
  transform-origin: center;
  opacity: 1;
}

/* slight bounce on the tick when the message appears */
.success-message:not(.hidden)::before,
#successMessage:not(.hidden)::before {
  animation: checkBounce 560ms cubic-bezier(.2,.9,.25,1);
}

/* supporting copy styling inside message */
.success-message .success-title,
#successMessage .success-title {
  display: block;
  font-size: 18px;
  color: #0b1a2b;
  margin-bottom: 6px;
  font-weight: 700;
}

.success-message .success-sub,
#successMessage .success-sub {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  opacity: 0.95;
  margin-top: 2px;
}

/* optional action button inside message */
.success-message .success-cta,
#successMessage .success-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: #3c4b93;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(60,75,147,0.12);
}

/* Responsiveness */
@media (max-width: 700px) {
  .success-message,
  #successMessage {
    padding-left: 22px;
    padding-right: 22px;
  }
  .success-message::before,
  #successMessage::before {
    left: 12px;
    top: 12px;
    transform: none;
    width: 64px;
    height: 64px;
    font-size: 34px;
  }
}

/* Animations */
@keyframes successPop {
  0%   { opacity: 0; transform: translateY(10px) scale(.995); }
  60%  { opacity: 1; transform: translateY(-6px) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes checkBounce {
  0%   { transform: translateY(-6px) scale(.8); opacity: 0.6; }
  40%  { transform: translateY(2px) scale(1.06); opacity: 1; }
  70%  { transform: translateY(-2px) scale(.98); }
  100% { transform: translateY(0) scale(1); }
}

/* small utility to hide original 'hidden' class fallback */
.success-message.hidden,
#successMessage.hidden {
  display: none !important;
  opacity: 0 !important;
}

#insuranceSuggestions {
  max-height: 250px;
  overflow-y: auto;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  z-index: 1000;
  position: absolute;
  width: 100%;
}


#step-liability .container, #step-dontknow .container,  #step-without, #step-fault .container, #step-comprehensive .container {
            margin: 20px auto;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 40px;
        }
       
        #step-liability .color-bar,  #step-without .color-bar, #step-comprehensive .color-bar {
            height: 4px;
            width: 50px;
        }
        #step-liability .yellow,  #step-without .yellow, #step-comprehensive .yellow {
            background-color: #FFD700;
        }
        #step-liability .red,  #step-without .red, #step-comprehensive .red {
            background-color: #FF0000;
        }
        #step-liability .close-btn,  #step-without .close-btn, #step-comprehensive .close-btn {
            cursor: pointer;
            font-size: 24px;
        }
        #step-liability .content-section, #step-dontknow .content-section,  #step-without .content-section, #step-fault .content-section, #step-comprehensive .content-section{
            margin-bottom: 30px;
        }
        #step-liability h1,  #step-without h1, #step-dontknow h1, #step-fault h1, #step-comprehensive h1{
            color: #333;
            font-size: 24px;
        }
        #step-liability .green-text,  #step-without .green-text, #step-comprehensive .green-text {
            color: #0C9D6E;
        }
        #step-liability h2,  #step-without h2,  #step-comprehensive h2 {
            color: #333;
            font-size: 20px;
            margin-bottom: 15px;
        }
        #step-liability .features,  #step-without .features,  #step-fault .features,  #step-comprehensive .features{
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 20px 0;
        }
        #step-liability .feature,  #step-without .feature,  #step-fault .features,  #step-comprehensive .features{
            flex: 1;
            min-width: 250px;
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }
        #step-liability .icon-container,  #step-without .icon-container,  #step-fault .icon-container,  #step-comprehensive .icon-container{
            position: relative;
            flex-shrink: 0;
        }
        #step-liability .main-icon,  #step-without .main-icon,  #step-fault .main-icon,  #step-comprehensive .main-icon{
            width: 64px;
            height: 64px;
        }
        #step-liability .checkmark,  #step-without .checkmark,  #step-fault .checkmark,  #step-comprehensive .checkmark{
            position: absolute;
            top: -3px;
            left: 43px;
            width: 24px;
            height: 24px;
        }
        #step-liability .feature-text,  #step-without .feature-text,  #step-fault .feature-text,  #step-comprehensive .feature-text{
            flex: 1;
        }
       
        
        #step-liability .price-info,  #step-without .price-info,  #step-comprehensive .price-info {
            color: #666;
            font-size: 14px;
        }
#appointmentCalendar.calendar-loading {
    opacity: 0.6;
    pointer-events: none;
}



#step-dontknow .container, #step-dontknow .container,  #step-without, #step-fault .container, #step-comprehensive .container {
            margin: 20px auto;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 40px;
        }
       
        #step-dontknow .color-bar,  #step-without .color-bar, #step-comprehensive .color-bar {
            height: 4px;
            width: 50px;
        }
        #step-dontknow .yellow,  #step-without .yellow, #step-comprehensive .yellow {
            background-color: #FFD700;
        }
        #step-dontknow .red,  #step-without .red, #step-comprehensive .red {
            background-color: #FF0000;
        }
        #step-dontknow .close-btn,  #step-without .close-btn, #step-comprehensive .close-btn {
            cursor: pointer;
            font-size: 24px;
        }
        #step-dontknow .content-section, #step-dontknow .content-section,  #step-without .content-section, #step-fault .content-section, #step-comprehensive .content-section{
            margin-bottom: 30px;
        }
        #step-dontknow h1,  #step-without h1, #step-dontknow h1, #step-fault h1, #step-comprehensive h1{
            color: #333;
            font-size: 24px;
        }
        #step-dontknow .green-text,  #step-without .green-text, #step-comprehensive .green-text {
            color: #0C9D6E;
        }
        #step-dontknow h2,  #step-without h2,  #step-comprehensive h2 {
            color: #333;
            font-size: 20px;
            margin-bottom: 15px;
        }
        #step-dontknow .features,  #step-without .features,  #step-fault .features,  #step-comprehensive .features{
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 20px 0;
        }
        #step-dontknow .feature,  #step-without .feature,  #step-fault .features,  #step-comprehensive .features{
            flex: 1;
            min-width: 250px;
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }
        #step-dontknow .icon-container,  #step-without .icon-container,  #step-fault .icon-container,  #step-comprehensive .icon-container{
            position: relative;
            flex-shrink: 0;
        }
        #step-dontknow .main-icon,  #step-without .main-icon,  #step-fault .main-icon,  #step-comprehensive .main-icon{
            width: 64px;
            height: 64px;
        }
        #step-dontknow .checkmark,  #step-without .checkmark,  #step-fault .checkmark,  #step-comprehensive .checkmark{
            position: absolute;
            top: -3px;
            left: 43px;
            width: 24px;
            height: 24px;
        }
        #step-dontknow .feature-text,  #step-without .feature-text,  #step-fault .feature-text,  #step-comprehensive .feature-text{
            flex: 1;
        }
       
        
        #step-dontknow .price-info,  #step-without .price-info,  #step-comprehensive .price-info {
            color: #666;
            font-size: 14px;
        }












#appointmentCalendar.calendar-ready {
    opacity: 1;
    pointer-events: auto;
}

/* Status messages */
.calendar-status-message {
    transition: all 0.3s ease;
}

/* Available date styling */
.fc-day-available {
    background-color: #10B981 !important;
    cursor: pointer;
}

.fc-day-unavailable {
    background-color: #F3F4F6 !important;
    cursor: not-allowed;
}


 h2.text-lg.font-bold.text-gray-900 {
    display: flex;
}

 h2.text-lg.font-bold.text-gray-900 {
    display: flex;
}

 cg-icon.h-12.w-12.self-start, cg-icon.h-12.w-12.self-start {
    font-size: 40px;
}



.glass-option {
    text-align: center !important;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 0 20px rgb(155 159 157 / 20%);
    border: none;
    padding: 40px !important;
}

.glass-option span {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    font-size: 16px;
    color: #000;
    margin-left: 0 !important;
}

.main-img-car img {
    width: auto;
    object-fit: cover;
    height: auto;
}

.damaged-section {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.damage-option {
    margin: 0 !important;
}

.damage-option span {
    margin: 0;
    display: block;
    text-align: center;
    padding-top: 20px;
}

.less-text {
    border-radius: 50px;
}

.form-step.information-in {
    margin-top: 12px;
}

.feature .main-icon {
    background: #d3d1d1;
    padding: 17px;
    border-radius: 10px;
}

.features .feature {
    display: flex;
    align-items: center;
}

.feature .main-icon img {
    width: 30px !important;
    height: 30px !important;
}


.features .feature .feature-text {
    margin-left: 15px;
}


.insurance-heanding {
    padding: 20px 0px;
    margin: 0;
}

.should-headnig{
    padding: 15px 0px;
    margin: 0;
}

.preferred-text{
    padding: 15px 0px;
    margin: 0;
}


.fc-scrollgrid-sync-inner {
    padding: 8px 0px;
}

table.fc-col-header {
    margin: 0;
}

.license-text{
    padding: 8px 0px;
}

.your-in{
    padding: 8px 0px;
}

.vehicle-input{
    margin-top: 15px ;
}

.additional-vx{
    padding: 8px 0px;;
}

label.service-option {
    display: inline-flex;
    align-items: center;
    width: 100%;
}

label.service-option input {
    margin-right: 15px;
}

.form-step.active {
    padding-top: 30px;
}


@media(max-width:767px){
    
    .damaged-section {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.glass-option {
    padding: 20px !important;
}

.less-text {
    border-radius: 15px;
}

}


/* Additional Services Styles */
.service-option {
    transition: all 0.3s ease;
    position: relative;
}

.service-option input:checked + div {
    border-color: #dc2626; /* brand-red */
    background-color: #fef2f2; /* red-50 */
}

.service-option input:checked + div .checkmark {
    background-color: #dc2626; /* brand-red */
    border-color: #dc2626;
}

.service-option input:checked + div .checkmark svg {
    display: block;
}

.service-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Checkmark animation */
.checkmark {
    transition: all 0.3s ease;
}

.service-option input:checked + div .checkmark {
    animation: checkmarkPop 0.3s ease;
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Icon colors on selection */
.service-option input:checked + div .w-12 {
    background-color: #dc2626;
}

.service-option input:checked + div .w-12 svg {
    color: white;
}

