	
@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');
}




.content {
    flex-grow: 1; /* Expand to push footer down */
}


/* ~~ The header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo. ~~ */

/* ------- 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;
  }
	}

/* ---------- Nearest Location Modal ----------------------------------------------- */
.nearest-modal {
  position: fixed;
  inset: 0;
  display: none;              /* toggled to flex in JS */
  align-items: center;
  justify-content: center;
  z-index: 10000;             /* above flip cards/headers */
  font-family: candara, Arial, sans-serif;
}
.nearest-modal.is-open { display: flex; }

.nearest-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
}

.nearest-dialog {
  position: relative;
  width: min(560px, 92vw);
  max-height: 88vh;
  overflow: auto;
  background: #fff;
  border-radius: 12px;
  padding: 22px 22px 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  z-index: 1;
}

.nearest-close {
  position: absolute; top: 8px; right: 10px;
  width: 36px; height: 36px; line-height: 36px;
  border: none; border-radius: 50%;
  background: #f3f5f7; color: #333;
  font-size: 20px; cursor: pointer;
}
.nearest-close:hover { background: #e7eaee; }

.nearest-dialog h3 {
  margin: 4px 0 4px;
  font-family: OratorStdMedium, candara, Arial, sans-serif;
  font-size: 22px; color: #333;
}
.nearest-sub { margin: 0 0 14px; color: #666; font-size: 15px; }

.nearest-search {
  display: flex; gap: 10px; align-items: center;
  margin-bottom: 12px;
}
.nearest-search input {
  flex: 1;
  height: 42px;
  border: 1px solid #d8dee6;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 16px;
}
.nearest-search input:focus {
  outline: none;
  border-color: #09c;
  box-shadow: 0 0 0 3px rgba(0,153,204,0.15);
}

/* Reuse your existing .cta-button; add tiny variants */
.cta-button.small { padding: 8px 14px; font-size: 14px; }
.cta-button.ghost {
  background: transparent; border: 1px solid #c9d3de; color: #334155;
}
.cta-button.ghost:hover { background: #f3f5f7; }

/* Result card */
.nearest-results { margin-top: 8px; }
.nearest-hint { color: #7a8693; font-size: 14px; }

.nearest-card {
  border: 1px solid #e6ecf2;
  border-radius: 10px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.nearest-card + .nearest-card { margin-top: 10px; }

.nearest-card h4 {
  margin: 0 0 6px;
  font-size: 18px; color: #0f172a;
  font-family: OratorStdMedium, candara, Arial, sans-serif;
}
.nearest-card p {
  margin: 0 0 10px; color: #475569; font-size: 15px;
}

.nearest-actions {
  display: flex; gap: 8px; flex-wrap: wrap;
}

/* Footnote */
.nearest-footnote { margin-top: 12px; color: #7a8693; }
.nearest-footnote small { font-size: 12px; }
.nearest-footnote {
  margin-top: 8px;
  font-size: 0.85em;
  color: #666;
}
.nearest-footnote small {
  display: block;
  line-height: 1.3;
}

/* Mobile niceties */
@media (max-width: 480px) {
  .nearest-dialog { padding: 18px 16px; }
  .nearest-search { gap: 8px; }
}


/*--------Sticky Page Menu for RAID Page ------------------------------------------------------------------*/


.raid-page-menu {
  position: sticky;
  top: 80px; /* Matches your header height */
  z-index: 1000;
  background-color: #F36D26;
  padding: 6px 0;
  font-family: OratorStdMedium;
  letter-spacing: -2px;
  font-size: 16px; /* Your preference */
  text-align: center;
}

.menu-wrapper {
  display: flex;
  align-items: center;
  max-width: 70%; /* Your change for desktop */
  margin: 0 auto;
}

.menu-scroll {
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none; /* Hide scrollbar in IE/Edge */
  scrollbar-width: none; /* Hide scrollbar in Firefox */
}
.menu-scroll::-webkit-scrollbar {
  display: none; /* Hide scrollbar in Chrome/Safari */
}

.raid-page-menu ul {
  margin: 0;
  padding: 0 30px; /* Prevent arrow overlap */
  list-style: none;
  display: flex;
  gap: 12px; /* Reduced to fit */
  flex-wrap: nowrap;
  justify-content: flex-start; /* Left-aligned to show Speed, Benefits */
}

.raid-page-menu a {
  color: #ffffff;
  text-decoration: none;
  padding: 4px 8px;
  transition: opacity 0.2s ease;
}

.raid-page-menu a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.scroll-arrow {
  background: #ffffff;
  color: #F36D26;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transition: background 0.2s ease;
  flex: 0 0 auto;
  margin: 0 15px; /* Separation from links */
}

.scroll-arrow:hover {
  background: #e0e0e0;
}

.scroll-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---- Mobile drawer mode (≤768px) ---- */
@media (max-width: 768px) {
  /* Turn the existing bar into a slide-in drawer */
  .raid-page-menu {
    position: fixed;        /* override sticky */
    top: 0;
    right: 0;
    bottom: 0;
    width: 86vw;
    max-width: 420px;
    background-color: #F36D26;           /* keep your orange */
    color: #fff;
    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 1002;          /* > your 1000 header/menu */
    padding: 16px 14px;
    box-shadow: -18px 0 40px rgba(0,0,0,.28);
    overflow-y: auto;
  }
  .raid-page-menu.is-open { transform: translateX(0); }

  /* hide the left/right arrows inside the drawer */
  .raid-page-menu .scroll-arrow { display: none !important; }

  /* vertical list inside the drawer */
  .raid-page-menu .menu-wrapper {
    display: block;
    max-width: 100%;
    margin: 0;
  }
  .raid-page-menu .menu-scroll {
    overflow: visible;
    white-space: normal;
  }
  .raid-page-menu ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .raid-page-menu li { margin: 0; }

  .raid-page-menu a {
    display: block;
    color: #fff;                                 /* keep white links */
    text-decoration: none;
    padding: 12px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.28);    /* subtle white border */
    background: rgba(255,255,255,0.06);          /* faint panel feel */
  }
  .raid-page-menu a:hover {
    opacity: 1;
    text-decoration: none;
    background: rgba(255,255,255,0.14);
  }

  /* Floating hamburger button */
  .raid-menu-toggle {
    position: fixed;
    top: 88px;                 /* sits under your 80/65px header; tweak if needed */
    right: 12px;
    z-index: 1003;             /* above drawer */
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 10px;
    background: #ffffff;
    color: #F36D26;
    box-shadow: 0 8px 18px rgba(0,0,0,.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .raid-menu-toggle:before {
    content: "☰";
    font-size: 22px;
    line-height: 1;
  }

  /* Dim background overlay */
  .raid-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1001;             /* just under drawer */
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
  }
  .raid-menu-overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

  /* Stop body scroll when drawer open */
  body.raid-menu-no-scroll { overflow: hidden; }
}




/*--------Find File Savers Location Section ------------------------------------------------*/

.find-location-section {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 60px 0px 60px 0px;
  background: #333;
  position: relative;
  flex-wrap: wrap;
  margin: 0px auto;
}
.find-location-section h2{
  font-size: 40px;
  font-family: OratorStdMedium;
  color: #fff;
  width: 95%;
  text-align: center;
  margin-bottom: 0px;
  padding: 0px 0px 30px 0px;
}
.find-location-section span{
  color: #09c;
}
.find-location-section p {
  font-size: 24px;
  font-family: Candara;
  color: #999;
  width: 95%;
  text-align: center;
  margin-bottom: 0px;
  padding: 0px 0px 40px 0px;
  margin: 0px auto;
}
.find-location-cta-button {
  font-size: 24px;
  font-family: Candara;
  background: #09c;
  color: #fff;
  padding: 15px 10px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  margin-bottom: 50px;
}
.find-location-cta-button:hover {
    background: #2B75C1;
}
@media (max-width: 980px) {
.find-location-section h2{
  font-size: 36px;
 
}
.find-location-section p {
  font-size: 22px;
}
}
@media (max-width: 768px) {
.find-location-section h2{
  font-size: 30px;
 
}
.find-location-section p {
  font-size: 20px;
}
	.find-location-cta-button {
  font-size: 18px;

}
}
@media (max-width: 600px) {
.find-location-section h2{
  font-size: 26px;
 
}
.find-location-section p {
  font-size: 18px;
}
}
@media (max-width: 500px) {
.find-location-section h2{
  font-size: 24px;
 
}
.find-location-section p {
  font-size: 16px;
}
}

/*------National Review Scroll Section --------------------------------------------------------*/


.reviews-section {
    position: relative;
    z-index: 1000;
}
.national-scroll-carousel {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 40px auto;
    background: #f5f5f5;
    padding: 20px;
    box-sizing: border-box;
    touch-action: pan-x pinch-zoom;
    user-select: none;
}

.national-scroll-track {
    display: flex;
    width: max-content;
    gap: 20px;
}

.national-scroll-track.no-animation {
    animation: none;
}

.national-scroll-card {
    flex: 0 0 auto;
    width: 350px;
    height: 250px;
    background: linear-gradient(135deg, #ffffff, #f0f4f8);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    isolation: isolate;
}

.national-scroll-google-logo {
    width: 40px;
    height: auto;
    vertical-align: middle;
    margin-left: 50px;
}

.national-scroll-card p {
    margin: 5px 0;
}

.national-scroll-text {
    max-height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    font-family: candara;
    letter-spacing: 2px;
	color: #333;
}

.national-scroll-stars-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.national-scroll-rating {
    color: #f5c518;
    font-size: 20px;
    text-align: left;
    padding-right: 50px;
}

.national-scroll-author-city {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding-right: 30px;
}

.national-scroll-customer {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    color: #333;
    font-size: 16px;
    margin-left: 30px;
}

.national-scroll-location {
    font-style: italic;
    color: #777;
    font-size: 16px;
}

.national-scroll-read-more {
    background: #09C;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    display: block;
    margin: 5px auto 0;
}

.national-scroll-read-more:hover {
    background: #0870a3;
}

.national-scroll-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    max-width: 400px;
    min-height: 100px;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    will-change: transform, opacity;
}

.national-scroll-popup-content {
    background: #fff;
    color: #333;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    font-family: candara;
    line-height: 1.5;
    letter-spacing: 2px;
}

.national-scroll-close-popup {
    background: #F36D26;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.national-scroll-close-popup:hover {
    background: #d35e20;
}

/* National Scroll Carousel - Mobile Scrolling */
@media (max-width: 768px) {
    .national-scroll-section {
        z-index: 1000;
    }
    .national-scroll-carousel {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        margin: 40px 0;
        padding: 20px;
        box-sizing: border-box;
    }
    .national-scroll-track {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
        gap: 15px;
    }
    .national-scroll-card {
        flex: 0 0 300px;
        height: 250px;
        margin-right: 15px;
        scroll-snap-align: center;
    }
    .national-scroll-read-more {
        font-size: 16px;
        padding: 4px 8px;
    }
    .national-scroll-popup {
        width: 95vw;
        max-width: 360px;
    }
}

@media (max-width: 465px) {
    .national-scroll-carousel {
        overflow-x: hidden;
    }
    .national-scroll-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        touch-action: pan-x;
    }
    .national-scroll-card {
        flex: 0 0 300px;
        height: 220px;
        margin-right: 10px;
    }
    .national-scroll-text {
        font-size: 16px;
        max-height: 80px;
    }
    .national-scroll-read-more {
        font-size: 14px;
    }
    .national-scroll-popup {
        width: 90vw;
        max-width: 300px;
    }
}


/*-- 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%;
    }
	cursor: pointer;cursor: pointer;cursor: pointer;}