@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Michroma&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --Soft-black: #111;
  --Blk: #000;
  --Wt: #fff;
  --gray-color: #d9d9d9;
  --lightest-gray-color: #fafafa;
  --Yellow: #FCE532;
  --Blue: #00386E;
  --Reddish: #C74D41;

  /* Fonts */
  --font-Manrope: "Manrope", sans-serif;
  --font-Michroma: "Michroma", sans-serif;
  --font-Inter: "Inter", sans-serif;
  --font-Playfair: "Playfair Display", serif;
  --font-LibreBaskerville: "Libre Baskerville", serif;
  --font-arial: "Arial";
  --font-Montserrat: "Montserrat", sans-serif;
  --regular-gotham: "gotham-regular";
  --bold-gotham: "gotham-bold";
}


@font-face {
  font-family: 'Arial-regular';
  src: url('../fonts/arial/Arial-regular.ttf');
}

@font-face {
  font-family: 'gotham-regular';
  src: url('../fonts/Gotham-Font/GothamBook.ttf');
}

@font-face {
  font-family: 'gotham-bold';
  src: url('../fonts/Gotham-Font/GothamBold.ttf');
}

/* form css start here */
.form-wrapper {
  border-radius: 8px;
  border: 1px solid var(--gray-color, #D9D9D9);
  background: #F7F7F7;
  padding: 60px 100px 70px 100px;
}

.form-title {
  color: var(--Blk, #000);
  text-align: center;
  font-family: Manrope;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 48px;
}

.image-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.field-error {
  color: red;
  font-size: 14px;
  margin-top: 5px;
}

.error_field {
  border-color: red !important;
}

.iti {
  width: 100%;
}

.custom-form-control {
  border-radius: 8px;
  border: 1px solid var(--gray-color, #D9D9D9);
  background: var(--Wt, #FFF);
  color: var(--Blk, #000);
  font-family: var(--font-Manrope);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  display: block;
  width: 100%;
  height: 48px;
  padding: .375rem .75rem;
}

.custom-textarea {
  border-radius: 8px;
  border: 1px solid var(--gray-color, #D9D9D9);
  background: var(--Wt, #FFF);
  color: var(--Blk, #000);
  font-family: var(--font-Manrope);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  display: block;
  width: 100%;
  padding: .375rem .75rem;
}

.custom-textarea::placeholder {
  color: var(--Blk, #000);
  font-family: var(--font-Manrope);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.custom-textarea::placeholder {
  color: var(--Blk, #000);
  font-family: var(--font-Manrope);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.custom-textarea:focus {
  outline: none;
  border: 1px solid var(--gray-color, #D9D9D9);
  box-shadow: none;
}

.custom-form-control:focus {
  outline: none;
  border: 1px solid var(--gray-color, #D9D9D9);
  box-shadow: none;
}

.form-sec {
  padding: 64px 20px 80px 20px;
  background: #F7F7F7;
  scroll-padding-top: 120px;
}

.common-form-wrapper {
  max-width: calc(100% - 78%);
  min-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.form-inner-title {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.vantage-form-title {
  color: #000;
  text-align: center;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.form-contact-box {
  color: #000;
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.form-contact-box a {
  color: #000;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

.contact-list-item {
  position: relative;
  padding-right: 20px;
}

.contact-list-item+.contact-list-item::after {
  position: absolute;
  content: '';
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  background: #000;
  width: 2px;
  height: 15px;
}

/* form css ends here */

/* Common css start here  */

.common-header {
  position: relative;
  padding-top: 32%;
  min-height: 350px;
}

.common-header .page-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.positioned-banner {
  object-position: -50% 100%;
}

.common-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 21, 39, 0.75);
}

.common-header-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--Wt, #fff);
  z-index: 1;
  max-width: 1000px;
  width: 100%;
  padding: 20px;
}

.common-header-content .common-banner-subtitle {
  color: var(--Wt, #FFF);
  text-align: center;
  font-family: var(--font-Michroma);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  letter-spacing: 1.6px;
  text-transform: uppercase;

}

.common-header-content .common-banner-title {
  color: var(--Wt, #FFF);
  text-align: center;
  font-family: var(--font-Michroma);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  /* 120% */
  letter-spacing: 4px;
  text-transform: uppercase;
}

.banner-rich-text {
  color: var(--Wt, #FFF);
  text-align: center;
  font-family: var(--font-Manrope);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 40px;
}

.btn-global {
  display: inline-block;
  padding: 13px 28px;
  color: var(--White, #fff);
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 8px;
  background: var(--Blue, #3086b6);
  border: none;
}

.btn-global:hover {
  background-color: #2a77a0;
  color: var(--White);
  text-decoration: none;
}

.btn-global-rd {
  display: inline-block;
  padding: 13px 28px;
  color: var(--wt, #fff);
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 8px;
  background: var(--Reddish, #C74D41);
  border: none;
}

.btn-global-rd:hover {
  background-color: #af3e33;
  color: var(--Wt);
  text-decoration: none;
}

.blue-btn {
  display: inline-block;
  padding: 13px 28px;
  color: var(--wt, #fff);
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 8px;
  background: var(--Blue, #00386E);
  border: none;
}

.blue-btn:hover {
  background-color: #002f5a;
  color: var(--Wt);
  text-decoration: none;
}

.btn-global-outline {
  display: inline-block;
  padding: 13px 28px;
  color: var(--wt, #fff);
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--Wt, #FFF);
}

.btn-global-outline:hover {
  background-color: transparent;
  color: var(--Wt);
  text-decoration: none;
  border: 1px solid var(--Wt, #FFF);
}

.transparent-red-btn {
  display: inline-block;
  padding: 13px 0;
  color: var(--Reddish);
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 8px;
  background: transparent;
  border: none;
}

.transparent-red-btn:hover {
  background-color: transparent;
  color: var(--Reddish);
  text-decoration: none;
}

.gotham-red-btn {
  display: inline-block;
  padding: 15px 28px;
  color: #FFF;
  text-align: center;
  font-family: var(--gotham-regular);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  border-radius: 8px;
  background: var(--Reddish, #C74D41);
  border: none;
}

.gotham-red-btn:hover {
  background-color: #af3e33;
  color: var(--Wt);
  text-decoration: none;
}

a {
  text-decoration: none;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

a:hover {
  text-decoration: none;
}

.my-24 {
  margin-bottom: 24px;
  margin-top: 24px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.my-40 {
  margin-bottom: 40px;
  margin-top: 40px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-30 {
  margin-top: 30px;
}

.my-30 {
  margin-bottom: 30px;
  margin-top: 30px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.py-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

p {
  color: var(--Blk);
  font-family: var(--font-Manrope);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}

ul {
  margin-bottom: 0;
}

.container-austin-fluid {
  max-width: 1680px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.container-austin-md {
  max-width: 1360px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.container-austin {
  max-width: 1248px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.container-desktop {
  max-width: 1464px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Common css end here  */

/* Navigation Bar Styles */
.navbar-austin {
  background: var(--Wt, #FFF);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.16);
}

.header-container {
  width: calc(100% - 15%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.navbar-austin .container-austin-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  padding: 15px 0;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.navbar-menu li {
  position: relative;
}

.navbar-menu li a {
  color: #000;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 8px 0;
  display: inline-block;
  position: relative;
}

.navbar-left {
  width: 40%;
}

.navbar-logo {
  width: 20%;
}

.navbar-logo a {
  display: block;
  max-width: 150px;
  margin: 0 auto;
}

.navbar-logo a img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.navbar-right {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}

.navbar-location {
  display: flex;
  align-items: baseline;
  gap: 40px;
  color: var(--Red);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  /* position: absolute;
  right: 15%; */
}

.location-dropdown {
  position: absolute;
  top: 100%;
  right: 180px;
  width: 420px;
  background: #FFF;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 30px;
  z-index: 1001;
  display: none;
}
.location-dropdown1 {
  position: absolute;
  top: 100%;
  right: 180px;
  width: 420px;
  background: #FFF;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 30px;
  z-index: 1001;
  display: none;
}
.location-dropdown.active {
  display: block;
}
.location-dropdown1.active {
  display: block;
}
  
.location-dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 60px;
  width: 16px;
  height: 16px;
  background: var(--White);
  transform: rotate(45deg);
  border-left: 1px solid #f0f0f0;
  border-top: 1px solid #f0f0f0;
}

.location-item {
  padding: 15px 0;
}

/* .location-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
} */

.location-item:first-child {
  padding-top: 0;
}

.location-item.selected .loc-header {
  /* margin-bottom: 15px; */
  text-align: center;
}

.loc-header p span {
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.location-item.selected .loc-title {
  color: var(--Blk, #000);
  text-align: center;

  /* h3 */
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}

.location-item.selected .loc-details {
  color: var(--Blk, #000);
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  padding: 16px 0;
  display: block;
}

.location-item.selected .loc-phone {
  color: var(--Reddish, #C74D41);
  text-align: center;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  display: block;
}

.location-separator {
  height: 1px;
  background: #d9d9d9;
  margin: 15px 0;
}

.location-item:not(.selected) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 12px 20px;
  border-radius: 6px;
}

.location-item:not(.selected):hover {
  background: #f9f9f9;
}

.location-item .loc-title {
  color: var(--Black, #1A1A1A);

  /* h5 */
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  /* 133.333% */
}

.loc-phone-title {
  color: var(--Black, #1A1A1A);

  /* p */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

.location-item .select-btn {
  color: var(--Reddish, #C74D41);
  text-align: right;

  /* button */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.8px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-transform: uppercase;
}

.navbar-location i {
  color: var(--Blk);
  font-size: 20px;
  margin-right: 54px;
}

.navbar-location-text {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.navbar-location-label {
  color: var(--Blk, #000);
  text-align: right;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
}

.navbar-location-name {
  color: var(--Blk, #000);
  text-align: right;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.navbar-more-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #000;
  text-align: right;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.navbar-more-btn .hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.navbar-more-btn .hamburger span:nth-child(2) {
  width: 22px;
}

.navbar-more-btn .hamburger span {
  width: 30px;
  height: 2px;
  background-color: var(--Blk);
  transition: all 0.3s ease;
}

.navbar-more-btn:hover .hamburger span {
  background-color: var(--Blk);
}

/* Mobile Menu Toggle */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.navbar-toggle .hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.navbar-toggle .hamburger span {
  width: 28px;
  height: 3px;
  background-color: var(--Blue);
  transition: all 0.3s ease;
}

/* ===================================
   Inventory Mega Menu Styles
   =================================== */

.inventory-mega-menu {
  position: fixed;
  top: 104px;
  left: 0;
  width: 100%;
  background: var(--Wt);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.inventory-mega-menu.active {
  opacity: 1;
  visibility: visible;
}

.mega-menu-content {
  display: flex;
  gap: 40px;
  padding: 40px 20px 80px 30px;
}

/* Left Sidebar */
.mega-menu-sidebar {
  min-width: 280px;
  flex-shrink: 0;
}

.mega-menu-title {
  color: var(--Blue);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.mega-menu-title-spacing {
  margin-top: 32px;
}

.mega-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-links li {
  margin-bottom: 22px;
}

.top-items {
  margin-bottom: 64px;
}

.top-items li a {
  color: #000;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  text-transform: uppercase;
}

.bottom-items {
  margin-top: 64px;
}

.bottom-items li a {
  color: #000;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-transform: capitalize;
}

.srchby-size h3 {
  color: #00000099;

  /* h5 */
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  margin-bottom: 24px;
}

.srchby-size .size-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  /* space between items */
}


.srchby-size p {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 100% */
}

/* Right Content Area - Brands Grid */
.mega-menu-brands {
  flex: 1;
}

.mega-menu-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.brand-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  height: 140px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.brand-card .brand-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.40);
  z-index: 1;
}

.brand-card .brand-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  max-width: 120px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;

  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

/* ===================================
   Service & Storage Mega Menu Styles
   =================================== */

.service-mega-menu {
  position: fixed;
  top: 84px;
  left: 0;
  width: 100%;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  max-height: calc(100vh - 84px);
  overflow-y: auto;
}

.service-mega-menu.active {
  opacity: 1;
  visibility: visible;
}

/* Service Grid - 5 columns for service cards */
.service-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px;
}

/* new mobile header deisgn start here */

.mobile-header {
  display: none;
  position: sticky;
  top: 0;
  z-index: 999;
}

.mobile-header-parent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  width: 100%;
  height: 60px;
  z-index: 500;
}

.header-bg {
  border-bottom: 1px solid #EEE;
  background: #FFF;
}

.custom-toggle-icon span.fa {
  font-size: 30px;
  background: white;
  color: black;
}

.call-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

.call-icon span.fa {
  color: white;
}

.mobile-header-list {
  display: none;
  position: fixed;
  top: 120px;
  left: 0;
  z-index: 999;
  width: 100%;
  background: #343A40;
  transform: translateY(0);
  transition: all 0.2s;
}

.sub-header-box span {
  margin-right: 30px;
  margin-top: 30px;
}

.sub-header-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.menu-content-box {
  height: calc(100vh - 100px);
  overflow-y: auto;
  border-top: 1px solid #EEE;
  background: #FFF;
}

.menu-content-box::-webkit-scrollbar {
  display: none;
}

.pb-50 {
  padding-bottom: 50px;
}

.mds-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  background: #343A40;
}

.mobile-header-parent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
  width: 100%;
  height: 60px;
  z-index: 500;
}

.mobile-header-img {
  max-width: 212px;
  width: 100%;
  height: 100%;
  max-height: 50px;
  display: flex;
}

.mobile-header-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.custom-close-icon span.fa {
  font-size: 30px;
  background: #343A40;
  color: white;
}

.mds-nav-tab {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 30px 0 35px 0;
  padding: 0 30px;
  column-gap: 10px;
}

.nav-btn.active {
  background: var(--Blue);
  color: #FFF;
  border: 1px solid var(--Blue);
}

.nav-btn {
  color: var(--Blue);
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  display: inline-block;
  padding: 14px 25px 14px 23px !important;
  border: 1px solid rgba(34, 34, 34, 0.10);
  background: rgba(34, 34, 34, 0.10);
  width: 110px;
  height: 45px;
}

.mobile-header-list ul li {
  list-style: none;
  padding: 0 30px;
  /* border-bottom: 2px solid lightgray; */
}

.mobile-nav-box.active {
  display: block;
  height: 100%;
}

.mobile-nav-box {
  display: none;
}

.mobile-nav-box ul {
  padding-left: 0;
}

.submenu-nav-link {
  display: block;
  padding: 15px 0;
  color: #222;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  /* 138.889% */
  text-transform: capitalize;
  border-bottom: 1px solid #EEE;
}

.border-none {
  border: none !important;
}

.mobile-header-number {
  text-decoration: none;
  color: white;
  opacity: 0.7;
  padding: 15px 0;
}

.menu-logo-box {
  display: flex;
  padding: 40px 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-logo {
  width: 182px;
  height: 56px;
  padding: 15px 25px;
  border: 1px solid #D9D9D9;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--Blue);
}

.menu-logo img {
  max-width: 103px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.end-box {
  background: rgba(255, 255, 255, 0.02);
  padding: 20px 30px 64px 30px;
}

.end-box ul li {
  list-style: none;
}

.end-box ul li a {
  color: #FFF;
  font-family: 'Gotham-Medium';
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  text-transform: capitalize;
}

.location-box {
  background: #FAFAFA;
  padding: 20px 30px 64px 30px;
  height: 100%;
}

.mobile-menu-show {
  display: none;
}

.location-box ul li a {
  color: #222;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  /* 138.889% */
  text-transform: capitalize;
  padding: 15px 0;
  display: block;
  border-bottom: 1px solid #EEEEEE;
}

.location-box ul li {
  padding: 0 !important;
}

.sub-header {
  background: #FFF;
  height: 60px;
}

.sub-header ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
}

.sub-header ul li {
  list-style: none;

}

.sub-header ul li a {
  padding: 22px 33px;
  display: inline-block;
  color: #222;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.sub-header ul li a span.fa {
  padding-right: 10px;
}

.mobile-menu-show {
  display: none;
}

/* new mobile header deisgn ends here */

/* Service Card Styles */
.service-card {

  display: flex;
  justify-content: center;
  gap: 24px;
  border-radius: 8px;
  border: 1px solid var(--D9, #D9D9D9);
  background: var(--Wt, #FFF);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
  padding: 50px 66px;
}

/* .service-card .service-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
} */


.service-card .service-title {
  color: var(--Blk, #000);

  /* h3 */
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}

/* ===================================
   Experiences Mega Menu Styles
   =================================== */

.experiences-mega-menu {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  background: var(--White);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.experiences-mega-menu.active {
  opacity: 1;
  visibility: visible;
}

/* Experiences Grid - Custom Layout */

/* CARD BASE */
.experience-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  height: 100%;
}

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LARGE CARDS */
.large-card {
  height: 400px;
}

/* SMALL CARDS */
.small-card {
  height: 122px;
}

/* OVERLAY */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg,
      rgba(26, 26, 26, 0) 0%,
      rgba(26, 26, 26, 0.8) 100%);
}

.overlay h3 {
  color: var(--White, #fff);
  font-family: "Michroma", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  text-transform: uppercase;
}

.overlaylogo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.overlaylogo img {
  width: 150px;
  height: 100px;
  object-fit: contain;
}

/* Rental Rules Link */
.rental-rules-link {
  text-align: center;
}

.rental-rules-link a {
  color: var(--Blue, #3086b6);
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.rental-rules-link a:hover {
  color: var(--Red);
  text-decoration: underline;
}

/* ===================================
   Side Mega Menu Styles
   =================================== */

.side-mega-menu {
  position: fixed;
  top: 84px;
  right: -440px;
  width: 440px;
  max-width: 100%;
  height: calc(100vh - 84px);
  border-left: 1px solid var(--D9, #D9D9D9);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 40px 120px 20px 60px;
}

.side-mega-menu.active {
  right: 0;
}

.side-menu-content {
  display: flex;
  flex-direction: column;
  text-align: end;
}

/* Primary Links (Top & Bottom Sections) */
.side-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.side-menu-links.primary {
  gap: 16px;
}

.side-menu-links.primary li a {
  color: var(--Blk, #000);
  text-align: right;

  /* h3 */
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}

/* Divider */
.side-menu-divider {
  border: 0;
  border-top: 1px solid #d9d9d9;
  margin: 64px 0px 24px 0;
  width: 100%;
}

/* Secondary Section (Locations) */
.side-menu-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.side-menu-title {
  color: rgba(0, 0, 0, 0.4);
  text-align: right;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  /* 142.857% */
  letter-spacing: 0.7px;
}

.side-menu-links.secondary {
  gap: 20px;
}

.side-menu-links.secondary li a {
  color: #000;
  text-align: right;

  /* p */
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

/* ===================================
   Hamburger to Close Button Animation
   =================================== */

.navbar-more-btn.active .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-more-btn.active .hamburger span:nth-child(2) {
  opacity: 0;
}

.navbar-more-btn.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Submenu Styles */
.mobile-sub-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.mobile-toggle {
  display: none;
  cursor: pointer;
  padding: 10px;
  color: var(--Blue);
  transition: transform 0.3s ease;
}

.mobile-toggle.active {
  transform: rotate(180deg);
}

.nav-item-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}



/* -----------------------------------Desktop Footer CSS Start ---------------------------------- */
.footer-newsletter {
  background: #CE564A;
  padding: 40px 0;
}

.newsletter-content-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  /* Space between text and input */
  flex-wrap: wrap;
  /* Stacks on mobile */
}

.newsletter-headline {
  color: #FFF;

  /* h3 */
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}

.newsletter-inline-form {
  width: 100%;
  max-width: 480px;
}

.input-group-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.newsletter-input {
  width: 100%;
  padding: 16px 60px 16px 24px;
  border-radius: 8px;
  border: 1px solid var(--D9, #D9D9D9);
  background: var(--Wt, #FFF);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: hsla(0, 0%, 0%, 0.6);
  outline: none;
}

.newsletter-input::placeholder {
  color: #999;
}

.newsletter-submit-btn {
  position: absolute;
  right: 15px;
  background: transparent;
  border: none;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.newsletter-submit-btn:hover {
  transform: translateX(3px);
  /* Subtle arrow nudge on hover */
  color: var(--Primary-Red);
}



.desktop-footer {
  width: 100%;
  z-index: 2;
  position: relative;
}

.footer-links-section {
  padding: 40px 0 40px 0;
  background: var(--Reddish, #C74D41);
}

.custom-col-5 {
  flex: 0 0 20%;
  max-width: 20%;
  padding: 0 15px;
}

.footer-col-title {
  color: #FFF;
  text-align: center;

  /* h4 */
  font-family: Michroma;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.footer-logo-section img {
  max-width: 300px;
  width: 100%;
  margin-bottom: 40px;
}

.border-right-white {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.footer-location-section {
  margin-bottom: 40px;
}

.footer-location-title {
  color: #FFF;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  margin-bottom: 8px;
}

.footer-address {
  color: #FFF;

  /* p */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  margin-bottom: 8px;
}

.footer-phone {
  color: var(--White, #FFF);
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}

.footer-phone:hover {
  color: var(--White, #FFF);
}

.footer-links-list li {
  margin-bottom: 16px;
}

.footer-links-list li a {
  color: var(--Wt, #fff);

  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.footer-bottom-section {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  background: var(--Reddish, #C74D41);
}

.copyright-text {
  color: #ffffff66;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.copyright-text a {
  color: #ffffff66;
  text-decoration: none;
}

.footer-social-list {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer-social-list li {
  list-style: none;
}

.footer-social-list li a i {
  color: #FFF;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--Blue, #00386E);
  border-radius: 4px;
  font-size: 18px;
}

/* ===================================
   Home Page Styles
   =================================== */

.fishing-container {
  position: relative;
  padding-top: 42%;
  min-height: 400px;
}

.fishing-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fishing-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-container {
  position: relative;
  padding-top: 43%;
  min-height: 400px;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.slider-section {
  padding-bottom: 40px;
}

.hero-content h1 {
  color: var(--Wt, #FFF);
  text-align: center;
  font-family: Michroma;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-content .btn-global {
  width: 240px;
}

.carousel-banner {
  position: relative;
}

.banner-slide {
  height: 720px;
  overflow: hidden;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-slide::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120px;
  /* controls how much bottom area is dark */

  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.00) 0%,
      rgba(0, 0, 0, 0.6) 100%);

  pointer-events: none;
}

/* Hide default indicators */
.carousel-indicators {
  position: static;
  margin: 0;
}


/* Bottom Navigation Container */
.carousel-navigation {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 25px;
  z-index: 10;
}

/* Dash Indicators */
.custom-indicators li {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  margin: 0 6px;
}

.custom-indicators li.active {
  background: #ffffff;
}

.bottom-card-img {
  position: relative;
  padding-top: 54%;
}

.bottom-card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Arrows */
.nav-arrow {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  opacity: 0.7;
}

.nav-arrow:hover {
  opacity: 1;
}

.prev-arrow {
  width: 16px;
  height: 16px;
  background-image: url('../images/home/prev-btn.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
}

.next-arrow {
  width: 16px;
  /* adjust as needed */
  height: 16px;
  /* adjust as needed */
  background-image: url('../images/home/next-btn.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  /* keeps image proper ratio */
  display: block;
}

.welcome-sec {
  padding: 80px 0;
}

.welcome-content .sec-title {
  color: var(--Blk, #000);

  /* h4 */
  font-family: Michroma;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.welcome-content .sec-heading {
  color: var(--Blk, #000);

  /* h2 */
  font-family: Manrope;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 48px;
  /* 120% */
  margin-bottom: 40px;
}

.welcome-content .sec-desc {
  color: var(--Blk, #000);

  /* p */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  margin-bottom: 40px;
}

.new-arrivals-section {
  padding-bottom: 80px;
  padding-top: 40px;
}

.fishing-depot-section {
  padding-bottom: 40px;
}

.new-arrivals-section .section-title {
  color: var(--Blk);
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 48px;
}

.arrival-card {
  text-align: left;
  margin: 10px;
}

.arrival-card .image-placeholder {
  background-color: #D9D9D9;
  height: 300px;
  width: 100%;
  position: relative;
  margin-bottom: 20px;
  padding-top: 57%;
}

.arrival-card .model-title {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 30px;
  /* 150% */
  /* margin-bottom: 15px; */
  text-transform: uppercase;
}

.arrival-card .price {
  color: var(--Reddish, #C74D41);
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 5px;
}

.arrival-card .specs {
  color: rgba(0, 0, 0, 0.60);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.badge-promotional {
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--Reddish, #C74D41);
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  padding: 7px 17px;
  border-radius: 3px;
  background: var(--Yellow, #FCE532);
}

.btn-listings {
  background-color: var(--Primary-Red);
  color: #fff;
  padding: 12px 40px;
  font-weight: 700;
  border-radius: 5px;
  text-transform: uppercase;
}

.fishing-header {
  margin-bottom: 40px;
}

.fishing-depot-hero {
  background: url('../images/home/fishing-depot.jpg') no-repeat center center;
  background-size: cover;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.fishing-depot-hero .hero-content-wrapper {
  background: rgba(0, 56, 110, 0.7);
  padding: 80px 40px;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--Wt);
}

.fishing-depot-hero .hero-text-content {
  width: 600px;
}

.fishing-depot-hero .hero-title {
  color: var(--Wt);
  font-family: 'Michroma', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.fishing-depot-hero .hero-description {
  color: var(--Wt);
  font-family: 'Manrope', sans-serif;
  /* Standard prose font */
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.services-links-section {
  position: relative;
  z-index: 2;
  /* Ensure it scrolls OVER the sticky rental section (z-index 1) */
  background-color: #fff;
  padding-top: 25px;
  padding-bottom: 40px;
}

.services-links-grid {
  display: flex;
  gap: 20px;
}

.service-link-card {
  width: calc(100% / 3 - 10px);
  position: relative;
  display: block;
  height: 880px;
  overflow: hidden;
  border-radius: 0;
}

.service-link-card::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 438px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.service-link-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  padding: 0 78px 64px 78px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  z-index: 3;
}

.brand-carousel .brand-item {
  height: 35px;
}

.brand-carousel .brand-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-overlay h3 {
  color: var(--Wt, #FFF);

  /* h2 */
  font-family: Manrope;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 48px;
  /* 120% */
  margin-bottom: 16px;
}

.card-overlay p {
  color: var(--Wt, #FFF);

  /* p */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  margin-bottom: 24px;
}

.card-overlay .card-btn {
  color: var(--Wt, #FFF);

  /* button */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.card-overlay .card-btn:hover {
  color: #FCE532;
}

.bottom-features-section {
  margin: 40px 0 80px 0;
}

.bottom-features-section .feature-card .feature-title a {
  color: #000;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  margin-top: 16px;
  display: inline-block;
}

.bottom-features-section .feature-card .feature-text {
  color: #000;

  /* p */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  margin-top: 8px;
}

/* -----------------------------------Home Page css end here ----------------------------------  */



/* wake shop page css start here  */

.austin-featured-box {
  display: flex;
  padding-top: 40px;
  padding-bottom: 40px;
}

.austin-featured-col .content-box {
  padding-bottom: 30px;
  padding-top: 30px;
}

.austin-featured-col {
  width: 50%;
}

.austin-featured-img {
  width: 100%;
  height: 100%;
}

.austin-featured-img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.austin-featured-col {
  width: 50%;
}

.austin-lg-container .austin-featured-col .content-box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
  max-width: 63%;
  margin: 0 auto;
}

.austin-container .austin-featured-col .content-box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
  max-width: 75%;
  margin: 0 auto;
}

.featured-subtitle {
  color: var(--Blk, #000);
  font-family: var(--font-Michroma);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: 100%;
  opacity: 0.6;
}

.title-heading {
  color: var(--Blk, #000);
  font-family: var(--font-Michroma);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
  width: 100%;
}

.bold-title-heading {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 48px;
  margin-bottom: 24px;
  width: 100%;
}

.central-title {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 48px;
  margin-bottom: 24px;
}

.austin-container {
  max-width: calc(100% - 21%);
  margin: 0 auto;
}

.central-content {
  max-width: calc(100% - 50%);
  margin: 64px auto;
  text-align: center;
}

.lake-service-central-content {
  margin: 40px auto !important;
}

.central-banner {
  position: relative;
  padding-top: 34%;
  min-height: 300px;
}

.central-banner .central-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.central-banner-content-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.00) 100%);
  height: 100%;
  max-width: 70%;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 13%;
}

.central-banner-content {
  max-width: 600px;
}

.central-banner-title {
  color: var(--Wt, #FFF);
  font-family: var(--font-Michroma);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.featured-list {
  padding-left: 20px;
}

.featured-list-wrapper {
  padding: 15px 0;
  width: 100%;
}

.featured-list-wrapper li {
  color: var(--Blk, #000);
  font-family: var(--font-Manrope);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.austin-featured-logo-wrapper {
  position: relative;
}

.austin-featured-logo {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  max-width: 300px;
  width: 100%;
  height: auto;
  padding: 24px 30px;
  background: #000;
}

.austin-featured-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.austin-wake-carousel .item {
  max-width: 200px;
  height: 83px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.austin-wake-carousel .item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  padding: 10px;
}

.wake-slider-section {
  padding: 45px 0 45px 100px;
}

/* fihsing page css start here */

.fishing-brands-section {
  padding: 40px 0 48px 0;
}

.fishing-brands-container {
  max-width: calc(100% - 10%);
  margin: 0 auto;
  padding: 0 15px;
}

.fishing-brands-title {
  margin-bottom: 40px;
}

.brands-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Brand Card Styling */
.fishing-brand-card {
  width: calc(100% / 3 - 14px);
  aspect-ratio: 7 / 2;
  display: flex;
}

.brand-col-img {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.brand-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-col-logo {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: var(--Blue, #00386E);
}

.brand-col-logo img {
  max-width: 80%;
  max-height: 60px;
  object-fit: contain;
  width: auto;
  height: auto;
}

.fishing-white-logo {
  filter: invert(1);
}

.fishing-brand-title {
  color: var(--Blk, #000);
  text-align: center;
  font-family: var(--font-Manrope);
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}

.type-boat-card {
  position: relative;
  padding-top: 45%;
  display: block;
  border: 2px solid transparent;
}

.type-boat-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.type-boat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.2s ease;
}

.type-boat-card.active:after {
  opacity: 0;
}

.type-boat-card.active {
  border: 2px solid white;
}

.type-card-label {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--Wt, #FFF);
  text-align: center;
  font-family: var(--font-Manrope);
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  z-index: 1;
  width: 100%;
}

.fishing-sec-title {
  color: var(--Wt, #FFF);
  text-align: center;
  font-family: var(--font-Manrope);
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 48px;
}

.shop-by-type-sec {
  background-image: url('https://cdn.mdsbrand.com/mean-south-austin-marine/assets/images/fishing-depot/type-bg.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 6rem;
  padding-top: 80px;
}

.fishing-inventory-sec {
  margin-top: -4rem;
}

/* service page css start here */

.gallery-carousel .item {
  position: relative;
  padding-top: 75%;
}

.gallery-carousel .item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-offerings-section {
  padding: 0 0 60px 0;
  background-color: #fff;
}

.service-offerings-section h2 {
  font-family: var(--font-Michroma, sans-serif);
  font-size: 32px;
  color: #000;
  margin-bottom: 20px;
}

.service-offerings-section .sub-text {
  font-family: var(--font-Manrope, sans-serif);
  font-size: 14px;
  color: #444;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.service-tabs {
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  border: 2px solid #E5E7EB;
  margin-bottom: 24px;
  transition: box-shadow 0.3s ease;
  height: 100%;
  min-height: 80px;
}

.service-tabs:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-tabs.dark-card {
  background-color: var(--Blue, #00386E);
  border: none;
}

.service-tabs .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.service-tabs:not(.dark-card) .icon-box {
  background-color: rgba(199, 77, 65, 0.1);
  /* Light red background */
  color: var(--Reddish, #C74D41);
}

.service-tabs:not(.dark-card) .service-title {
  color: #101828;
  font-family: var(--font-Manrope);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.service-tabs.dark-card .icon-box {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.service-tabs.dark-card .service-title {
  color: var(--white);
  font-family: var(--font-Manrope);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.height-100 {
  height: 100%;
}

.faq-sect {
  padding: 80px 0;
  background-color: #f7f9fa;
}


.faq-block {
  margin-bottom: 30px;
}

.faq-quiz {
  color: #000;
  font-family: var(--font-Manrope);
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  margin-bottom: 12px;
}

.faq-ans {
  color: var(--Blk, #000);
  font-family: var(--font-Manrope);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.pkg-sect {
  padding: 64px 0 90px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../images/lake-service/lake-banner.webp') no-repeat center center;
  background-size: cover;
  color: #fff;
}

.pkg-main-title {
  color: var(--Wt, #FFF);
  text-align: center;
  font-family: var(--font-Manrope);
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 48px;
  margin-bottom: 10px;
}

.pkg-sub-title {
  color: var(--Wt, #FFF);
  text-align: center;
  font-family: var(--font-Manrope);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 50px;
}

.pkg-card-wrapper {
  display: flex;
  align-items: center;
  align-self: stretch;
}

.pkg-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 40px 30px;
  color: #1a1a1a;
  height: 100%;
  width: 100%;
}

.pkg-card-center {
  background-color: #c65349;
  color: #fff;
  padding: 50px 30px;
  transform: scale(1.06);
  border-radius: 8px;
  position: relative;
  z-index: 2;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.pkg-badge {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
  color: #FFF;
  text-align: center;
  font-family: var(--font-Manrope);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
  padding: 10px 19px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pkg-name {
  color: #FFF;
  font-family: var(--font-Manrope);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px;
  /* 150% */
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.pkg-card-center .pkg-name {
  color: #fff;
}

.pkg-price-row {
  color: #FFF;
  font-family: var(--font-Manrope);
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 72px;
  margin-bottom: 30px;
}

.pkg-price {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 72px;
}

.pkg-suffix {
  color: #000;
  font-family: var(--font-Manrope);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-left: 5px;
}

.pkg-card-center .pkg-suffix {
  color: rgba(255, 255, 255, 0.90);
}

.pkg-card-center .pkg-price {
  color: rgba(255, 255, 255, 0.90);
}

.pkg-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pkg-list-item {
  margin-bottom: 12px;
  font-size: 13px;
  display: flex;
  align-items: center;
  color: var(--Blk, #000);
  font-family: var(--font-Manrope);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.pkg-card-center .pkg-list-item {
  color: #fff;
}

.pkg-icon {
  font-size: 11px;
  color: #c65349;
  margin-top: 3px;
  margin-right: 10px;
}

.pkg-card-center .pkg-icon {
  color: #fff;
}

.features-sect {
  padding: 20px 0 60px;
  background-color: transparent;
  max-width: calc(100% - 30%);
  margin: 0 auto;
}

.feature-card-wrapper {
  margin-bottom: 30px;
  display: flex;
  align-self: stretch;
}

.feature-icon {
  margin-bottom: 16px;
}

.storage-icon-wrapper {
  width: 64px;
  height: 64px;
  background: #C74D41;
  border-radius: 50px;
  padding: 18px;
  margin-bottom: 20px;
}

.storage-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-title {
  color: #000;
  font-family: Manrope;
  font-size: 23px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.feature-desc {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

/* seasonal page css start here */

.storage-options-sect {
  padding: 80px 0;
  background-color: #F7F7F7;
}


.storage-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.storage-desc {
  margin-bottom: 25px;
}

.storage-link {
  color: var(--Reddish, #C74D41);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.storage-link:hover {
  color: #a54138;
  text-decoration: none;
}

.storage-options-content {
  padding-left: 120px;
}

.storage-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100% - 32%);
  margin: 0 auto;
}

.storage-col-1 {
  width: 35%;
}

.storage-col-2 {
  width: 65%;
}

.spring-comm-sect {
  padding: 80px 0 100px;
}

.spring-header {
  max-width: 800px;
  margin: 0 auto 50px;
}

.spring-desc {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}

.spring-content-box {
  max-width: calc(100% - 42%);
  margin: 0 auto;
}

.comm-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comm-list li {
  color: var(--Blk, #000);
  font-family: var(--font-Inter);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.comm-list li i {
  font-size: 18px;
  color: #c65349;
  margin-right: 12px;
  font-weight: 400;
}

.pricing-card {
  background-color: #fafbfc;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  padding: 25px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  height: 100%;
}

.pricing-label {
  color: var(--Blk, #000);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.pricing-amount {
  color: var(--Blk, #000);
  font-family: Inter;
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 36px;
  margin-bottom: 10px;
}

.pricing-note {
  color: var(--Blk, #000);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.cta-banner {
  width: 100%;
  position: relative;
}

.overlap-btn-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.overlap-btn {
  padding: 13px 30px;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(198, 83, 73, 0.3);
}

.banner-img-container img {
  height: 500px;
  object-fit: cover;
  width: 100%;
  display: block;
}

/* rigging page css start here */

.rigging-services {
  background-color: #F7F7F7;
  font-family: 'Arial', sans-serif;
  color: #333;
}

.rigging-rigging-service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.rigging-service-card {
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.08);
  border-radius: 16px;
}

.rigging-card-image {
  position: relative;
  padding-top: 60%;
}

.rigging-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.rigging-service-container {
  max-width: calc(100% - 20%);
  margin: 0 auto;
}

.card-body-content {
  padding: 30px 25px;
}

.card-service-title {
  color: #0A0A0A;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* parts page css start here */

.austin-sm-container {
  max-width: calc(100% - 42%);
  margin: 0 auto;
}

.austin-crew-container {
  max-width: calc(100% - 34%);
  margin: 0 auto;
}

.pl-40 {
  padding-left: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.austin-sm-container .austin-featured-img img {
  border-radius: 8px;
}

.bg-grey {
  background-color: #F7F7F7;
}

.quality-products {
  background-color: #ffffff;
}

.products-main-title {
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.products-subtitle {
  font-size: 0.9rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.product-feature-card {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 40px 25px;
  height: 100%;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  background: #fff;
}

.feature-icon-wrapper {
  margin-bottom: 20px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
}

.quality-feature-title {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.inventory-selection {
  position: relative;
  background-image: url('https://cdn.mdsbrand.com/mean-south-austin-marine/assets/images/parts/parts-img-4.webp');
  background-size: cover;
  background-position: center;
  min-height: 500px;
  margin-bottom: 40px;
}

.inventory-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
}

.inventory-tag {
  color: var(--Wt, #FFF);
  text-align: center;
  font-family: Michroma;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.inventory-main-title {
  font-weight: 700;
  font-size: 2.2rem;
}

.inventory-subtitle {
  font-size: 0.85rem;
  max-width: 900px;
  opacity: 0.9;
}

.inventory-box {
  background: #fff;
  border-radius: 8px;
  padding: 30px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s;
  aspect-ratio: 13 / 8
}

.category-icon-bg {
  background-color: #c94c3d;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.cat-icon {
  width: 25px;
  filter: brightness(0) invert(1);
}

.category-name {
  color: #000;
  text-align: center;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
}

.why-choose-us {
  background-color: #ffffff;
  padding: 80px 0;
}

.why-title {
  font-weight: 700;
  font-size: 2.4rem;
  color: #000;
  margin-bottom: 20px;
}

.reason-item {
  gap: 20px;
}

.check-icon-circle {
  min-width: 50px;
  height: 50px;
  background-color: #c94c3d;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.what-we-rig {
  background-color: #ffffff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.rig-main-title {
  font-weight: 700;
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 40px;
}

.rig-card {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 30px 25px;
  height: 100%;
  border: none;
}

.rig-card-title {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  margin-bottom: 25px;
  color: #000;
}

.rig-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rig-list li {
  color: #364153;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;

}

.rig-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  background-color: #d9534f;
  border-radius: 50%;
}

.reason-title {
  color: #000;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* storage page css start here */

.content-title {
  color: #222;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.custom-rounded-img {
  border-radius: 4px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.reserve-card-img {
  position: relative;
  padding-top: 45%;
}

.reserve-card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-main-title {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 48px;
}

.price-card {
  background-color: #003a70;
  color: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 12px;
}

.currency-amount {
  color: var(--Wt, #FFF);
  font-family: Manrope;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 72px;
}

.billing-cycle {
  color: var(--Wt, #FFF);
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.price-description {
  color: var(--Wt, #FFF);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: 10px;
  margin-bottom: 0;
}

.terms-list {
  margin-left: 5px;
}

.term-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.check-icon {
  display: inline-block;
  width: 20px;
  height: 12px;
  border-left: 2px solid #003a70;
  border-bottom: 2px solid #003a70;
  transform: rotate(-45deg);
  margin-right: 15px;
  margin-top: 5px;
  flex-shrink: 0;
}

.notice-box {
  border-radius: 10px;
  background: #F3F4F6;
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.storage-quality-wrapper {
  padding: 64px 0 80px 0;
  margin-top: 40px;
}

/* history page css start here */

/* Custom styles for History Page */
.history-rich-text {
  color: var(--Blk, #000);
  text-align: justify;
  font-family: var(--font-LibreBaskerville);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.history-page-wrapper {
  font-family: 'Times New Roman', Times, serif;
  color: #000;
  padding-bottom: 50px;
}

.history-header-wrapper {
  text-align: center;
  padding: 28px 0 28px 0;
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
  margin-bottom: 30px;
  margin-top: 40px;
}

.history-main-title {
  color: var(--Blk, #000);
  text-align: center;
  font-family: var(--font-Playfair);
  font-size: 58px;
  font-style: normal;
  font-weight: 900;
  line-height: 72px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.history-meta-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.history-meta-item {
  color: var(--Blk, #000);
  font-family: var(--font-LibreBaskerville);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.history-star {
  font-size: 20px;
  margin: 0 15px;
}

.history-hero-frame {
  border: 4px solid #000;
  padding: 20px;
  margin-bottom: 40px;
}

.history-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.history-section-title {
  color: var(--Blk, #000);
  text-align: center;
  font-family: var(--font-Playfair);
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 48px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.history-section-subtitle {
  color: var(--Blk, #000);
  text-align: center;
  font-family: var(--font-LibreBaskerville);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 30px !important;
}

.history-text-col {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: justify;
}

.history-divider-anchor {
  text-align: center;
  margin: 40px 0;
  position: relative;
}

.history-divider-anchor::before,
.history-divider-anchor::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background-color: #000;
}

.history-divider-anchor::before {
  left: 0;
}

.history-divider-anchor::after {
  right: 0;
}

.history-anchor-icon {
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.history-cta-box {
  border: 4px solid #000;
  padding: 40px;
  text-align: center;
  margin-bottom: 52px;
  background: rgba(58, 48, 36, 0.08);
}

.history-cta-title {
  color: var(--Blk, #000);
  text-align: center;
  font-family: var(--font-Playfair);
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
  line-height: 36px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.history-cta-text {
  color: var(--Blk, #000);
  text-align: center;
  font-family: var(--font-LibreBaskerville);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 25px;
}

.history-btn-black {
  background-color: #000;
  color: #FAF6F0;
  text-align: center;
  font-family: var(--font-Playfair);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  transition: 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 12px 30px 15px 30px;
}

.history-btn-black:hover {
  color: #fff;
  text-decoration: none;
  background-color: #000;
}

.history-legacy-heading {
  color: var(--Blk, #000);
  text-align: center;
  font-family: var(--font-Playfair);
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid #000;
}

.history-collage-frame {
  border: 4px solid #000;
  padding: 20px;
  margin-bottom: 24px;
}

.history-collage-img {
  width: 100%;
  height: auto;
  display: block;
}

.history-caption {
  color: var(--Blk, #000);
  text-align: center;
  font-family: var(--font-LibreBaskerville);
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 20px;
  padding-top: 15px;
  border-top: 2px solid var(--Blk, #000);
  margin-top: 16px;
}

.history-side-img-frame {
  border: 4px solid #000;
  padding: 20px;
  margin-bottom: 40px;
}

.history-cert-section {
  text-align: center;
  padding: 28px 0;
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
  margin-bottom: 50px;
}

.history-cert-title {
  color: var(--Blk, #000);
  text-align: center;
  font-family: var(--font-Playfair);
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 32px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.history-cert-subtitle {
  color: var(--Blk, #000);
  text-align: center;
  font-family: var(--font-LibreBaskerville);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.history-cert-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.history-cert-logo {
  max-height: 80px;
}

/* staff page css start here */

.crew-content-box {
  max-width: 65%;
}

.crew-grid-section {
  padding: 40px 0;
  background-color: #fff;
}

.crew-member-card {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.crew-image-container {
  position: relative;
  padding-top: 120%;
  /* Portrait aspect ratio */
  overflow: hidden;
}

.crew-image-container .crew-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crew-info-body {
  padding: 20px;
}

.crew-member-name {
  color: #000;
  text-align: center;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  margin-bottom: 5px;
}

.crew-member-role {
  color: var(--Blk, #000);
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 20px;
  opacity: 0.6;
}

.crew-action-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.crew-btn-call {
  background: #C74D41;
  color: #FFF;
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 12px 40px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.crew-btn-call:hover {
  background: #C74D41;
  color: #fff;
  text-decoration: none;
}

.crew-btn-email {
  background-color: transparent;
  color: #000;
  border: 2px solid #000;
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 12px 40px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.crew-btn-email:hover {
  background-color: transparent;
  color: #000;
  text-decoration: none;
}

/* career page css start here */

.career-header::after {
  background: unset;
  position: unset;
}

.employment-subtitle {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}

.positions-header {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}

.job-card {
  border-radius: 8px;
  border: 1px solid var(--D9, #D9D9D9);
  background: #FAFAFA;
  padding: 36px 40px 44px 36px;
}

.job-title {
  color: var(--Blk, #000);
  text-align: center;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
}

.job-location {
  color: rgba(0, 0, 0, 0.60);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.job-location span {
  color: #C74D41;
  opacity: 0.6;
  margin-right: 5px;
}

.job-btn-outline {
  border-radius: 6px;
  color: var(--Blk, #000);
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 2px solid #000;
  background: transparent;
}

.job-btn-outline:hover {
  color: var(--Blk, #000);
  border: 2px solid #000;
  background: transparent;
}

.job-btn-filled {
  background-color: #003a70;
  border-color: #003a70;
  border-radius: 6px;
  color: var(--Wt, #FFF);
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 40px;
}

.job-btn-filled:hover {
  background-color: #003a70;
  border-color: #003a70;
}

.career-modal-wrapper {
  max-width: 70%;
  margin: 0 0 0 auto;
}

.job-description-modal .modal-dialog {
  max-width: 1250px;
  width: 100%;
}

.job-description-modal .modal-header .close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

.job-description-modal .modal-header {
  border-bottom: none;
}

.job-detail-section {
  font-family: 'Arial', sans-serif;
  color: #000;
}

.job-detail-main-title {
  color: var(--Blk, #000);
  text-align: center;
  font-family: Manrope;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 48px;
  margin-bottom: 0.5rem;
}

.job-detail-meta {
  color: var(--Blk, rgba(34, 34, 34, 0.60));
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.detail-section-label {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-transform: capitalize;
}

.detail-body-text {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.detail-bullet-list {
  padding-left: 1.2rem;
  list-style-type: disc;
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.detail-bullet-list li {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.detail-divider {
  border: 0;
  border-top: 1px solid #eeeeee;
  margin: 2rem 0;
}

.job-detail-time {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.apply-form-modal .modal-dialog {
  max-width: 600px;
  width: 100%;
}

/* Container and Typography */
.application-section {
  background-color: #ffffff;
  font-family: Arial, sans-serif;
}

.form-main-title {
  color: var(--Blk, #000);
  text-align: center;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}

.form-job-title {
  color: var(--Blk, #000);
  text-align: center;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
}

.form-location {
  color: #888;
  font-size: 0.9rem;
}

.location-dot::before {
  content: "📍";
  /* Or use a small SVG icon for the red pin */
  margin-right: 5px;
}

/* Input Fields */
.custom-input {
  height: 50px;
  border: 1.5px solid #dee2e6;
  border-radius: 8px;
  padding-left: 15px;
}

.custom-input::placeholder {
  color: #999;
}

/* File Upload Section */
.custom-file-group {
  border: 1.5px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
  height: 50px;
}

.upload-label {
  background: transparent;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 12px 20px;
  border-radius: 0;
  color: #000;
  white-space: nowrap;
  border-radius: 8px 0 0 8px;
  border: 2px solid var(--Blk, #000);
}

.custom-file-display {
  color: #999;
  font-size: 0.9rem;
  background: #fff;
  flex-grow: 1;
}

.submit-btn {
  background-color: #003a70;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 40px;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background-color: #00264d;
}

/* testimonials page css start here */

.reviews-container {
  width: calc(100% - 80px);
  margin: 0 auto 60px auto;
}

.reviews-box {
  display: flex;
  flex-wrap: wrap;
}

.reviews-card-box {
  padding: 20px;
  width: calc(100% / 3);
}

.reviews-card {
  border-radius: 10px;
  border: 1px solid var(--D9, #D9D9D9);
  background: #FFF;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
  padding: 48px 40px;
}

.reviews-card-content {
  width: calc(100% - 40px);
}

.dark-line-separator {
  background: var(--black-color);
  margin-top: 19px;
  margin-bottom: 19px;
}

.user-name {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}

.review-locaiton {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}

.reviews-qoutation-icon {
  margin-bottom: 12px;
}

/* reviews page css start here */

.stats-bar {
  background-color: var(--Reddish);
  padding: 40px 0;
  color: #fff;
  text-align: center;
}

.stat-item h2 {
  color: #FFF;
  text-align: center;
  font-family: Michroma;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.stat-item p {
  color: #FFF;
  text-align: center;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  margin-bottom: 0;
}

.testimonial-intro {
  padding: 80px 0 40px;
  text-align: center;
}

.intro-title {
  font-family: var(--font-Michroma);
  font-size: 32px;
  color: var(--Soft-black);
  margin-bottom: 25px;
  text-transform: capitalize;
}

.intro-text {
  font-family: var(--font-Manrope);
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
  color: #666;
  line-height: 1.6;
}

.testimonials-section {
  padding-bottom: 80px;
}

.card-columns {
  column-count: 3;
  gap: 30px;
}


.testimonial-card {
  border-radius: 10px;
  border: 1px solid var(--D9, #D9D9D9);
  background: #FFF;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
  padding: 48px 40px;
  margin-bottom: 30px;
}

.reviews-rating-container {
  max-width: calc(100% - 50%);
  margin: 0 auto;
}

.stars {
  color: var(--Yellow);
  margin-bottom: 15px;
  font-size: 14px;
}

.stars i {
  margin-right: 2px;
}

.testimonial-body {
  margin-bottom: 25px;
}

.testimonial-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.testimonial-footer {
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.author-name {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 2px;
  display: block;
}

.author-location {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}

/* fnancing page css start here */

.why-finance-section {
  padding: 40px 0 120px;
}

.why-finance-list {
  gap: 18px;
}

.why-finance-list h3 {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  line-height: 24px !important;
}

/* contact page css start here */

.locations-sec {
  scroll-padding-top: 120px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.contact-form-section {
  margin-top: -88px;
}

.location-items-list {
  display: flex;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.location-items {
  position: relative;
  list-style: none;
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding-right: 20px;
}

.location-items+.location-items::after {
  position: absolute;
  content: '';
  top: 50%;
  left: -10px;
  width: 2px;
  height: 15px;
  background: #000;
  transform: translateY(-50%);
}

.addres-bar {
  display: flex;
  gap: 15px;
}

.addres-bar a:nth-child(1) {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-decoration-line: underline;
}

.addres-bar a:nth-child(2) {
  color: var(--Blue, #00386E);
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
}

.phone-number {
  color: var(--Reddish, #C74D41);
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  display: block;
  margin: 16px 0;
}

.phone-number:hover {
  color: var(--Reddish, #C74D41);
}

.hours-sec ul {
  padding-left: 0;
}

.hours-sec ul li {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  list-style: none;
}

.hours-title {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.location-subtitle {
  color: rgba(0, 0, 0, 0.60);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

/* event details page css start here */

.detail-card {
  border-radius: 10px;
  border: 1px solid var(--D9, #D9D9D9);
  background: var(--Wt, #FFF);
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);
  padding: 1.5rem;

}

.event-header {
  background: #000;
  padding-top: 36px;
  padding-bottom: 36px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
}

.detail-label {
  color: var(--Blk, #000);
  font-family: var(--font-arial);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  display: flex;
  align-items: center;
}

.detail-label img {
  margin-right: 10px;
}

.event-btn {
  padding: 13px 45px;
}

.detail-card p {
  color: var(--Blk, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.brands-represented {
  background-color: #ffffff;
  border-left: 4px solid #007bff;
}

.brand-heading {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  margin: 0;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.logo-item img {
  max-height: 45px;
  width: auto;
  filter: grayscale(0);
  transition: transform 0.3s ease;
  padding: 4px;
  max-width: 160px;
  width: 100%;
}

.logo-item img:hover {
  transform: scale(1.05);
}

.event-form {
  align-items: unset;
}

.event-form-sec {
  padding: 104px 0;
}

/* brand page css start here */

.robalo-hero {
  position: relative;
  min-height: 450px;
}

.robalo-hero::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.robalo-hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.robalo-hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.robalo-hero-overlay-boat {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 45%;
  z-index: 2;
}

.robalo-hero-overlay-boat .boat-img {
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
  transform: rotate(-15deg);
}

.robalo-hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 900px;
  width: 100%;
  padding-top: 100px;
}

.robalo-hero-title {
  color: #FFF;
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.robalo-hero-subtitle {
  color: #FFF;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.16px;
}

.robalo-hero-content p{
  color: #FFF !important;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.16px;
}

/* Action Bar */
.robalo-action-bar {
  background: #fff;
  padding: 25px 0;
  border-bottom: 1px solid #f0f0f0;
}

.robalo-action-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.robalo-action-btns {
  display: flex;
  gap: 20px;
  width: calc(100% - 30%);
  padding: 28px 0;
}

.robalo-brand-logo-box {
  max-width: 200px;
  width: 100%;
  margin: 0 0 0 auto;
}

.robalo-brand-logo-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.robalo-black-btn {
  background: #000;
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  border: none;
  transition: 0.4s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  text-align: center;
  padding: 16px 30px;
}

.robalo-black-btn:hover {
  opacity: 0.85;
  color: #fff;
  text-decoration: none;
}

.robalo-brand-logo-box .logo-img {
  width: 100%;
  height: auto;
}

/* Lineup Section */
.robalo-lineup-section {
  padding: 80px 0 64px 0;
}

.robalo-sec-title {
  color: #333;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.robalo-lineup-item {
  text-align: center;
  padding: 0 15px;
}

.row .col-md-3:last-child .robalo-lineup-item {
  border-right: none;
}

.brand-border {
  border-right: 1px solid #eee;
  border-left: 1px solid #eee;
}

.brand-border:first-child {
  border-left: 2px solid #eee;
}

.brand-border:last-child {
  border-right: 2px solid #eee;
}

.robalo-lineup-item .lineup-img {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
  transition: transform 0.3s;
}

.robalo-lineup-item:hover .lineup-img {
  transform: translateY(-5px);
}

.robalo-lineup-name {
  color: #333;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 0;
  -webkit-text-stroke-width: 0.5px;
}

.brand-banner-content {
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 100%;
}

.brand-banner {
  border-bottom: 1px solid var(--D9, #D9D9D9);
  background: #FFF;
  margin-bottom: 20px;
  position: sticky;
  top: 0;
  z-index: 2;
}

.brand-subtitle {
  color: #333;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.brand-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  width: 100%;
  padding-bottom: 8px;
  border-bottom: 1px solid #D9D9D9;
}

.brand-gallery-card {
  width: calc(100% / 3 - 2px);
}

.brand-gallery-img {
  position: relative;
  padding-top: 50%;
}

.brand-gallery-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inven-sec-header {
  padding-top: 64px;
  padding-bottom: 40px;
}

.inven-sec-title {
  color: #333;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  -webkit-text-stroke-width: 0.5px;
}

/* avalon brand page css start here */

.avalon-section-title {
  border-left: 3px solid #d9534f;
  padding-left: 15px;
  color: #FFF;
  font-family: var(--regular-gotham);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-transform: uppercase;
}

.avalon-lineup-section {
  background: linear-gradient(rgb(0 0 0 / 75%), rgba(0, 0, 0, 0.4)), url(https://cdn.mdsbrand.com/mean-south-austin-marinehttps://cdn.mdsbrand.com/mean-south-austin-marine/assets/images/brand-avalon/avalon-img-11.webp) no-repeat center center;
  background-size: cover;
  padding: 90px 0 106px 0;
}

.avalon-boat-card {
  position: relative;
  padding-top: 57%;
}

.avalon-boat-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.50);
}

.avalon-boat-card .card-title {
  color: #FFF;
  font-family: var(--bold-gotham);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
}

.avalon-card-content p {
  color: #D2D3D5;
  font-family: var(--regular-gotham);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.avalon-card-content {
  position: absolute;
  bottom: 12px;
  left: 12px;
}

.why-avalon-section {
  min-height: 600px;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('https://cdn.mdsbrand.com/mean-south-austin-marinehttps://cdn.mdsbrand.com/mean-south-austin-marine/assets/images//brand-avalon/avalon-bg.webp') no-repeat center center;
  background-size: cover;
  color: white;
}

.avalon-description {
  color: #FFF;
  font-family: var(--regular-gotham);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.8px;
}

.inventory-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 108px;
}

.inventory-card {
  width: calc(100% / 3);
  padding: 7px;
}

/* sell trade page css start here */

.sell-trade-feature-card {
  display: flex;
  margin-bottom: 30px;
}

.sell-trade-icon-box {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: #C74D41;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.sell-trade-icon-element {
  color: #ffffff;
  font-size: 20px;
}

.sell-trade-content-box {
  flex-grow: 1;
}

.sell-trade-feature-heading {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}

.sell-trade-intro-box {
  background-color: #F9F9F9;
  padding: 40px 60px;
  border-radius: 4px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.sell-trade-intro-text {
  color: var(--Blk, #000);
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}

.sell-trade-highlight-red {
  color: #C74D41;
}

.sell-trade-highlight-bold {
  color: #000;
  font-weight: 700;
}

.sell-trade-btn-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.process-section {
  background-color: #00386E;
  padding: 80px 0;
  color: #ffffff;
  font-family: 'Manrope', sans-serif;
}

.process-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px;
  height: 100%;
  color: #333;
  position: relative;
}

.process-number-badge {
  width: 40px;
  height: 40px;
  background-color: #C74D41;
  color: var(--Wt, #FFF);
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
}

.process-card-title {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  margin-bottom: 15px;
}

.process-cta-container {
  text-align: center;
  margin-top: 40px;
}

.process-cta-text {
  margin-bottom: 40px;
}

.consignment-section {
  padding: 80px 0;
  font-family: 'Manrope', sans-serif;
  background-color: #ffffff;
}

.consignment-feature-row {
  display: flex;
  margin-bottom: 30px;
  align-items: flex-start;
}

.consignment-icon-box {
  width: 56px;
  height: 56px;
  background-color: #C74D41;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 20px;
}

.consignment-feature-title {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  margin-bottom: 8px;
}

.consignment-divider {
  border-top: 1px solid var(--gray-color);
  margin: 30px 0;
  height: 1px;
  width: 100%;
}

.consignment-bottom-text-wrapper {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.consignment-check-icon {
  margin-right: 15px;
  flex-shrink: 0;
}

.consignment-bottom-text strong {
  font-weight: 800;
}

.consignment-valuation-btn {
  background-color: #00386E;
  color: #ffffff;
  padding: 15px 35px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.3s;
  font-family: 'gotham-bold', sans-serif;
}

.consignment-valuation-btn:hover {
  color: #ffffff;
  opacity: 0.9;
  text-decoration: none;
}

.trade-banner {
  position: relative;
  padding-top: 32%;
  min-height: 350px;
}

.trade-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ready-to-sell-section {
  background-image: url('https://cdn.mdsbrand.com/mean-south-austin-marine/assets/images/sell-trade/sell-trade-img-3.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 200px 0;
  position: relative;
  text-align: center;
  font-family: 'Manrope', sans-serif;
}

.tt-suggestion {
    position: absolute;
    top: 103%;
    width: 100%;
    z-index: 10;
    background: #fff;
    max-height: 500px;
    overflow-y: auto;
}

.ready-to-sell-content-box {
  background-color: rgba(255, 255, 255, 0.9);
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ready-to-sell-link {
  display: inline-block;
  padding: 13px 28px;
  color: #C74D41;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 8px;
  background: transparent;
  border: none;
}

.ready-to-sell-link:hover {
  color: #C74D41;
  text-decoration: none;
  background: transparent;
}

/* testimonial page css start here */

/* testimonials page css start here */

.reviews-container {
  width: calc(100% - 80px);
  margin: 0 auto 60px auto;
}

.reviews-box {
  display: flex;
  flex-wrap: wrap;
}

.reviews-card-box {
  padding: 20px;
  width: calc(100% / 3);
}

.reviews-card {
  border-radius: 10px;
  border: 1px solid var(--D9, #D9D9D9);
  background: #FFF;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
  padding: 48px 40px;
}

.reviews-card-content {
  width: calc(100% - 40px);
}

.dark-line-separator {
  background: var(--black-color);
  margin-top: 19px;
  margin-bottom: 19px;
}

.user-name {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}

.review-locaiton {
  color: var(--Blk, #000);
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}

.reviews-qoutation-icon {
  margin-bottom: 12px;
}

.commonSection {
  margin-bottom: 80px;
  padding-top: 50px;
}

.commonSectionInnerWrap {
  display: flex;
  gap: 120px;
  max-width: calc(100% - 15%);
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.thank-you-content-box {
  width: 50%;
}

.commonSectionImageWrapper {
  width: 50%;
}

.commonSectionLinkWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.commonSectionImageWrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thank-you-inner-box {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    text-align: center;
}
.commonParaWrap{
  padding: 20px 0 40px 0;
}
.search-box-wrapper {
    position: absolute;
    top: 84px;
    transform: translateX(-56%);
    width: 500px;
    overflow: hidden;
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
    gap: 10px;
    display: none;
    overflow: visible;
}
.imgContainer {
    height: 160px;
    width: 45%;
}
.conetntSectionContainer {
    width: 55%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding-left: 15px;
    color: black;
}
.imgContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-box-wrapper input {
    border-radius: 8px;
    border: 1px solid var(--gray-color, #D9D9D9);
    background: var(--Wt, #FFF);
    color: var(--Blk, #000);
    font-family: var(--font-Manrope);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: block;
    width: 100%;
    height: 48px;
    padding: .375rem .75rem;
}
.search-box-wrapper input::placeholder{
  color: var(--Blk, #000);
    font-family: var(--font-Manrope);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.search-box-wrapper input:focus {
    outline: none;
    border: 1px solid var(--gray-color, #D9D9D9);
    box-shadow: none;
}
#nav-search-suggestions {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 4px;
    max-height: 400px;
    overflow-y: auto;
    padding: 0 15px;
}
.search-box-wrapper.active {
    display: block;
}
#nav-search-suggestions.hidden {
    display: none;
}
.hidden{
    display:none;
}
.boatTag, .grid-pending_sale_banner{
  border-radius: 3px;
  background: var(--Yellow, #FCE532);
  color: var(--Reddish, #C74D41);
  text-align: center;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 25px;
}
@media (max-width: 1600px) {
  .header-container {
    width: calc(100% - 10%);
  }
  .career-modal-wrapper {
    max-width: 80%;
  }

  .austin-crew-container {
    max-width: calc(100% - 28%);
  }

  .spring-content-box {
    max-width: calc(100% - 25%);
    margin: 0 auto;
  }

  .form-wrapper {
    padding: 60px 60px 70px 60px;
  }
}



@media (max-width: 1500px) {
  .header-container {
    width: calc(100% - 6%);
  }
  .navbar-location {
    gap: 20px;
  }
  .navbar-location i {
    margin-right: 18px;
}
  .card-overlay {
    padding: 0 40px 50px 40px;
  }

  .ready-to-sell-section {
    padding: 100px 0;
  }

  .sell-trade-feature-heading {
    font-size: 20px;
  }

  .robalo-lineup-section {
    padding: 40px 0 64px 0;
  }

  .form-wrapper {
    padding: 60px 60px 70px 60px;
  }

  .why-finance-section {
    padding: 40px 0 80px;
  }

  .austin-crew-container {
    max-width: calc(100% - 25%);
  }

  .austin-sm-container {
    max-width: calc(100% - 30%);
  }

  .storage-options-content {
    padding-left: 80px;
  }

  .storage-wrapper {
    max-width: calc(100% - 20%);
  }

  .features-sect {
    max-width: calc(100% - 20%);
  }

  .common-header-content .common-banner-title {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 3px;
  }

  .shop-by-type-sec {
    padding-top: 50px;
  }

  .wake-slider-section {
    padding: 45px 0 45px 50px;
  }

  .central-banner-title {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 3px;
  }

  .title-heading {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 3px;
    margin-bottom: 30px;
  }

  .bold-title-heading {
    font-size: 35px;
    line-height: 39px;
    margin-bottom: 30px;
  }

  .central-title {
    font-size: 35px;
    line-height: 39px;
    margin-bottom: 30px;
  }

  .mega-menu-brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .navbar-location {
    right: 10%;
  }

  .austin-lg-container .austin-featured-col .content-box {
    max-width: 68%;
  }

  .austin-container {
    max-width: calc(100% - 15%);
  }

  .rigging-service-container {
    max-width: calc(100% - 13%);
  }
}

@media (max-width: 1330px) {
  .navbar-right {
      gap: 20px;
  }
  .storage-icon-wrapper {
    width: 50px;
    height: 50px;
    padding: 12px;
  }

  .quality-feature-title {
    font-size: 20px;
  }
  .navbar-menu {
    gap: 30px;
  }
  .navbar-location-name {
    font-size: 15px;
  }

  .card-overlay {
    padding: 0 30px 40px 30px;
  }

  .card-overlay h3 {
    font-size: 30px;
    line-height: 35px;
  }

  .stat-item h2 {
    font-size: 35px;
    line-height: 40px;
    letter-spacing: 2px;
  }

  .career-modal-wrapper {
    max-width: 90%;
  }

  .reviews-rating-container {
    max-width: calc(100% - 35%);
  }

  .card-service-title {
    font-size: 20px;
  }

  .bold-title-heading {
    font-size: 29px;
    line-height: 39px;
    margin-bottom: 16px;
  }

  .central-content {
    max-width: calc(100% - 40%);
  }

  .spring-content-box {
    max-width: calc(100% - 18%);
  }
}

@media (max-width: 1200px) {
  .navbar-logo {
    width: 10%;
  }
  .navbar-right{
    width: 50%;
  }
  .commonSectionInnerWrap {
    gap: 40px;
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-content h1 {
    font-size: 35px;
    line-height: 42px;
    letter-spacing: 3px;
    margin-bottom: 40px;
  }

  .robalo-hero-title {
    font-size: 35px;
    line-height: 42px;
    letter-spacing: 3px;
  }

  .brand-banner-content {
    bottom: 80px;
  }

  .card-columns {
    column-count: 3;
  }

  .testimonial-card {
    padding: 25px 25px;
  }

  .career-card-btn {
    flex-wrap: wrap;
    gap: 10px;
  }

  .austin-crew-container {
    max-width: calc(100% - 15%);
  }

  .history-main-title {
    font-size: 46px;
    line-height: 50px;
    margin-bottom: 14px;
  }

  .pr-40 {
    padding-right: 20px;
  }

  .pl-40 {
    padding-left: 20px;
  }

  .austin-sm-container {
    max-width: calc(100% - 20%);
  }

  .austin-container {
    max-width: calc(100% - 10%);
  }

  .rigging-service-container {
    max-width: calc(100% - 8%);
  }

  .storage-options-content {
    padding-left: 50px;
  }

  .features-sect {
    max-width: calc(100% - 10%);
  }

  .austin-container {
    max-width: calc(100% - 10%);
    margin: 0 auto;
  }

  .austin-lg-container .austin-featured-col .content-box {
    max-width: 77%;
  }

  .navbar-menu {
    gap: 25px;
  }

  .navbar-menu li a {
    font-size: 14px;
  }

  .mega-menu-content {
    gap: 30px;
    padding: 30px 0;
  }

  .mega-menu-sidebar {
    min-width: 240px;
  }

  .mega-menu-brands-grid {
    gap: 12px;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .service-card .service-title {
    font-size: 18px;
  }

  /* -------Services Links Section CSS Start ------- */
  .service-link-card {
    height: 600px;
  }

  /* -------Services Links Section CSS End --------- */
  .loc-keuka-rentals .services-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .loc-keuka-rentals .service-link-card {
    height: 400px;
  }

  .brand-logos-grid {
    column-gap: 60px;
  }

  .custom-col-5 {
    flex: 0 0 20%;
    /* Keep 5 col layout on large tablets if space permits */
    max-width: 20%;
  }
}

@media (max-width: 1100px) {

  .navbar-menu {
    gap: 10px;
  }
}

@media (max-width: 991px) {
  .thank-you-content-box {
    width: 100%;
  }

  .commonSectionImageWrapper {
    width: 100%;
  }

  .commonSectionInnerWrap {
    gap: 40px;
    flex-flow: column-reverse;
  }

  .commonSection {
    margin-bottom: 80px;
    padding-top: 0;
  }

  .mobile-header {
    display: block;
  }

  .mobile-menu-show {
    display: block;
  }

  .inventory-card {
    width: calc(100% / 2);
  }

  .footer-location-section {
    text-align: center;
    margin-top: 40px;
  }

  .footer-links-list li {
    text-align: left;
  }

  .navbar-austin {
    display: none;
  }

  .service-link-card {
    width: calc(100% / 2 - 10px);
  }

  .services-links-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .consignment-bottom-text-wrapper {
    text-align: left;
  }

  .process-card {
    margin-bottom: 30px;
  }

  .consignment-section .row>div:first-child {
    margin-bottom: 40px;
  }

  .process-section {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .consignment-feature-row {
    width: 100%;
    text-align: left;
  }

  .card-columns {
    column-count: 2;
  }

  .brand-gallery {
    display: none;
  }

  .robalo-sec-title {
    text-align: center;
  }

  .robalo-hero-overlay-boat {
    position: relative;
    width: 80%;
    top: 0;
    right: 0;
    margin: 40px auto 0;
  }

  .robalo-hero-content {
    max-width: 100%;
    text-align: center;
    padding-top: 0;
  }

  .robalo-hero-title {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 2.5px;
    margin-bottom: 25px;
  }

  .brand-banner {
    padding-bottom: 40px;
  }

  .robalo-action-inner {
    flex-direction: column;
    gap: 30px;
  }

  .robalo-action-btns {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .robalo-brand-logo-box {
    margin: 0 auto;
  }

  .robalo-black-btn {
    text-align: center;
    max-width: 500px;
    width: 100%;
  }

  .event-form-sec {
    padding: 50px 0;
  }

  .brand-heading {
    text-align: center;
    margin-bottom: 30px;
  }

  .event-header-title {
    font-size: 30px;
    line-height: 35px;
  }

  .contact-form-section {
    margin-top: 58px;
  }

  .hero-text-col {
    margin-bottom: 40px;
    text-align: center;
  }

  .card-columns {
    column-count: 2;
  }

  .reviews-rating-container {
    max-width: calc(100% - 20%);
  }

  .job-detail-main-title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 0.5rem;
  }

  .employment-content {
    text-align: center;
  }

  .career-modal-wrapper {
    max-width: 100%;
  }

  .crew-content-box {
    max-width: 100%;
  }

  .austin-lg-container .austin-featured-col .content-box {
    text-align: center;
  }

  .storage-quality-wrapper {
    padding: 40px 0 40px 0;
    margin-top: 10px;
  }

  .reason-title {
    font-size: 20px;
  }

  .inventory-selection {
    margin-bottom: 0;
  }

  .pr-40 {
    padding-right: 0;
  }

  .pl-40 {
    padding-left: 0;
  }

  .austin-sm-container {
    max-width: calc(100% - 10%);
  }

  .pricing-card {
    margin-top: 30px;
  }

  .storage-wrapper {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .storage-options-content {
    padding-left: 30px;
  }

  .features-sect {
    padding: 0;
  }

  .pkg-card-wrapper {
    margin-bottom: 30px;
  }

  .pkg-card-center {
    transform: none;
    padding: 40px 30px;
  }

  .common-header-content .common-banner-title {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: 2px;
  }

  .fishing-brand-card {
    width: calc(100% / 2 - 14px);
  }

  /* weke shop page css start */
  .austin-container .austin-featured-col .content-box {
    justify-content: center;
    align-items: center;
  }

  .featured-list-wrapper li {
    list-style: none;
  }

  .featured-list {
    padding-left: 0;
  }

  .central-banner-title {
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 2px;
  }

  .central-content {
    max-width: calc(100% - 20%);
  }

  .austin-featured-col {
    width: 100%;
  }

  .mob-pb {
    padding-bottom: 50px;
  }

  .mob-pb {
    padding-bottom: 50px;
    padding-top: 50px;
  }

  .sec-btn {
    text-align: center;
    width: 100%;
  }

  .austin-featured-box {
    padding-top: 0;
    padding-bottom: 0;
    flex-direction: column;
    text-align: center;
  }

  .reverse-col {
    flex-direction: column-reverse;
  }

  .central-banner-content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    width: 100%;
    justify-content: center;
    padding-left: 0;
    text-align: center;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.00) 100%);
  }

  .welcome-section {
    height: auto;
    padding: 60px 0;
  }

  .navbar-toggle {
    display: block;
  }

  .navbar-right {
    display: none;
  }

  .navbar-menu {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background-color: var(--White);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 20px;
    transition: left 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  .navbar-menu.active {
    left: 0;
  }

  .navbar-menu li {
    width: 100%;
  }

  .navbar-menu li a {
    font-size: 18px;
    padding: 12px 0;
    width: 100%;
  }

  .navbar-location-text {
    display: none;
  }

  .navbar-more-btn span:not(.hamburger) {
    display: none;
  }

  .inventory-mega-menu {
    top: 90px;
    max-height: calc(100vh - 90px);
  }

  .mega-menu-content {
    flex-direction: column;
    gap: 30px;
    padding: 30px 15px;
  }

  .mega-menu-sidebar {
    min-width: 100%;
  }

  .mega-menu-brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-mega-menu {
    top: 90px;
    max-height: calc(100vh - 90px);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .nav-item-wrapper {
    border-bottom: 1px solid #f0f0f0;
  }

  .navbar-menu li {
    margin-bottom: 0;
  }

  .navbar-menu li a {
    border-bottom: none;
  }

  .mobile-toggle {
    display: block;
    font-size: 20px;
  }

  .mobile-sub-menu {
    background: #f9f9f9;
    padding-left: 0;
  }

  .mobile-sub-menu li a {
    padding: 12px 20px !important;
    /* Indent sub-links */
    font-size: 16px;
    font-weight: 500;
    color: #555;
    border-bottom: 1px solid #eee;
    display: block;
    width: 100%;
  }

  .mobile-sub-menu li:last-child a {
    border-bottom: none;
  }

  /* -------------nav bar css end here -----------  */

  /* Stack columns vertically */
  .footer-links-section .row {
    flex-direction: column;
  }

  /* Make each column full width and add border */
  .custom-col-5 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
    border-bottom: 1px solid #e1e1e1;
  }

  .custom-col-5:last-child {
    border-bottom: none;
  }

  /* Make title clickable and add flex for icon alignment */
  .footer-col-title {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding: 20px 0;
    user-select: none;
  }

  /* Add chevron icon using FontAwesome */
  .footer-col-title::after {
    content: "\f107";
    /* fa-angle-down */
    font-family: "FontAwesome";
    font-size: 20px;
    transition: transform 0.3s ease;
    color: var(--Blue);
  }

  /* Rotate icon when active */
  .custom-col-5.active .footer-col-title::after {
    transform: rotate(180deg);
  }

  /* Hide links by default */
  .footer-links-list {
    display: none;
    padding-bottom: 20px;
  }

  .copyright-text {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .inventory-card {
    width: 100%;
  }

  .services-links-section {
    padding-bottom: 0;
  }

  .slider-section {
    padding-bottom: 20px;
  }

  .new-arrivals-section {
    padding-bottom: 50px;
  }

  .fishing-depot-hero .hero-title {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 3px;
  }

  .sell-trade-intro-box {
    padding: 30px 20px;
  }

  .card-overlay {
    padding: 0 30px 25px 25px;
  }

  .sell-trade-feature-card {
    flex-direction: row;
  }

  .ready-to-sell-content-box {
    padding: 40px 20px;
  }

  .ready-to-sell-title {
    font-size: 28px;
  }

  .brand-banner {
    position: unset;
    top: unset;
    z-index: unset;
  }

  .event-header {
    flex-direction: column;
    text-align: center;
  }

  .event-header h2 {
    margin-bottom: 15px !important;
  }

  .positioned-banner {
    object-position: unset;
  }

  .form-sec {
    padding: 50px 20px 60px 20px;
    background: #F7F7F7;
  }

  .form-title {
    font-size: 30px;
    line-height: 40px;
  }

  .job-detail-main-title {
    font-size: 22px;
    line-height: 28px;
  }

  .history-main-title {
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 14px;
  }

  .history-section-title {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 14px;
  }

  .history-meta-info {
    flex-direction: column;
    gap: 5px;
  }

  .history-divider-anchor::before,
  .history-divider-anchor::after {
    width: 40%;
  }

  .history-divider-anchor {
    margin: 20px 0 40px 0;
  }

  .featured-subtitle {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .feature-icon-wrapper {
    margin-bottom: 0;
  }

  .austin-sm-container {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .spring-content-box {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .spring-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .storage-wrapper {
    flex-direction: column-reverse;
  }

  .storage-col-1,
  .storage-col-2 {
    width: 100%;
  }

  .storage-options-content {
    padding-left: 0;
    padding-bottom: 30px;
    text-align: center;
  }

  .storage-options-sect {
    padding: 50px 0;
    background-color: #F7F7F7;
  }

  .spring-comm-sect {
    padding: 50px 0 70px;
  }

  .pkg-sect {
    padding: 50px 0;
  }

  .pkg-main-title {
    font-size: 30px;
    line-height: 40px;
  }

  .faq-sect {
    padding: 40px 0;
    background-color: #f7f9fa;
  }

  .pkg-price {
    font-size: 35px;
    line-height: 45px;
  }

  .pkg-name {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 8px;
  }

  .pkg-price-row {
    margin-bottom: 17px;
  }

  .central-title {
    font-size: 25px;
    line-height: 32px;
  }

  .common-header-content .common-banner-subtitle {
    font-size: 10px;
    line-height: 20px;
    letter-spacing: 1px;
  }

  .common-header-content .common-banner-title {
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 1px;
  }

  .fishing-brands-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
  }

  .austin-container .austin-featured-col .content-box {
    max-width: 100%;
  }

  .bold-title-heading {
    font-size: 28px;
    line-height: 37px;
    margin-bottom: 30px;
  }

  .austin-lg-container .austin-featured-col .content-box {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .title-heading {
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 2px;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {

  .commonSectionInnerWrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-content h1 {
    font-size: 25px;
    line-height: 33px;
    letter-spacing: 2px;
  }

  .service-link-card {
    width: 100%;
  }

  .fishing-depot-hero .hero-title {
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 3px;
  }

  .fishing-depot-hero .hero-content-wrapper {
    padding: 80px 20px;
  }

  .robalo-hero-title {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
  }

  .austin-crew-container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .card-columns {
    column-count: 1;
  }

  .event-form-sec {
    padding: 50px 0 0 0;
  }

  .brand-border:first-child {
    border-left: unset
  }

  .brand-border:last-child {
    border-right: unset
  }

  .brand-border {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    border-left: unset;
    border-right: unset;
  }

  .robalo-lineup-name {
    padding-bottom: 20px;
  }


  .form-wrapper {
    padding: 40px 20px 40px 20px;
  }

  .card-columns {
    column-count: 1;
  }

  .crew-action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .crew-btn-call,
  .crew-btn-email {
    width: 100%;
    max-width: 200px;
  }

  .history-main-title {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 14px;
  }

  .history-divider-anchor {
    margin: 30px 0;
  }

  .inventory-box {
    aspect-ratio: unset;
    height: 100%;
  }

  .features-sect {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .hide-br {
    display: none;
  }

  .banner-rich-text {
    margin-bottom: 20px;
  }

  .type-card-label {
    bottom: 16px;
    font-size: 16px;
  }

  .fishing-brand-card {
    width: 100%;
  }

  .wake-slider-section {
    padding: 45px 20px 0 20px;
  }

  .austin-featured-logo {
    max-width: 200px;
    ;
  }

  .mob-pb {
    padding-bottom: 50px;
  }

  .central-banner-content {
    max-width: 600px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .central-content {
    max-width: 100%;
    padding: 0 20px;
    margin: 40px auto;
  }

  .navbar-logo img {
    height: 40px;
  }

  .navbar-menu {
    top: 70px;
    height: calc(100vh - 70px);
  }

  .side-mega-menu {
    width: 100%;
    right: -100%;
    top: 70px;
    height: calc(100vh - 70px);
    padding: 30px 20px;
  }

  .inventory-mega-menu {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .mega-menu-content {
    padding: 20px 15px;
  }

  .mega-menu-title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .mega-menu-links li a {
    font-size: 14px;
  }

  .mega-menu-brands-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }


  .brand-card .brand-logo {
    max-width: 100px;
    max-height: 45px;
    bottom: 15px;
    left: 15px;
  }

  .location-dropdown {
    width: 280px;
    right: -10px;
    padding: 15px;
  }

  .location-dropdown::before {
    right: 25px;
  }

  .location-item.selected .loc-title {
    font-size: 20px;
  }

  .location-item.selected .loc-phone {
    font-size: 18px;
  }

  .service-mega-menu {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .service-grid {
    grid-template-columns: 1fr !important;
  }

  .service-card {
    aspect-ratio: 16/9;
  }

  .service-card .service-title {
    font-size: 16px;
  }

  .service-card .service-overlay {
    padding: 15px;
  }

  /* -----------------------------------Nav bar css end here ----------------------------------  */
}

@media (max-width: 500px) {
  .sub-header ul li a {
    padding: 22px 14px;
}
  .sell-trade-feature-card {
    flex-direction: column;
  }

  .sell-trade-icon-box {
    margin-bottom: 15px;
  }

  .logo-item img {
    padding: 4px 10px;
  }

  .logo-item {
    min-height: 80px;
  }
}


@media (max-width: 450px) {
  .common-form-wrapper {
    max-width: 100%;
    min-width: unset;
    width: 100%;
    margin: 0 auto;
  }

  .austin-crew-container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
