:root {
  --default-font: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --heading-font: "DM Sans", sans-serif;
  --nav-font: "DM Sans", sans-serif;
  --background-color: #ffffff;
  --surface-color: #ffffff;
  --default-color: #475569;
  --heading-color: #092840;
  --brand-blue: #062a49;
  --brand-blue-soft: #123f63;
  --brand-orange: #f36a12;
  --brand-orange-dark: #c94f05;
  --brand-ice: #f6f9fb;
  --line-color: rgba(6, 42, 73, 0.11);
  --contrast-color: #ffffff;
  --nav-color: rgba(255, 255, 255, 0.86);
  --nav-hover-color: #ffffff;
  scroll-behavior: smooth;
}

.light-background {
  --background-color: var(--brand-ice);
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: var(--brand-blue);
  --surface-color: rgba(255, 255, 255, 0.06);
  --default-color: rgba(255, 255, 255, 0.72);
  --heading-color: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--default-color);
  background: var(--background-color);
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
}

a {
  color: var(--brand-orange);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

a:hover {
  color: var(--brand-orange-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: 0;
}

p {
  line-height: 1.8;
}

.header {
  color: #ffffff;
  background: rgba(6, 42, 73, 0.96);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
  z-index: 10000;
}

.scrolled .header {
  background: rgba(6, 42, 73, 0.98);
  box-shadow: 0 14px 32px rgba(6, 42, 73, 0.18);
}

.header .logo {
  line-height: 1;
}

.site-logo {
  width: min(224px, 40vw);
  max-height: 54px;
  object-fit: contain;
}

.header .btn-getstarted,
.btn-primary,
.santo-contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--brand-orange);
  border: 1px solid var(--brand-orange);
  border-radius: 6px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  box-shadow: none;
}

.header .btn-getstarted {
  margin-left: 24px;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 24px;
}

.btn-agent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.btn-agent:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.header .btn-getstarted:hover,
.btn-primary:hover,
.santo-contact-form button:hover {
  color: #ffffff;
  background: var(--brand-orange-dark);
  border-color: var(--brand-orange-dark);
  transform: translateY(-1px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-orange);
  font-weight: 600;
  border-bottom: 1px solid rgba(243, 106, 18, 0.35);
}

.text-link:hover {
  color: var(--brand-orange-dark);
  border-color: var(--brand-orange-dark);
}

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    display: flex;
    align-items: center;
    padding: 10px 13px;
    color: var(--nav-color);
    font-family: var(--nav-font);
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
  }

  .navmenu .dropdown > a {
    gap: 6px;
  }

  .navmenu .dropdown > a .toggle-dropdown {
    font-size: 12px;
    line-height: 1;
    transition: transform 0.2s ease;
  }

  .navmenu .dropdown > a:hover .toggle-dropdown,
  .navmenu .dropdown:hover > a .toggle-dropdown,
  .navmenu .dropdown.dropdown-active > a .toggle-dropdown {
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    background: #ffffff;
    border: 1px solid var(--line-color);
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(6, 42, 73, 0.14);
    z-index: 10001;
  }

  .navmenu .dropdown:hover > ul,
  .navmenu .dropdown:focus-within > ul,
  .navmenu .dropdown.dropdown-active > ul {
    display: block;
  }

  .navmenu .dropdown ul a,
  .navmenu .dropdown ul a:focus {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: var(--heading-color);
    font-size: 14px;
    font-weight: 600;
  }

  .navmenu .dropdown ul a:hover {
    color: var(--brand-orange);
    background: rgba(243, 106, 18, 0.06);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .active {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
  }
}

@media (max-width: 1199px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 14px 0 0;
    padding: 9px 14px;
  }

  .header-actions {
    order: 2;
    margin-left: 0;
  }

  .btn-agent {
    padding: 10px 13px;
  }

  .header .navmenu {
    order: 3;
  }

  .mobile-nav-toggle {
    color: #ffffff;
    font-size: 30px;
    line-height: 0;
    cursor: pointer;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 70px 20px 20px 20px;
    padding: 12px 0;
    margin: 0;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid var(--line-color);
    overflow-y: auto;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    color: var(--heading-color);
    font-size: 17px;
    font-weight: 500;
    white-space: nowrap;
  }

  .navmenu .dropdown > a {
    gap: 8px;
  }

  .navmenu .dropdown > a .toggle-dropdown {
    margin-left: auto;
    font-size: 14px;
  }

  .navmenu .dropdown ul {
    display: none;
    list-style: none;
    margin: 0 20px 12px 20px;
    padding: 0 0 0 14px;
    border-left: 1px solid rgba(6, 42, 73, 0.12);
  }

  .navmenu .dropdown.dropdown-active > ul {
    display: block;
  }

  .navmenu .dropdown ul a,
  .navmenu .dropdown ul a:focus {
    padding: 10px 0;
    color: var(--heading-color);
    font-size: 15px;
    font-weight: 500;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--brand-orange);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 10003;
    color: #ffffff;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    overflow: hidden;
    background: rgba(6, 42, 73, 0.88);
    z-index: 10002;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
    position: fixed;
    inset: 78px 20px 20px 20px;
  }

  .mobile-nav-active .header .logo,
  .mobile-nav-active .header .btn-getstarted {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

section,
.section {
  color: var(--default-color);
  background: var(--background-color);
  padding: 72px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

.hero-media.section {
  padding: 0;
  background: #061f36;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item,
.hero-slide-link {
  width: 100%;
}

.hero-carousel {
  max-width: none;
  margin: 0 auto;
}

.hero-slide-link {
  display: block;
}

.hero-banner-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2172 / 724;
  object-fit: contain;
  object-position: center;
  background: var(--brand-blue);
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  top: 50%;
  bottom: auto;
  width: 46px;
  height: 46px;
  border-radius: 6px;
  background: rgba(6, 42, 73, 0.65);
  opacity: 1;
  transform: translateY(-50%);
}

.hero-carousel .carousel-control-prev {
  left: 20px;
}

.hero-carousel .carousel-control-next {
  right: 20px;
}

.intro-section h1,
.page-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.08;
  font-weight: 600;
}

.intro-section {
  background: #eef3f6;
  padding-top: 58px;
}

.intro-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  margin-top: 34px;
  padding: 0;
}

.intro-meta-address,
.intro-meta-items,
.intro-meta-items span {
  display: flex;
  align-items: center;
}

.intro-meta-address {
  gap: 10px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
}

.intro-meta-address i {
  color: var(--brand-orange);
  font-size: 19px;
}

.intro-meta-items {
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.intro-meta-items span {
  gap: 8px;
  color: rgba(9, 40, 64, 0.68);
  font-size: 13px;
  font-weight: 500;
}

.intro-meta-items i {
  color: var(--brand-blue-soft);
  font-size: 17px;
}

.section-lead,
.page-hero p {
  margin: 0;
  color: rgba(71, 85, 105, 0.88);
  font-size: 17px;
}

.intro-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 26px;
}

.page-hero {
  padding: 68px 0 54px;
  background:
    linear-gradient(135deg, rgba(6, 42, 73, 0.96), rgba(18, 63, 99, 0.9)),
    #062a49;
}

.page-hero h1,
.page-hero p {
  color: #ffffff;
}

.page-hero p {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: var(--brand-orange);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #ffb176;
}

.split-section h2,
.security-strip h2 {
  margin-bottom: 20px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.14;
  font-weight: 600;
}

.split-section p {
  margin-bottom: 26px;
  font-size: 16px;
}

.image-composition {
  position: relative;
  min-height: 530px;
}

.image-composition img {
  display: block;
  max-width: 100%;
}

.composition-main {
  width: 78%;
  margin-left: auto;
  filter: drop-shadow(0 24px 32px rgba(6, 42, 73, 0.14));
}

.composition-float {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52%;
  filter: drop-shadow(0 22px 28px rgba(6, 42, 73, 0.16));
}

.simple-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
}

.simple-list span {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--heading-color);
  font-weight: 500;
}

.simple-list i {
  color: var(--brand-orange);
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line-color);
  background: #ffffff;
}

.image-panel img {
  display: block;
  width: 100%;
}

.wide-panel {
  max-width: 760px;
  margin-left: auto;
}

.wide-panel img {
  aspect-ratio: 1825 / 862;
  object-fit: cover;
}

.security-strip {
  position: relative;
}

.security-strip h2 {
  margin-bottom: 0;
}

.minimal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.minimal-grid div {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.minimal-grid i {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--brand-orange);
  font-size: 28px;
}

.minimal-grid h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 600;
}

.minimal-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.service-page {
  padding-top: 62px;
}

.service-card {
  height: 100%;
  padding: 34px 0;
  border-top: 1px solid var(--line-color);
}

.service-card i {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--brand-orange);
  font-size: 32px;
}

.service-card h2 {
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 600;
}

.service-card p {
  margin: 0;
}

.storage-options-section {
  background: #ffffff;
}

.bodega-category-block {
  position: relative;
}

.section-heading-inline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.section-heading-inline h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  font-weight: 600;
  max-width: 16ch;
}

.bodega-tabs {
  gap: 12px;
}

.bodega-tabs .nav-item {
  display: flex;
}

.bodega-tabs .nav-link {
  color: var(--brand-orange);
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: none;
  position: relative;
}

.bodega-tabs .nav-link:hover {
  color: var(--brand-orange);
}

.bodega-tabs .nav-link.active {
  color: var(--brand-orange);
  background: transparent;
}

.bodega-tabs .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(243, 106, 18, 0.35);
}

.bodega-tabs .nav-link.active::after {
  background: var(--brand-orange);
}

.bodega-view {
  min-height: 1px;
}

.sub-bodega-tabs {
  gap: 10px;
  border-bottom: 1px solid var(--line-color);
}

.sub-bodega-tabs .nav-link {
  color: var(--default-color);
  border: 0;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  padding: 10px 16px 14px;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
}

.sub-bodega-tabs .nav-link:hover {
  color: var(--heading-color);
  border-bottom-color: rgba(6, 42, 73, 0.16);
}

.sub-bodega-tabs .nav-link.active {
  color: var(--brand-blue);
  background: transparent;
  border-bottom-color: var(--brand-orange);
}

.sub-tab-content {
  min-height: 320px;
}

.storage-card {
  height: 100%;
  background: #ffffff;
  border-top: 1px solid var(--line-color);
}

.storage-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 24px;
}

.storage-card-body {
  display: grid;
  gap: 12px;
}

.storage-kicker {
  color: var(--brand-orange);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.storage-card h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 600;
}

.storage-card p {
  margin: 8px 0 10px;
}

.storage-intro-copy {
  max-width: 660px;
  margin: 0;
  color: rgba(6, 42, 73, 0.74);
  line-height: 1.65;
}

.bodega-tabs-wrap {
  margin-bottom: 8px;
}

.bodega-table-wrap {
  margin-bottom: 30px;
  border: 1px solid var(--line-color);
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(6, 42, 73, 0.03);
}

.bodega-table {
  margin-bottom: 0;
}

.bodega-table thead th {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-color);
  background: #ffffff;
  color: var(--heading-color);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bodega-table td {
  padding: 13px 16px;
  vertical-align: middle;
  font-size: 14px;
}

.bodega-table tbody tr + tr td {
  border-top: 1px solid var(--line-color);
}

.bodega-table strong {
  display: block;
  color: var(--heading-color);
  font-size: 14px;
}

.bodega-table-label {
  color: rgba(6, 42, 73, 0.68);
  font-size: 12px;
}

.bodega-table-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.bodega-table-actions .btn {
  min-width: 96px;
}

.bodega-details {
  display: grid;
  gap: 0;
  margin: 4px 0 0;
  border: 1px solid var(--line-color);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.bodega-details div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-color);
}

.bodega-details div:last-child {
  border-bottom: 0;
}

.bodega-details dt,
.bodega-details dd {
  margin: 0;
  line-height: 1.35;
}

.bodega-details dt {
  color: rgba(6, 42, 73, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.bodega-details dd {
  margin-left: auto;
  color: var(--heading-color);
  font-weight: 700;
  text-align: right;
}

.bodega-actions {
  margin-top: 14px;
}

.bodega-actions .btn-primary {
  min-width: 180px;
}

.bodega-card.is-recommended {
  border-color: rgba(243, 106, 18, 0.5);
  box-shadow: 0 18px 34px rgba(243, 106, 18, 0.14);
}

.bodega-card.is-recommended .storage-kicker,
.bodega-table tr.is-recommended strong {
  color: var(--brand-orange);
}

.bodega-table tr.is-recommended {
  background: rgba(243, 106, 18, 0.08);
}

.option-card {
  padding: 28px;
  border: 1px solid var(--line-color);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(6, 42, 73, 0.04);
}

.option-card-icon {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 22px;
  align-items: stretch;
}

.storage-icon-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  border-radius: 8px;
  color: #ffffff;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.15), transparent 52%),
    linear-gradient(135deg, var(--brand-blue), var(--brand-blue-soft));
}

.storage-icon-panel i {
  font-size: clamp(52px, 6vw, 76px);
}

.option-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  margin-top: 8px;
}

.option-links .btn-primary {
  min-width: 170px;
}

.contact-main-wrapper {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 42px;
}

.map-wrapper {
  min-height: 650px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line-color);
  background: #e8eef2;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--line-color);
  background: #ffffff;
}

.contact-card .icon-box {
  flex: 0 0 auto;
  color: var(--brand-orange);
  font-size: 24px;
}

.contact-card h2 {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 600;
}

.contact-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.contact-form-container {
  padding: 34px;
  border-radius: 8px;
  border: 1px solid var(--line-color);
  background: #ffffff;
}

.contact-form-container h2 {
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 600;
}

.contact-form-container p {
  margin-bottom: 24px;
}

.quote-form-container {
  padding-top: 30px;
}

.quote-storage-summary {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 18px;
  margin-bottom: 24px;
  border: 1px solid var(--line-color);
  border-radius: 8px;
  background: #f8fafc;
}

.quote-storage-summary img {
  width: 140px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.quote-storage-copy h3 {
  margin: 8px 0 8px;
  font-size: 24px;
  font-weight: 600;
}

.quote-storage-copy p {
  margin: 0;
}

.quote-storage-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 10px;
  color: rgba(6, 42, 73, 0.72);
  font-size: 13px;
  font-weight: 600;
}

.quote-storage-price {
  display: inline-flex;
  margin-top: 12px;
  color: var(--brand-blue);
  font-size: 18px;
  font-weight: 700;
}

.quote-storage-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--brand-orange);
  background: rgba(243, 106, 18, 0.12);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.form-label {
  margin-bottom: 7px;
  color: var(--heading-color);
  font-size: 13px;
  font-weight: 600;
}

.santo-contact-form .form-control {
  height: auto;
  padding: 13px 14px;
  border: 1px solid var(--line-color);
  border-radius: 6px;
  color: var(--default-color);
  background: #ffffff;
}

.santo-contact-form .form-control:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(243, 106, 18, 0.12);
}

.santo-contact-form textarea.form-control {
  min-height: 138px;
}

.form-feedback .sent-message {
  display: none;
  padding: 13px 15px;
  border-radius: 6px;
  color: #0f5132;
  background: #d1e7dd;
  font-weight: 500;
}

.form-feedback .loading {
  display: none;
  padding: 13px 15px;
  border-radius: 6px;
  color: #664d03;
  background: #fff3cd;
  font-weight: 500;
}

.form-feedback .error-message {
  display: none;
  padding: 13px 15px;
  border-radius: 6px;
  color: #842029;
  background: #f8d7da;
  font-weight: 500;
}

.form-feedback .sent-message.active,
.form-feedback .loading.d-block,
.form-feedback .error-message.d-block,
.form-feedback .sent-message.d-block {
  display: block;
}

.form-submit {
  margin-top: 8px;
}

.form-submit button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 9px 16px;
  border: 1px solid var(--brand-orange);
  border-radius: 6px;
  background: var(--brand-orange);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  box-shadow: none;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.form-submit button:hover {
  transform: translateY(-1px);
  color: #ffffff;
  background: var(--brand-orange-dark);
  border-color: var(--brand-orange-dark);
}

.form-submit button:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(243, 106, 18, 0.16);
}

.footer {
  color: rgba(255, 255, 255, 0.72);
  background: #051f36;
  font-size: 14px;
}

.footer-top {
  padding-top: 58px;
}

.footer-summary {
  max-width: 420px;
  margin-top: 18px;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-isotype-link {
  display: inline-flex;
}

.footer-isotype {
  display: block;
  width: auto;
  max-width: 78px;
  max-height: 46px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.82;
}

.footer-isotype-santo {
  height: 46px;
  object-fit: contain;
}

.footer-isotype-partner {
  height: 46px;
  object-fit: contain;
}

.footer-brand-divider {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.22);
}

.footer h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  padding: 6px 0;
}

.footer-links a,
.footer-contact p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
  color: #ffb176;
}

.footer-contact p {
  margin-bottom: 7px;
}

.footer-contact strong {
  color: #ffffff;
  font-weight: 600;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact-link i {
  color: #ffb176;
  font-size: 16px;
}

.footer-contact-link:hover {
  color: #ffffff;
}

.copyright {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  margin: 0;
}

.scroll-top {
  position: fixed;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  border-radius: 6px;
  background: var(--brand-orange);
  transition: all 0.25s ease;
}

.scroll-top i {
  color: #ffffff;
  font-size: 24px;
  line-height: 0;
}

.scroll-top.active {
  bottom: 18px;
  visibility: visible;
  opacity: 1;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 99998;
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #ffffff;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 12px 28px rgba(5, 31, 54, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-brand-icon {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.whatsapp-float .whatsapp-brand-icon {
  width: 60px;
  height: 60px;
}

.whatsapp-float span {
  display: none;
}

.whatsapp-float:hover {
  color: #ffffff;
  background: transparent;
  box-shadow: 0 15px 34px rgba(5, 31, 54, 0.34);
  transform: translateY(-3px);
}

.whatsapp-float:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.28), 0 12px 28px rgba(5, 31, 54, 0.26);
}

.assistant-widget {
  position: fixed;
  right: 18px;
  bottom: 154px;
  z-index: 1045;
  width: min(360px, calc(100vw - 36px));
}

.assistant-launcher {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-blue), #123f63);
  box-shadow: 0 16px 30px rgba(6, 42, 73, 0.28);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.assistant-launcher:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(6, 42, 73, 0.34);
}

.assistant-launcher-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  flex: 0 0 auto;
}

.assistant-launcher-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.assistant-launcher-text strong {
  font-size: 14px;
}

.assistant-launcher-text small {
  font-size: 12px;
  opacity: 0.82;
}

.assistant-panel {
  margin-top: 12px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 31, 54, 0.98);
  box-shadow: 0 24px 50px rgba(6, 42, 73, 0.32);
  color: #ffffff;
  backdrop-filter: blur(16px);
}

.assistant-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.assistant-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.assistant-header > div {
  flex: 1 1 auto;
}

.assistant-header strong {
  display: block;
  font-size: 15px;
}

.assistant-header p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.assistant-close {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  padding: 4px;
  line-height: 1;
}

.assistant-close:hover {
  color: #ffffff;
}

.assistant-messages {
  max-height: 290px;
  overflow-y: auto;
  padding: 14px 14px 10px;
  display: grid;
  gap: 10px;
}

.assistant-message {
  display: flex;
}

.assistant-message.is-user {
  justify-content: flex-end;
}

.assistant-message.is-assistant {
  justify-content: flex-start;
}

.assistant-bubble {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.assistant-bubble-wrap {
  display: grid;
  gap: 10px;
  max-width: 100%;
}

.assistant-message.is-user .assistant-bubble {
  background: linear-gradient(135deg, var(--brand-orange), #ff8534);
  color: #ffffff;
  border-bottom-right-radius: 6px;
}

.assistant-message.is-assistant .assistant-bubble {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-bottom-left-radius: 6px;
}

.assistant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.assistant-action-btn {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 11px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.assistant-action-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}

.assistant-action-btn.is-primary {
  border-color: rgba(243, 106, 18, 0.82);
  background: rgba(243, 106, 18, 0.92);
}

.assistant-action-btn.is-primary:hover {
  background: var(--brand-orange-dark);
  border-color: var(--brand-orange-dark);
}

.assistant-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 14px 12px;
}

.assistant-chip {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 7px 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 700;
}

.assistant-chip:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.assistant-form {
  display: flex;
  gap: 8px;
  padding: 0 14px 14px;
}

.assistant-input {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.assistant-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.assistant-input:focus {
  border-color: rgba(243, 106, 18, 0.8);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: 0 0 0 0.18rem rgba(243, 106, 18, 0.18);
}

.assistant-send {
  flex: 0 0 auto;
  border-radius: 999px;
  white-space: nowrap;
}

.assistant-panel-compact {
  display: grid;
  gap: 0;
}

.assistant-messages-compact {
  max-height: none;
  padding-bottom: 6px;
}

.assistant-flow {
  display: grid;
  gap: 10px;
  padding: 0 14px 14px;
}

.assistant-choice {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  text-align: left;
}

.assistant-choice:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.assistant-choice strong {
  font-size: 13px;
}

.assistant-choice span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.35;
}

.assistant-inline-actions {
  display: flex;
  justify-content: flex-end;
  padding: 0 14px 14px;
}

.assistant-chip-muted {
  background: rgba(255, 255, 255, 0.04);
}

.assistant-note {
  max-width: 88%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .assistant-widget {
    right: 12px;
    bottom: 136px;
    width: calc(100vw - 24px);
  }

  .assistant-launcher {
    padding: 11px 13px;
  }

  .assistant-bubble {
    max-width: 94%;
  }
}

@media (max-width: 1199px) {
  .site-logo {
    width: min(210px, 42vw);
  }

  .hero-banner-image {
    height: auto;
  }
}

@media (max-width: 991px) {
  section,
  .section {
    padding: 60px 0;
    scroll-margin-top: 86px;
  }

  .intro-section h1,
  .page-hero h1 {
    font-size: clamp(30px, 7vw, 44px);
  }

  .image-composition {
    min-height: 470px;
  }

  .minimal-grid {
    grid-template-columns: 1fr;
  }

  .contact-main-wrapper {
    grid-template-columns: 1fr;
  }

  .map-wrapper {
    min-height: 340px;
  }

  .intro-meta-row {
    margin-top: 28px;
  }
}

@media (max-width: 767px) {
  .header .btn-getstarted {
    display: none;
  }

  .btn-agent {
    display: none;
  }

  .site-logo {
    width: min(208px, 70vw);
  }

  .hero-banner-image {
    height: auto;
    min-height: 0;
    object-position: center;
  }

  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .hero-carousel .carousel-control-prev {
    left: 10px;
  }

  .hero-carousel .carousel-control-next {
    right: 10px;
  }

  .intro-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .intro-meta-items {
    justify-content: flex-start;
    gap: 12px;
  }

  .image-composition {
    min-height: 370px;
  }

  .composition-main {
    width: 86%;
  }

  .composition-float {
    width: 58%;
  }

  .contact-cards-container {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 26px 20px;
  }

  .quote-storage-summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .quote-storage-summary img {
    width: 100%;
    height: auto;
    aspect-ratio: 14 / 9;
  }

  .option-card-icon {
    grid-template-columns: 1fr;
  }

  .storage-icon-panel {
    min-height: 200px;
  }

  .sub-bodega-tabs {
    justify-content: flex-start !important;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .bodega-actions {
    align-items: stretch;
  }

  .bodega-actions .btn-primary {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
  }

  .scroll-top.active {
    bottom: 12px;
  }

  .whatsapp-float {
    bottom: 74px;
  }

  .whatsapp-float .whatsapp-brand-icon {
    width: 56px;
    height: 56px;
  }

  .hero-banner-image {
    height: auto;
    min-height: 0;
  }

  .image-composition {
    min-height: 330px;
  }

  .storage-card h2 {
    font-size: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
