@font-face {
    font-family: 'OratorStdMedium';
    src: url('../../fonts/OratorStdMedium.eot');
    src: url('../../fonts/OratorStdMedium.eot') format('embedded-opentype'),
         url('../../fonts/OratorStdMedium.woff2') format('woff2'),
         url('../../fonts/OratorStdMedium.woff') format('woff'),
         url('../../fonts/OratorStdMedium.ttf') format('truetype'),
         url('../../fonts/OratorStdMedium.svg#OratorStdMedium') format('svg');
}

body 
	{
		margin: 0;
		padding: 0;
		color: #000;
		background-color: #FFFFFF;
		font-family:'Open Sans Condensed', sans-serif;
		letter-spacing:1.5px;
		font-size: 75%;
		line-height: 1.4;
		

	}
.container 
	{
		width: 100%;
		background-color: #FFFFFF;
		float: none;
		height: auto;
		margin-top: 120px;
		
	
	}



/* ------- Start of Main Menu ------------------------------------------------------------------------*/

/* Fixed Header */
.fixed-header {
  position: fixed;
  top: 0;
	left: 0;
  width: 100%;
	z-index: 99999;
	background-color: #09c;
	
}

/* Top Menu */
.top-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60%;
  margin: 0 auto;
  background: #09c;
  padding: 10px 0;
  height: 20px;
	z-index: 99999;
	
}

.phone-number {
  display: flex;
  align-items: center;
  gap: 5px;
	

}
.phone-number a{
 
	font-weight: 900;
	text-decoration: none;
}
.phone-number a:hover {
	color: #ddd;
}
.phone-number span
{
	padding-right: 5px;
}

.phone-icon {
  width: 24px;
  height: 24px;
	margin-right: 10px;
}
.cta-call-for-help {
	color: #333;
	font-size: 24px;
}
.phone-link {
  color: #fff; /* Blue option */
  font-size: 24px;
  text-decoration: none;
  font-family: 'OratorStdMedium', sans-serif;
	
}




.quote-button .btn-quote {
  background: #F36D26; /* Orange */
  color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  font-family: candara;
  font-weight: bold;
	letter-spacing: 3px;
	margin: 3px;
	 box-shadow:
0 0 8px rgba(255,255,255,0.8),
              0 0 16px rgba(255,255,255,0.8);
}
.quote-button .btn-quote:hover {
  background: #F88C4A;
}
/* Main Menu */
.main-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #333333; /* Dark Grey */
  padding: 0;
	position: fixed;
	z-index: 99999;
	
 
}

.logo {
  margin-right: 20px;
}
.logo img
{
	height: 75px;
	Width: 100px;
	margin: 3px;
}

.logo-full {
  width: 275px;
  height: 182px;
  display: block;
}

.logo-small {
  width: 50px;
  height: 50px;
  display: none;
}

.nav-menu {
  position: relative;
}

.menu-list {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.menu-list li {
  position: relative;
}

.menu-list li a {
  color: #fff;
  font-size: 18px;
  font-family: candara;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
	border-radius: 8px;
}

.menu-list li:hover > a {
  background: #666666; /* Medium Grey hover */
}

.dropdown {
  display: none;
  position: absolute;
  background: #333333;
  list-style: none;
  padding: 0;
  min-width: 275px;
  top: 100%;
  left: 0;
	z-index: 1000;
	border-radius: 8px;
	 box-shadow: 0 0 8px rgba(255,255,255,0.5),
              0 0 16px rgba(255,255,255,0.5);
}

.menu-list li:hover .dropdown {
  display: block;
}

.dropdown li a {
  font-size: 16px;
  padding: 8px 15px;
}

.dropdown li:hover a {
  background: #999999; /* Light Grey hover */
}

.hamburger {
  display: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
}

/* Shrink on Scroll */
.shrink .top-menu {
  height: 40px;
  padding: 2px 0;
}

.shrink .main-menu {
  height: 40px;
}

.shrink .logo-full {
  display: none;
	
}

.shrink .logo-small {
  display: block;
	width: auto;
	height: 35px;
}
.shrink .menu-list li:hover > a {
  padding: 5px 10px 5px 10px; /* Medium Grey hover */
}
.shrink .dropdown {
  display: none;

  top: 35px;
 
}
.orange-bar
{
	width:100%;
	position: absolute;
	background-color: #F36D26;
	height: 5px;
	bottom: 0;
	left: 0;
	
}
@media (max-width: 1024px) {
  
	/* --- Top menu and Main Menu 1024 PX ------------------------------------------------------ */
	
	.top-menu {
    width: 80%;
  }
  .main-menu {
    justify-content: space-between;
    padding: 0 15px;
  }
  .hamburger {
    display: block;
	  margin-right:15px;
  }
  .menu-list {
    display: none;
    position: fixed;
    top: 115px; /* Top (40px) + Main (75px) */
    left: 0;
    width: 100%;
    background: #333333;
    flex-direction: column;
    z-index: 9998;
  }
  .menu-list.active {
    display: flex;
  }
  .dropdown {
    position: static;
    width: 100%;
    min-width: 0; /* Remove fixed min-width */
    box-shadow: none;
  }
  .menu-list li a {
    padding: 12px 20px;
    text-align: left;
  }
  .shrink .menu-list {
    top: 70px; /* Top (30px) + Main (40px) */
  }
}
@media (max-width: 800px) {
	  .phone-number a {
    font-size: 20px;
  }
	 .phone-icon {
    width: 20px;
    height: 20px;
  }
	.cta-call-for-help {
		font-size: 20px;
	}
	 .quote-button .btn-quote {
   
    font-size: 16px;
    
  }
}
@media (max-width: 768px) {
 
	/* --- Top menu and Main Menu 768 PX ------------------------------------------------------ */
	.top-menu {
    width: 90%;
    padding: 8px 10px;
  }
  .phone-number {
    flex-shrink: 1; /* Allow shrinking */
    max-width: 65%; /* Cap width */
  }
	.cta-call-for-help {
		font-size: 16px;
	}
  .phone-number a {
    font-size: 16px;
  }
  .phone-icon {
    width: 18px;
    height: 18px;
  }
  .quote-button {
    flex-shrink: 1; /* Allow shrinking */
    max-width: 50%; /* Cap width */
  }
  .quote-button .btn-quote {
    padding: 4px 10px;
    font-size: 14px;
    letter-spacing: 1px;
  }
  .main-menu {
    height: 60px;
  }
  .logo img {
    height: 50px;
    width: auto; /* Let width scale with height */
    max-width: 100%; /* Prevent overflow */
  }
  .shrink .top-menu {
    height: 25px;
    padding: 4px 10px;
  }
  .shrink .main-menu {
    height: 35px;
  }
  .shrink .logo-small {
    height: 30px;
  }
  .hamburger {
    font-size: 24px;
    padding: 8px;
  }
  .menu-list {
    top: 100px;
  }
  .shrink .menu-list {
    top: 60px;
  }
}
@media (max-width: 503px) {
	.cta-call-for-help {
		display: none;
	}
}
/* --- Top menu and Main Menu 480 PX ------------------------------------------------------ */
@media (max-width: 480px) {

	.fixed-header {
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
  .top-menu {
    width: 100%;
    padding: 5px 10px;
    flex-wrap: wrap; /* Allow wrapping if needed */
  }
  .phone-number {
    max-width: 60%; /* Slightly more room */
  }
  .phone-number a {
    font-size: 16px;
  }
  .phone-number span {
    display: none; /* Hide "Call for HELP:" */
  }
  .phone-icon {
    width: 18px;
    height: 18px;
  }
  .quote-button {
    max-width: 40%; /* Adjust to fit */
	  margin-right: 15px;
  }
  .quote-button .btn-quote {
    padding: 2px 8px;
    font-size: 16px;
  }
  .main-menu {
    height: 50px;
    padding: 0 10px;
	  margin-bottom:-40px;
  }
	
  .logo img {
    height: 40px;
    width: auto;
    max-width: 100%;
  }
  .hamburger {
    font-size: 20px;
    padding: 5px;
	  margin-right:15px;
  }
  .menu-list {
    top: 90px;
  }
  .shrink .menu-list {
    top: 50px;
  }
  .menu-list li a {
    font-size: 16px;
    padding: 10px 15px;
  }
  .dropdown li a {
    font-size: 16px;
    padding: 8px 15px;
  }
}
@media (max-width: 400px) {
  .phone-number {
    max-width: 50%; /* Slightly more room */
  }
  .quote-button {
    max-width: 50%; /* Adjust to fit */
  }

}
@media (max-width: 340px) {
	.phone-icon
	{
		display:none;
	}
}
/* --- Top menu and Main Menu 320 PX ------------------------------------------------------ */
@media (max-width: 320px) {

	.top-menu {
    padding: 3px 5px;
  }
  .phone-number {
    max-width: 55%;
  }
  .phone-number a {
    font-size: 14px;
  }

  .quote-button {
    max-width: 45%;
  }
  .quote-button .btn-quote {
    padding: 2px 6px;
    font-size: 10px;
  }
  .main-menu {
    height: 50px;
  }
  .logo img {
    height: 30px;
    width: auto;
    max-width: 100%;
  }
  
  .menu-list {
    top: 80px;
  }
  .shrink .menu-list {
    top: 43px;
  }
	}
	
/*----- Instant Quote Request Form -----------------------------------------------------------*/

#quote-instant-quote-form {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
	min-height: 600px;
}


#quote-instant-quote-form h1 {
	font-size: 40px !important;
	font-family: OratorStdMedium;
	text-align: center;
	margin-bottom: 0;
	margin-top: 0px;
	letter-spacing: -3px;
}
#quote-instant-quote-form h1 span {
    color: #09c;
}
/* Subtitle Styling */
.quote-step-title {
  text-align: center;
  font-size: 36px !important;
  margin: 0px 0px 20px 0px;;
  font-family: OratorStdMedium !important;
  color: #333;
  letter-spacing: -3px;
}
.quote-step-subtitle {
  font-family: Candara, Arial, sans-serif;
  font-size: 20px;
  color: #999;
  text-align: center;
  margin: 10px 0 20px;
  font-weight: normal;
}
.quote-step-description{
	text-align: center;
	font-family: Candara;
	font-size: 24px;
	color: #999;
	margin-top: 10px;
}
.quote-step {
  margin-bottom: 20px;
}
.quote-step p {
  font-size: 24px;
	text-align: center;
	margin-bottom: 30px;
	font-family: Candara;
	color: #999 !important;
	
}
/* Card Containers */
.quote-device-selectors, .quote-subtype-selectors, .quote-symptoms-container, .quote-capacity-container, .quote-server-type-selectors {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 0 auto;
}

/* Device Selectors (Step 1): 3 columns */
.quote-device-selectors[data-options="6"] {
  max-width: 810px;
  width: 810px;
}

/* Subtypes and Symptoms: 3 columns for 6 or fewer cards */
.quote-subtype-selectors[data-options="6"], .quote-symptoms-container[data-options="6"] {
  max-width: 810px;
  width: 810px;
}

/* Subtypes, Symptoms, Server Types, and Capacity: 4 columns for more than 6 cards */
.quote-subtype-selectors[data-options="4"], .quote-symptoms-container[data-options="4"], .quote-server-type-selectors[data-options="4"]{
  max-width: 1090px;
  width: 1090px;
}

/* Symptom Cards (including Phone Failure Symptoms) */
.quote-symptoms-container .quote-symptom-card,
.quote-symptoms-container .quote-raid-failure-symptom-card,
.quote-phone-failure-symptoms-container .quote-phone-failure-symptom-card {
  width: 250px;
  height: 250px;
  max-width: 250px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 15px;
  cursor: pointer;
  transition: all 0 VitalSource: https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js
  position: relative;
  flex: 0 0 250px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

/* Hide Checkboxes */
.quote-symptom-card input[type="checkbox"],
.quote-raid-failure-symptom-card input[type="checkbox"],
.quote-phone-failure-symptom-card input[type="checkbox"] {
  display: none !important;
}

/* Hover and Active Effects */
.quote-symptom-card:hover, .quote-symptom-card.active,
.quote-raid-failure-symptom-card:hover, .quote-raid-failure-symptom-card.active,
.quote-phone-failure-symptom-card:hover, .quote-phone-failure-symptom-card.active {
  outline: 3px solid #f28c38;
  box-shadow: 0 0 10px 5px rgba(242, 140, 56, 0.7);
}

/* Hover and Active Effects for All Card Types */
.quote-device-card:hover .quote-hover-circle,
.quote-device-card.active .quote-hover-circle,
.quote-subtype-card:hover .quote-hover-circle,
.quote-subtype-card.active .quote-hover-circle,
.quote-symptom-card:hover .quote-hover-circle,
.quote-symptom-card.active .quote-hover-circle,
.quote-capacity-card:not(.capacity-card):hover .quote-hover-circle,
.quote-capacity-card:not(.capacity-card).active .quote-hover-circle,
.quote-server-type-card:hover .quote-hover-circle,
.quote-server-type-card.active .quote-hover-circle,
.quote-raid-failure-symptom-card:hover .quote-hover-circle,
.quote-raid-failure-symptom-card.active .quote-hover-circle,
.quote-phone-failure-symptom-card:hover .quote-hover-circle,
.quote-phone-failure-symptom-card.active .quote-hover-circle {
  background: #f28c38;
}
/* Remove overflow: hidden to prevent clipping */
.quote-device-card,
.quote-subtype-card,
.quote-symptom-card,
.quote-capacity-card:not(.capacity-card),
.quote-server-type-card,
.quote-raid-failure-symptom-card,
.quote-phone-failure-symptom-card {
  overflow: visible;
}
/* Symptom Row for RAID and Phone Failure Symptoms */
.quote-symptom-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  max-width: 1090px;
  width: 100%;
  justify-content: center;
}

/* Capacity: 3 columns for non-RAID (now unused, kept for compatibility) */
.quote-capacity-container{
  max-width: 810px;
  width: 810px;
}

/* Card Styling (General) */
.quote-device-card, .quote-subtype-card, .quote-capacity-card:not(.capacity-card), .quote-server-type-card {
  width: 250px;
  height: 250px;
  max-width: 250px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  flex: 0 0 250px;
  box-sizing: border-box;
}



.quote-capacity-card.capacity-card {
  width: 100px;
  height: 100px;
  max-width: 100px;
  background: white;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 0 0 100px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1.2;
	font-family: Candara !important;
  font-weight: normal; /* Consistent with other text */
}
/* Ensure span inherits font */
.quote-capacity-card.capacity-card span {
  font-family: Candara;
  text-align: center;
  display: block;
  width: 100%;
  padding: 0 5px;
  box-sizing: border-box;
}
.quote-capacity-card.capacity-card:hover, .quote-capacity-card.capacity-card.active {
  outline: 3px solid #f28c38;
  box-shadow: 0 0 10px 5px rgba(242, 140, 56, 0.7);
}

/* Hover and Active Effects for Other Cards */
.quote-device-card:hover, .quote-device-card.active,
.quote-subtype-card:hover, .quote-subtype-card.active,
.quote-capacity-card:not(.capacity-card):hover, .quote-capacity-card:not(.capacity-card).active,
.quote-server-type-card:hover, .quote-server-type-card.active {
  outline: 3px solid #f28c38;
  box-shadow: 0 0 10px 5px rgba(242, 140, 56, 0.7);
}

.quote-device-card:hover .quote-hover-circle, .quote-device-card.active .quote-hover-circle,
.quote-subtype-card:hover .quote-hover-circle, .quote-subtype-card.active .quote-hover-circle,
.quote-capacity-card:not(.capacity-card):hover .quote-hover-circle, .quote-capacity-card:not(.capacity-card).active .quote-hover-circle,
.quote-server-type-card:hover .quote-hover-circle, .quote-server-type-card.active .quote-hover-circle {
  background: #f28c38;
}

/* Card Content */
.quote-device-card img, .quote-subtype-card img, .quote-symptom-card img, .quote-capacity-card:not(.capacity-card) img, .quote-server-type-card img,
.quote-raid-failure-symptom-card img, .quote-phone-failure-symptom-card img {
  width: 60px;
  height: 60px;
  margin-top: 15px;
}

.quote-device-card h3, .quote-subtype-card h3, .quote-symptom-card h3, .quote-capacity-card:not(.capacity-card) h3, .quote-server-type-card h3,
.quote-raid-failure-symptom-card h3, .quote-phone-failure-symptom-card h3 {
  font-size: 26px;
  margin: 10px 0;
  font-family: OratorStdMedium;
}

.quote-device-card p, .quote-subtype-card p, .quote-symptom-card p, .quote-capacity-card:not(.capacity-card) p, .quote-server-type-card p,
.quote-raid-failure-symptom-card p, .quote-phone-failure-symptom-card p {
  font-size: 15px;
  margin: 0;
  font-family: candara;
}

/* Orange Hover Circle */
.quote-hover-circle {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #f28c38;
  background: transparent;
  transition: background 0.3s ease;
  z-index: 10; /* Ensure above other content */
}

/* Form Inputs */
#quote-phone-model, #quote-customer-info, .quote-delivery-options {
  margin: 20px auto;
  text-align: center;
}

#quote-phone-model-input, #quote-customer-info input, #quote-address, #quote-phone-model-detail {
  padding: 10px;
  font-size: 16px;
  margin: 5px;
  width: 80%;
  max-width: 400px;
}
.quote-phone-model-container label {
  display: block;
  margin-bottom: 10px;
  font-family: Candara, sans-serif !important;
  font-size: 16px;
}

/* Priority Selectors (Step 6 Non-RAID / Step 8 RAID) */
.quote-priority-selectors {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 810px;
  width: 810px;
  margin: 0 auto;
}

.quote-priority-card {
  width: 250px;
  height: 250px;
  max-width: 250px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  flex: 0 0 250px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
}

.quote-priority-card:hover, .quote-priority-card.active {
  outline: 3px solid #f28c38;
  box-shadow: 0 0 10px 5px rgba(242, 140, 56, 0.7);
}

.quote-priority-card .quote-hover-circle {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #f28c38;
  background: transparent;
  transition: background 0.3s ease;
  z-index: 10;
}

.quote-priority-card:hover .quote-hover-circle, .quote-priority-card.active .quote-hover-circle {
  background: #f28c38;
}

.quote-priority-card img {
  width: 60px;
  height: 60px;
  margin-top: 15px;
}

.quote-priority-card h3 {
  font-size: 26px;
  margin: 10px 0;
  font-family: OratorStdMedium;
}

.quote-priority-card p {
  font-size: 15px;
  margin: 0;
  font-family: Candara;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .quote-priority-selectors {
    max-width: 560px;
    width: 560px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .quote-priority-card {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
    margin: 15px;
  }
}

@media (max-width: 480px) {
  .quote-priority-selectors {
    max-width: 280px;
    width: 280px;
    flex-direction: column;
    align-items: center;
  }
  .quote-priority-card {
    flex: 0 0 100%;
    max-width: 250px;
    margin: 15px auto;
  }
}


/* Capacity Slider (now unused, kept for compatibility) */
#quote-capacity-slider-container {
  text-align: center;
  margin: 20px 0;
}

#quote-capacity-slider {
  width: 80%;
  max-width: 500px;
  height: 8px;
  background: #ddd;
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.2s;
}

#quote-capacity-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: #f28c38;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

#quote-capacity-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: #f28c38;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

#quote-capacity-slider:hover {
  background: #ccc;
}

#quote-capacity-labels {
  display: flex;
  justify-content: space-between;
  max-width: 500px;
  margin: 10px auto;
  font-size: 14px;
  color: #333;
}

#quote-capacity-labels span {
  flex: 1;
  text-align: center;
}

/* RAID Drives Slider */
#quote-raid-drives-slider-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Ensure horizontal centering */
  width: 100%;
  max-width: 800px; /* Constrain to prevent overflow */
  margin: 20px auto;
  gap: 20px;
}

.quote-raid-drives-card {
  width: 600px;
  min-height: 150px;
  background: white !important;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Center content inside card */
  margin: 0 auto; /* Additional centering fallback */
  gap: 20px;
}

#quote-raid-drives-slider {
  width: 550px;
  height: 20px;
  background: #eee;
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.2s;
  margin-top: -10px;
}

#quote-raid-drives-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: #09C !important;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
#quote-raid-drives-slider:hover {
  background: #ddd;
}
#quote-raid-drives-number {
  padding: 20px 30px;
  font-size: 30px;
  background: white !important;
  color: #333;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-color: #09c;
  min-width: 100px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-family: Candara, sans-serif;
}
/* Pricing Cards */
#quote-pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center cards horizontally */
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 1000px; /* Constrain card container */
  margin: 20px auto;
}

.quote-pricing-card {
  width: 300px;
  height: 500px;
  perspective: 1000px;
  background: transparent;
}

.quote-card-front, .quote-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  transition: transform 0.6s;
  overflow-x: hidden;
}

.quote-card-front {
  background: white;
  color: #333;
  transform: rotateY(0deg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  overflow-y: auto;
}

.quote-card-back {
  background: white;
  color: #333;
  transform: rotateY(180deg);
  text-align: left;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.quote-pricing-card:hover .quote-card-front {
  transform: rotateY(-180deg);
}

.quote-pricing-card:hover .quote-card-back {
  transform: rotateY(0deg);
}

/* Front styling */
.quote-moderate-card .quote-card-front h3 {
  background: #999;
  color: white;
  font-size: 20px;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin: 0;
  padding: 0;
  font-family: OratorStdMedium;
}

.quote-serious-card .quote-card-front h3 {
  background: #09C;
  color: white;
  font-size: 20px;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin: 0;
  padding: 0;
  font-family: OratorStdMedium;
  font-weight: 700;
}

.quote-critical-card .quote-card-front h3 {
  background: #F36D26;
  color: white;
  font-size: 20px;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin: 0;
  padding: 0;
}

.quote-card-front h4 {
  font-size: 20px;
  margin: 10px 0 5px;
  padding-left: 20px;
  color: #333;
  font-family: OratorStdMedium;
}

.quote-card-front .quote-problems-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  width: calc(100% - 20px);
}

.quote-moderate-card .quote-problems-list li::before {
  content: '✓';
  color: #999;
  font-weight: bold;
  font-size: 16px;
  margin-right: 10px;
}

.quote-serious-card .quote-problems-list li::before {
  content: '✓';
  color: #09C;
  font-weight: bold;
  font-size: 16px;
  margin-right: 10px;
}

.quote-critical-card .quote-problems-list li::before {
  content: '✓';
  color: #F36D26;
  font-weight: bold;
  font-size: 16px;
  margin-right: 10px;
}

.quote-card-front .quote-problems-list li {
  font-size: 16px;
  color: #333;
  margin: 5px 0 5px 20px;
  display: flex;
  align-items: center;
  font-family: candara;
}

.quote-card-front .quote-symptoms-list {
  list-style: disc;
  margin: 0 0 10px 0;
  padding-left: 40px;
  width: calc(100% - 20px);
}

.quote-card-front .quote-symptoms-list li {
  font-size: 16px;
  color: #333;
  margin: 5px 0;
  font-family: candara;
}

.quote-card-front p {
  font-size: 26px;
  color: #333;
  margin: 10px 0;
  text-align: center;
  width: 100%;
  font-weight: 700;
  font-family: OratorStdMedium;
}

/* Back styling */
.quote-moderate-card .quote-card-back h4 {
  color: #999;
  font-size: 18px;
  text-align: center;
  margin: 15px 0 10px;
  padding: 0;
  font-family: OratorStdMedium;
}

.quote-serious-card .quote-card-back h4 {
  color: #09C;
  font-size: 18px;
  text-align: center;
  margin: 15px 0 10px;
  padding: 0;
  font-family: OratorStdMedium;
}

.quote-critical-card .quote-card-back h4 {
  color: #F36D26;
  font-size: 18px;
  text-align: center;
  margin: 15px 0 10px;
  padding: 0;
  font-family: OratorStdMedium;
}

.quote-card-back p {
  font-size: 16px;
  color: #333;
  text-align: left;
  margin: 10px 20px;
  line-height: 1.4;
  flex-grow: 1;
  font-family: candara;
}

.quote-card-back .quote-back-contact {
  background: #999;
  color: white;
  font-size: 16px;
  text-align: center;
  width: 100%;
  height: 50px;
  line-height: 50px;
  margin: 0;
  padding: 0;
  font-family: candara;
}

.quote-serious-card .quote-back-contact {
  background: #09C;
}

.quote-critical-card .quote-back-contact {
  background: #F36D26;
}
/*----------Diagnosis Schedule button on final estimate page----------*/

/* Submission Message and Button */
.quote-submission-message {
  font-family: Candara, sans-serif;
  font-size: 22px !important;
  color: #666;
  text-align: center;
  margin: 0px 0;
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.quote-diagnosis-button {
  background-color: #09c;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  font-family: Candara, sans-serif;
  font-size: 18px;
  cursor: pointer;
  width: 250px;
  text-align: center;
}

.quote-diagnosis-button:hover {
  background-color: #008ab8;
}
/* Diagnosis Pop-up Styling */
.quote-diagnosis-popup {
  display: none; /* Allow JS override */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000; /* Increased to ensure visibility */
  justify-content: center;
  align-items: center;
  padding: 120px 20px;
  box-sizing: border-box;
  overflow-y: auto;
  opacity: 1 !important;
  visibility: visible !important;
}

.quote-diagnosis-popup-content {
  background: #ffffff !important;
  padding: 24px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  min-height: 200px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  font-family: Candara, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #333333 !important;
  z-index: 10001 !important;
}
.quote-diagnosis-popup-content p {
  margin: 0;
  padding: 0;
  color: #333333; /* Ensure text visibility */
	font-size: 18px;
	text-align: left;
}
.quote-diagnosis-popup-content p strong {
  margin: 0;
  padding: 0;
  color: #09c; /* Ensure text visibility */
	font-size: 18px;
	text-align: left;
}
.quote-diagnosis-popup-content span {
  margin: 0;
  padding: 0;
  color: #F36D26; /* Ensure text visibility */
  font-size: 18px;
	text-align: left;
	font-weight: bold;
}
.quote-diagnosis-popup-content h2 {
  margin: 0;
  padding: 0;
  color: #333; /* Ensure text visibility */
  font-size: 20px;
	text-align: center;
	
}

.quote-diagnosis-popup-close {
  display: block !important;
  width: 120px;
  margin: 24px auto 8px;
  background: #f28c38 !important;
  color: white !important;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 15px;
  font-family: Candara, Arial, sans-serif;
  text-align: center;
  transition: background 0.2s ease;
  pointer-events: auto !important;
  z-index: 10002 !important;
}
.quote-diagnosis-popup-close:hover {
  background: #e07b30;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .quote-diagnosis-popup {
    padding: 80px 10px;
  }

  .quote-diagnosis-popup-content {
    padding: 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .quote-diagnosis-popup-content h2 {
    font-size: 18px;
  }

  .quote-diagnosis-popup-close {
    width: 100px;
    padding: 8px 16px;
    font-size: 14px;
  }

  .quote-submission-message {
    font-size: 14px;
    gap: 10px;
  }

  .quote-diagnosis-button {
    width: 180px;
    font-size: 13px;
  }
}
/*-------------end of diagnosis schedule pop up section ---------------------------*/
/* Buttons */
button, .quote-get-estimate {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  font-size: 16px;
  background: #f28c38;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover, .quote-get-estimate:hover {
  background: #e07b30;
}

#quote-delivery-options button {
  margin: 10px;
}
#symptom-warning-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#symptom-warning-popup .popup-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#symptom-warning-popup h2 {
  font-size: 24px;
  margin-bottom: 10px;
  font-family: OratorStdMedium;
  color: #333;
}

#symptom-warning-popup p {
  font-size: 18px;
  margin-bottom: 20px;
  font-family: Candara, sans-serif;
  color: #333;
}

#symptom-warning-popup button {
  padding: 10px 20px;
  margin: 0 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background: #f28c38;
  color: white;
  font-size: 16px;
  font-family: Candara, sans-serif;
}

#symptom-warning-popup button:hover {
  background: #d9762e;
}

/* Responsive Breakpoints */
@media (max-width: 1090px) and (min-width: 769px) {
  .quote-subtype-selectors[data-options="4"],
  .quote-symptoms-container[data-options="4"],
  .quote-server-type-selectors[data-options="4"]
   {
    max-width: 1090px;
    width: 100%;
    overflow-x: auto;
  }
  .quote-symptom-row {
    max-width: 1090px;
    width: 100%;
    overflow-x: auto;
  }
}

@media (max-width: 768px) {
  .quote-device-selectors[data-options="6"],
  .quote-subtype-selectors[data-options="6"],
  .quote-symptoms-container[data-options="6"],
  .quote-subtype-selectors[data-options="4"],
  .quote-symptoms-container[data-options="4"],
  .quote-server-type-selectors[data-options="4"] {
    max-width: 560px;
    width: 560px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .quote-device-card, .quote-subtype-card, .quote-symptom-card, .quote-capacity-card:not(.capacity-card), .quote-server-type-card,
  .quote-raid-failure-symptom-card, .quote-phone-failure-symptom-card {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
    margin: 15px 15px;
  }
  .quote-symptom-row {
    max-width: 560px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  #quote-capacity-slider, #quote-raid-drives-slider {
    width: 90%;
    max-width: 400px;
    height: 10px;
  }
	#quote-raid-drives-slider {
    width: 100%;
    max-width: 360px;
  }
  #quote-capacity-slider::-webkit-slider-thumb, #quote-raid-drives-slider::-webkit-slider-thumb {
    width: 30px;
    height: 30px;
  }
  #quote-capacity-slider::-moz-range-thumb, #quote-raid-drives-slider::-moz-range-thumb {
    width: 30px;
    height: 30px;
  }
  #quote-capacity-labels {
    font-size: 12px;
    max-width: 90%;
  }
  #quote-capacity-labels span {
    padding: 0 5px;
  }
  #quote-step-raid-drives {
    padding: 10px;
  }
  .quote-raid-drives-card {
    width: 90%;
    max-width: 550px;
  }
  .quote-raid-drives-number {
    font-size: 22px;
    padding: 12px 25px;
    min-width: 80px;
  }
	 #quote-raid-drives-slider {
    width: 95%;
  }
  #quote-pricing-cards {
    flex-direction: column;
    align-items: center;
  }
  .quote-pricing-card {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
	#quote-instant-quote-form h1 {
	font-size: 30px !important;
		margin-top: 0px;
	
}
	.quote-step-description{
	font-size: 19px;
}
	.quote-step-title {
  font-size: 26px !important;

}
  .quote-device-selectors[data-options="6"],
  .quote-subtype-selectors[data-options="6"],
  .quote-symptoms-container[data-options="6"],
  .quote-subtype-selectors[data-options="4"],
  .quote-symptoms-container[data-options="4"],
  .quote-server-type-selectors[data-options="4"] {
    max-width: 280px;
    width: 280px;
    flex-direction: column;
    align-items: center;
  }
  .quote-device-card, .quote-subtype-card, .quote-symptom-card, .quote-capacity-card:not(.capacity-card), .quote-server-type-card,
  .quote-raid-failure-symptom-card, .quote-phone-failure-symptom-card {
    flex: 0 0 100%;
    max-width: 250px;
    margin: 15px auto;
  }
  .quote-symptom-row {
    max-width: 280px;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
	#quote-step-capacity {
    padding: 10px;
  }

  #quote-capacity-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 220px; /* Fits 2 cards (100px) + gap (10px) + small margin */
    margin: 10px auto;
  }

  .quote-capacity-card {
    width: 100px; /* 100px square for mobile */
    height: 100px;
    padding: 8px;
    flex: 0 0 calc(50% - 5px); /* 2 columns: 50% width minus half the gap */
    max-width: 100px; /* Prevent stretching */
  }

  .quote-capacity-card span {
    font-size: 14px; /* Adjusted for readability */
    line-height: 1.1;
  }
}
/* Responsive Adjustments for Larger Mobile (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  #quote-step-capacity {
    padding: 15px;
  }

  #quote-capacity-container {
    gap: 12px;
    max-width: 100%;
  }

  .quote-capacity-card {
    width: 120px; /* Slightly larger for mid-range screens */
    height: 120px;
    padding: 8px;
    flex: 0 0 calc(25% - 9px); /* 4 columns for larger mobile */
  }

  .quote-capacity-card span {
    font-size: 20px;
  }
}

  .quote-raid-drives-card {
    width: 90%;
    max-width: 95%;
  }
  .quote-raid-drives-number {
    font-size: 20px;
    padding: 10px 20px;
    min-width: 60px;
  }
}

/* Pop-up for Date Selection */
.popup {
  position: fixed;
  top: 0;
  left:(Mouse button released)
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.popup-content h2 {
  font-size: 1.2em;
  margin-bottom: 20px;
}
/* Popup overlay */
#drop-off-date-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5); /* Gray semi-transparent overlay */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Popup content card */
#drop-off-date-popup .popup-content {
  background: white;
  border-radius: 10px;
  padding: 20px;
  width: 400px;
  max-width: 90%;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1001;
}

/* Center Flatpickr calendar */
.flatpickr-calendar {
  margin: 0 auto !important;
  position: relative !important;
  left: 0 !important;
  transform: none !important;
  width: 100% !important;
  max-width: 320px;
}

#drop-off-date-picker {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
	font-family: Candara, sans-serif;
}
#drop-off-date-confirm,
#drop-off-date-back {
  padding: 10px 20px;
  margin: 5px;
  font-size: 16px;
  font-family: Candara, sans-serif;
  cursor: pointer;
}

#drop-off-date-popup .popup-content h2 {
  font-size: 20px;
  font-family: Candara, sans-serif;
  margin: 0 0 15px;
}
.popup-buttons {
  display: flex;
  justify-content: space-around;
}

.popup-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

#drop-off-date-confirm {
  background: #f28c38;
  color: white;
}

#drop-off-date-back {
  background: #ccc;
  color: black;
}

/* Responsive Adjustments for Pop-up */
@media (max-width: 768px) {
  .popup-content {
    max-width: 350px;
    padding: 15px;
  }
  .popup-content h2 {
    font-size: 1.1em;
  }
  #drop-off-date-picker {
    padding: 8px;
    font-size: 14px;
  }
  .popup-buttons button {
    padding: 8px 15px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .popup-content {
    max-width: 300px;
    padding: 10px;
  }
  .popup-content h2 {
    font-size:Factor: 1em;
    margin-bottom: 15px;
  }
  #drop-off-date-picker {
    padding: 6px;
    font-size: 12px;
  }
  .popup-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .popup-buttons button {
    padding: 6px 12px;
    font-size: 12px;
    width: 100%;
  }
}

/*----- quote form location lookup tool section ---------*/

/* Two-column layout for location step */
.quote-location-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1160px;
  margin: 20px auto;
  flex-wrap: wrap;
}

/* Form card (left column) */
.quote-location-form-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  box-sizing: border-box;
}

.quote-location-form-card label {
  display: block;
  margin-bottom: 10px;
}

.quote-location-form-card input {
  width: 100%;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  box-sizing: border-box;
}

/* Location result card (right column) */
.quote-location-result-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-location-result-card h3 {
  margin: 0 0 10px;
  text-align: center;
  font-size: 24px;
}

.quote-location-result-card p {
  margin: 5px 0;
  text-align: center;
  font-size: 18px;
  font-family: Candara;
  letter-spacing: 2px;
	margin-botom: 30px;
}

.quote-location-result-card p.hours {
  margin: 5px 0 10px; /* 20px bottom margin */
  text-align: center;
  font-size: 18px !important;
  font-family: Candara;
  letter-spacing: 2px;
  line-height: 1.5;
	color: #999;
}

.quote-location-result-card p.distance {
  margin: 0 0 20px; /* 20px bottom margin */
  text-align: center;
  font-size: 18px;
  color: #09c;
}

/* Contact step labels */
#quote-contact-step label {
  font-family: Candara, sans-serif !important;
}

/* Ship address step labels */
#quote-ship-address-step label {
  font-family: Candara, sans-serif !important;
}
/* Delivery options buttons */
#quote-delivery-options {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

#quote-delivery-options button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background: #f28c38;
  color: white;
  cursor: pointer;
}

#quote-delivery-options button:hover {
  background: #d9762e;
}

/* Back button */
#quote-step-location > button {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background: #f28c38;
  color: white;
  cursor: pointer;
}

#quote-step-location > button:hover {
  background: #d9762e;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .quote-location-container {
    flex-direction: column;
    align-items: center;
    max-width: 560px;
  }
  .quote-location-form-card, .quote-location-result-card {
    max-width: 100%;
    width: 100%;
  }
}



/*---- quote form ---------------------*/
/* Contact and Shipping Address Steps */
.quote-form-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  max-width: 500px;
  margin: 20px auto;
  box-sizing: border-box;
}

.quote-form-card label {
  display: block;
  margin-bottom: 10px;
}

.quote-form-card input {
  width: 100%;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  box-sizing: border-box;
}

.quote-form-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  width: 100%;
  box-sizing: border-box;
}
#quote-step-raid-drives .quote-form-buttons {
  justify-content: space-between;
}
.quote-form-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background: #f28c38;
  color: white;
  cursor: pointer;
  font-size: 16px;
  font-family: Candara, sans-serif;
}

.quote-form-buttons button:hover {
  background: #d9762e;
}
/* Location form card (left column) */
#quote-instant-quote-form .quote-location-form-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
#quote-instant-quote-form .quote-location-form-card .search-container {
  width: 100%;
  max-width: 400px; /* Adjust as needed */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
#quote-instant-quote-form .quote-location-form-card label {
  font-family: Candara, sans-serif;
  font-size: 20px !important;
  margin-bottom: 5px;
	text-align: center;
	
}

#quote-instant-quote-form .quote-location-form-card input {
  padding: 10px;
  font-size: 18px;
  font-family: Candara, sans-serif;
  margin-bottom: 10px;
	color: #999;
	 width: 100%;
  box-sizing: border-box;
}

#quote-instant-quote-form .quote-location-form-card .distance {
  margin: 40px 0 !important;
  font-family: Candara, sans-serif !important;
  font-size: 24px !important;
  color: #09c !important;
	text-align: center !important;
}

/* Location result card (right column) */
#quote-instant-quote-form .quote-location-result-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .quote-form-buttons {
    gap: 15px;
  }
  #quote-step-raid-drives .quote-form-buttons {
    justify-content: space-between;
  }
  .quote-form-buttons button {
    padding: 8px 15px;
    font-size: 14px;
  }
}
/* Responsive adjustments */
@media (max-width: 480px) {
  .quote-form-card {
    max-width: 280px;
    min-width: 250px;
  }
}

/*--------Urgency Selector Cards --------------------------------------------------------------------------------------------*/

.quote-urgency-card {
  width: 250px;
  height: 250px;
  max-width: 250px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  flex: 0 0 250px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
}
.quote-urgency-card:hover, .quote-urgency-card.active {
  outline: 3px solid #f28c38;
  box-shadow: 0 0 10px 5px rgba(242, 140, 56, 0.7);
}
.quote-urgency-card .quote-hover-circle {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #f28c38;
  background: transparent;
  transition: background 0.3s ease;
  z-index: 10;
}
.quote-urgency-card:hover .quote-hover-circle, .quote-urgency-card.active .quote-hover-circle {
  background: #f28c38;
}
.quote-urgency-card img {
  width: 60px;
  height: 60px;
  margin-top: 15px;
}
.quote-urgency-card h3 {
  font-size: 26px;
  margin: 10px 0;
  font-family: OratorStdMedium;
}
.quote-urgency-card p {
  font-size: 15px;
  margin: 0;
  font-family: Candara;
}
/*-------priority service message when urgency card 3 is selected ---------------------------------------------------*/

.quote-priority-service-message {
  font-family: Candara, sans-serif;
  font-size: 26px;
  color: #333;
  text-align: center;
  margin: 10px 0 15px;
  line-height: 1.4;
}
.quote-priority-service-message strong {
  font-weight: 700;
}
@media (max-width: 480px) {
  .quote-priority-service-message {
    font-size: 22px;
  }
}

/*-- Footer Section -----------------------------------------------------------------------------------------------------------------------*/
.footer {
    background-color: #000;
    color: #999;
    padding: 20px 0;
    font-size: 16px;
    line-height: 1.5;
	margin-bottom: 20px;
	
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 20px;
	
}


.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
	font-size: 18px;
	margin-top: 20px;
	
}

.footer-nav li {
    margin: 0;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #ccc;
}

.footer-locations {
    width: 100%;
	max-width: 900px; /* Constrain content width for better centering */
    display: flex;
    flex-direction: column;
    align-items: center;
	 justify-content: center;
}

.footer-location {
    margin-bottom: 15px;
	display: flex; /* Ensure centering for single location */
	justify-content: center;
   align-items: center;
    text-align: center;
	 
}

.footer-location h5 {
    margin: 0 0 5px;
    color: #09c;
	font-family: OratorStdMedium;
	font-size: 18px;
}

.footer-location.horizontal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	align-items: stretch; /* Ensure equal height for items */
    gap: 20px;
	
}

.footer-location-item {
    flex: 0 1 auto; /* Prevent excessive growth */
    width: auto;
    min-width: 200px;
    max-width: 300px;
    margin-bottom: 10px;
    text-align: center;

}

.footer-street,
.footer-city-state-zip,
.footer-phone,
.footer-hours {
    margin: 5px 0;
	
}

.footer-phone a {
    color: #fff;
    text-decoration: none;
}

.footer-phone a:hover {
    color: #ccc;
}

.footer-hours {
    white-space: pre-line; /* Preserve line breaks for two-line hours */
}

.footer-copyright {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    font-size: 15px;
}

@media (max-width: 768px) {
    .footer-nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .footer-location.horizontal {
        flex-direction: column;
        align-items: center;
    }

    .footer-location-item {
        max-width: 100%;
    }
}
