:root {
  --sm-font: 'Poppins', sans-serif;
  --sm-navy: #143668;
  --sm-navy-deep: #10264b;
  --sm-blue: #0fa6db;
  --sm-blue-soft: #6ad3fc;
  --sm-blue-soft-strong: #68cff8;
  --sm-blue-hover: #133063;
  --sm-text: #111111;
  --sm-text-muted: #6f737c;
  --sm-text-soft: #87878a;
  --sm-surface: #f4f4f4;
  --sm-surface-soft: #f8f8f8;
  --sm-line: #dfe3e8;
  --sm-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --sm-radius: 12px;
}

* { font-family: var(--sm-font); }
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: var(--sm-text);
  background: #fff;
  text-rendering: optimizeLegibility;
}

.menu_bar { background: #fff; border-top: 0; padding-left: 0; padding-right: 0; }
.header-divider { display: none; }
.contact_info_header { display: flex; justify-content: space-between; gap: 30px; padding: 14px 0 12px; color: var(--sm-text); font-size: 14px; font-weight: 600; }
.contact_info_header .address, .contact_info_header .phone { display: flex; align-items: center; gap: 6px; }
.contact_info_header a { color: var(--sm-text); text-decoration: none; }
.header_right { display: flex; justify-content: flex-end; }
.menu_area { display: flex; align-items: center; height: 100%; }
.site-header-main { min-height: 96px; gap: 20px; }
.logo_area img {height: auto; display: block; margin: 16px 0; max-width: 155px; }
.navbar-toggler { border: 1px solid var(--sm-line); border-radius: 10px; padding: 10px 12px; background: #fff; box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06); }
.navbar-toggler:focus { box-shadow: 0 0 0 0.15rem rgba(15, 166, 219, 0.18); }
.navbar-toggler-icon { width: 1.4rem; height: 1.4rem; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2817,24,39,0.88%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.25' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
.navbar-nav .nav-link { color: #222 !important; font-weight: 500; font-size: 22px; padding: 8px 18px !important; letter-spacing: -0.01em; }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus-visible { color: var(--sm-blue) !important; }
.navbar-nav .nav-item.active .nav-link { color: var(--sm-blue) !important; }
.navbar-nav { gap: 4px; }
.navbar-nav .nav-item { position: relative; }
.navbar-nav .has-submenu { display: flex; align-items: center; }
.submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-left: -4px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--sm-navy);
  cursor: pointer;
  transition: color .2s ease;
}
.submenu-toggle:hover,
.submenu-toggle:focus-visible {
  color: var(--sm-blue);
}
.submenu-toggle-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  transition: transform .2s ease;
}
.submenu-toggle-icon svg {
  width: 100%;
  height: 100%;
}
.submenu-list {
  list-style: none;
  margin: 0;
  padding: 14px 0;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(19, 48, 99, 0.08);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 50;
}
.submenu-item { position: relative; }
.submenu-link {
  display: block;
  padding: 10px 18px;
  color: #173865;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.submenu-link:hover,
.submenu-item.active > .submenu-link { color: var(--sm-blue); background: rgba(15, 166, 219, 0.08); }
.submenu-list-nested {
  top: -14px;
  left: calc(100% + 8px);
}
.submenu-open > .submenu-toggle .submenu-toggle-icon {
  transform: rotate(180deg);
}
@media (min-width: 1200px) {
  .submenu-item.has-submenu-nested {
    display: flex;
    align-items: center;
  }
  .submenu-item.has-submenu-nested > .submenu-link {
    width: 100%;
    padding-right: 42px;
  }
  .submenu-toggle-nested {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 24px;
    height: 24px;
    margin-left: 0;
    transform: translateY(-50%);
  }
  .submenu-toggle-nested .submenu-toggle-icon {
    width: 14px;
    height: 14px;
  }
  .submenu-toggle-nested .submenu-toggle-icon svg {
    transform: rotate(-90deg);
  }
  .submenu-open > .submenu-toggle-nested .submenu-toggle-icon {
    transform: rotate(0deg);
  }
  .has-submenu:hover > .submenu-list,
  .has-submenu:focus-within > .submenu-list,
  .has-submenu-nested:hover > .submenu-list,
  .has-submenu-nested:focus-within > .submenu-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.menu_xtra { margin-left: 12px; }
.mob_lnks .address, .mob_lnks .phone { display: flex; align-items: center; gap: 6px; margin-top: 10px; }
.reserve_btn a { background: #000; color: #fff !important; padding: 15px 50px; border-radius: 6px; font-weight: 600; font-size: 18px; text-decoration: none; transition: background-color .2s ease, transform .2s ease; }
.reserve_btn a:hover { background: var(--sm-blue); transform: translateY(-1px); }

#opening_video_sec { position: relative; }
#hero_sec { background-color: #f3f4f6; padding: 22px 0 26px; }
.hero-row { padding-top: 12px; padding-bottom: 12px; }
.hero-copy-col { padding-top: 18px; padding-bottom: 18px; }
.hero-media-col { padding-top: 18px; padding-bottom: 18px; }
#hero_sec h3 strong { color: var(--sm-text); font-size: 64px; line-height: 1.08; font-weight: 700; display: block; max-width: 600px; letter-spacing: -0.035em; }
#hero_sec h3 u { color: var(--sm-text-soft) ; font-size: 1.75rem; text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; display: block; margin-top: 12px; max-width: 560px; }
.hero-btn { color: #fff !important; font-size: 16px; padding: 14px 22px !important; border-radius: 6px; font-weight: 600; background-color: var(--sm-blue-soft); text-align: center; min-width: 220px; display: inline-block; text-decoration: none; margin-top: 14px; box-shadow: 0 12px 24px rgba(15, 166, 219, 0.16); transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.hero-btn:hover { background: var(--sm-blue-hover); transform: translateY(-1px); box-shadow: 0 16px 32px rgba(20, 54, 104, 0.18); }
#hero_sec .hero-actions { align-items: center; justify-content: flex-start; }
.video-wrapper { display: flex; justify-content: center; }
.video-wrapper iframe { width: 560px; max-width: 100%; height: 315px; border-radius: 0; }
.hero-video-shell { position: relative; width: 560px; max-width: 100%; height: 315px; background: #000; overflow: hidden; border-radius: 2px; box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12); }
.hero-uploaded-video-shell { background: linear-gradient(180deg, rgba(9, 21, 42, 0.55), rgba(0, 0, 0, 0.72)); }
.hero-uploaded-video { width: 100%; height: 100%; display: block; object-fit: cover; background: #000; }
.hero-media-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: #dfe3e8; color: #4b5563; border: 2px dashed #9ca3af; }
.hero-media-placeholder span { font-weight: 700; font-size: 20px; color: #1f2937; }
.hero-media-placeholder small { font-size: 13px; }
.ytp-cued-thumbnail-overlay { position: absolute; inset: 0; cursor: pointer; }
.ytp-cued-thumbnail-overlay-image { width: 100%; height: 100%; background-position: center; background-repeat: no-repeat; background-size: cover; }
.ytp-large-play-button { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 68px; height: 48px; padding: 0; margin: 0; border: 0; background: transparent; cursor: pointer; }
.ytp-large-play-button-bg { transition: fill .2s ease; }
.hero-video-shell:hover .ytp-large-play-button-bg { fill: #ff0033; }

#pricing_sec { background: rgba(15, 166, 219, 0.36); position: relative; overflow: hidden; padding-top: 3.5rem; padding-bottom: 2.6rem; }
#pricing_sec:before { content: ""; position: absolute; left: -40px; top: 50%; width: 368px; height: 405px; background-image: url('../images/logo.png'); background-repeat: no-repeat; background-size: contain; background-position: center; transform: translateY(-50%) rotate(90deg); opacity: 0.08; z-index: 0; pointer-events: none; }
#pricing_sec .pricing_title { font-size: 50px; font-weight: 800; color: var(--sm-navy-deep); margin-bottom: 2rem; line-height: 1.1; }
#pricing_sec .pricing_title span { color: #ffffff; }
.pricing-card { background: #fff; border-radius: 18px; box-shadow: var(--sm-shadow); margin-bottom: 1rem; padding: 14px 18px; min-height: 130px;}
.pricing-card-second { margin-bottom: 2.4rem; }
.pricing-card-body { display: grid; grid-template-columns: 1fr 2fr 2fr auto; align-items: center; gap: 1.4rem; margin: 25px; }
.row-size { font-size: 1.8rem; color: #000; font-weight: 700; line-height: 1.15; white-space: nowrap; letter-spacing: -0.03em; }
.row-con { font-size: 24px; color: #939598; font-weight: 400; justify-self: center; white-space: nowrap; }
.row-price { font-size: 58px; color: #000; font-weight: 700; letter-spacing: -1px; justify-self: center; line-height: 1; white-space: nowrap; }
a.pricing_reserve_btn { background: #000; color: #fff !important; border-radius: 6px; font-size: 1.1rem; padding: 12px 24px; white-space: nowrap; text-decoration: none; font-weight: 700; display: inline-block; transition: background-color .2s ease, transform .2s ease; }
a.pricing_reserve_btn:hover { background: #222; transform: translateY(-1px); }
.need-more-storage-sec-title h3 { font-size: 54px; color: var(--sm-navy-deep); font-weight: 700; letter-spacing: -1px; margin-bottom: 1.2rem; line-height: 1.05; }
.need-more-storage-sec-title h3 span { display: block; }
.need-more-storage-sec-title h3::first-line { color: #163f63; font-weight: 500; }
.pricing-actions { display: flex; justify-content: center; gap: 12px; }
.need-more-storage-sec-title a { background-color: var(--sm-navy-deep); color: #fff !important; border-radius: 6px; min-width: 160px; font-size: 1.1rem; padding: 10px 18px; text-decoration: none; font-weight: 700; display: inline-block; box-shadow: 0 12px 26px rgba(16, 38, 75, 0.18); transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.need-more-storage-sec-title a:hover { background-color: #081a36; transform: translateY(-1px); box-shadow: 0 16px 30px rgba(8, 26, 54, 0.22); }

#about_sec { padding: 54px 0 58px; background: var(--sm-surface); }
#about_sec .about-copy { max-width: 560px; }
#about_sec h3 { color: var(--sm-navy); font-size: 50px; line-height: 65px; font-weight: 300; margin-bottom: 14px; letter-spacing: -0.03em; }
#about_sec h3 strong { font-weight: 800; }
#about_sec h3 span { display: block; }
#about_sec p { color: #6b6f77; font-size: 15px; line-height: 1.7; margin-bottom: 28px; max-width: 530px; }
.about-cta a { display: inline-block; min-width: 194px; text-align: center; background: var(--sm-blue-soft-strong); color: #fff !important; text-decoration: none; border-radius: 6px; font-size: 17px; font-weight: 600; padding: 12px 22px; box-shadow: 0 12px 28px rgba(104, 207, 248, 0.18); transition: background-color .2s ease, transform .2s ease; }
.about-cta a:hover { background: #1f9ed3; transform: translateY(-1px); }

.about-feature-card { background: var(--sm-surface-soft); border-radius: 12px; padding: 20px 18px; min-height: 262px; box-shadow: 0 14px 28px rgba(0,0,0,.05); display: flex; flex-direction: column; border: 1px solid rgba(20, 54, 104, 0.04); }
.about-feature-icon { color: #b8bcc4; font-size: 42px; margin-bottom: 12px; line-height: 1; display: flex; align-items: center; gap: 12px; }
.about-feature-icon svg { width: 44px; height: 44px; display: block; flex-shrink: 0; }
.about-feature-icon-image { width: 44px; height: 44px; object-fit: contain; display: block; flex-shrink: 0; }
.about-feature-card h5 { color: #123260; font-size: 19px; line-height: 1.16; margin: 0 0 10px; font-weight: 700; letter-spacing: -0.02em; }
.about-feature-card p { color: var(--sm-text-muted); font-size: 14px; line-height: 1.65; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 4; line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.about-feature-card a,
.about-feature-card .about-feature-more-btn { margin-top: auto; color: var(--sm-navy); text-decoration: none; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .2px; }
.about-feature-card .about-feature-more-btn { background: transparent; border: 0; padding: 0; text-align: left; cursor: pointer; }
.about-feature-card a:hover,
.about-feature-card .about-feature-more-btn:hover { color: var(--sm-blue); }

#control-storage-sec { background-size: cover; background-position: center; box-shadow: inset 0 0 0 2000px rgba(0,0,0,.5); padding: 72px 0; }
#control-storage-content h3 { color: #fff; font-size: 42px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.03em; }
#control-storage-content p { color: rgba(255,255,255,0.92); font-size: 15px; line-height: 1.7; margin-top: 14px; margin-bottom: 0; }
#control-storage-content a { color: #fff !important; font-size: 17px; padding: 13px 60px; border-radius: 5px; font-weight: 500; background-color: var(--sm-blue-soft); display: inline-block; text-decoration: none; margin-top: 20px; box-shadow: 0 14px 28px rgba(106, 211, 252, 0.18); transition: background-color .2s ease, transform .2s ease; }
#control-storage-content a:hover { background: var(--sm-blue-hover); transform: translateY(-1px); }

#site_footer { background: var(--sm-surface); color: #1d2b49; padding: 54px 0 0; border-top: 1px solid var(--sm-line); }
.footer_main_row { align-items: flex-start; padding-bottom: 18px; }
.footer_logo { height: 74px; width: auto; margin-bottom: 16px; }
.footer_col .address_area ul li { display: flex; align-items: flex-start; gap: 8px; color: #5e6470; font-size: 14px; margin-bottom: 12px; line-height: 1.45; font-weight: 500; }
.footer_col .address_area ul li i { color: var(--sm-text); font-size: 16px; margin-top: 3px; }
.footer_col .address_area ul li a { color: #5e6470; text-decoration: none; }
.footer-social-links { margin-top: 18px; }
.footer-social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(20, 54, 104, 0.12);
  color: var(--sm-navy);
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(20, 54, 104, 0.08);
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.footer-social-link i { font-size: 16px; line-height: 1; }
.footer-social-link:hover {
  background: var(--sm-blue);
  color: #fff;
  border-color: var(--sm-blue);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 166, 219, 0.22);
}
.footer-social-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(15, 166, 219, 0.14), 0 14px 28px rgba(15, 166, 219, 0.22);
}
.footer_col h4 { color: #1b3664; font-size: 18px; font-weight: 700; margin-bottom: 18px; letter-spacing: -0.01em; }
.quick_links ul li { margin-bottom: 12px; }
.quick_links ul li a { color: #4e5563; text-decoration: none; font-size: 14px; font-weight: 500; }
.quick_links ul li a:hover { color: #1b3664; }
.footer_map { border-radius: 14px; width: 100%; height: 170px; border: 0; }
.footer_col iframe {
  width: 100%;
  height: 170px !important;
  border: 0;
  border-radius: 14px;
  display: block;
}
.copy_container { border-top: 1px solid #d8dce1; margin-top: 12px; padding: 16px 0; background: var(--sm-surface); }
.left_copy span, .right_copy span { color: #9a9fa8; font-size: 13px; font-weight: 500; }
.left_copy a, .right_copy a { color: var(--sm-navy); text-decoration: none; font-size: 13px; }
.right_copy { text-align: right; }

@media(max-width: 1199px) {
  .menu_bar > .container:first-child { display: none; }
  .contact_info_header { display: none; }
  .header-divider { display: none; }
  .site-header-main { display: grid !important; grid-template-columns: minmax(0, 1fr) auto; align-items: center !important; column-gap: 20px; row-gap: 0; padding: 14px 0; }
  .site-header-main { min-height: 82px; }
  .logo_area { flex: 1 1 auto; display: flex; align-items: center; }
  .logo_area a { display: inline-flex; align-items: center; }
  .logo_area img { margin: 0; max-width: 138px; }
  .navbar-nav .nav-link { font-size: 20px; }
  .reserve_btn a { font-size: 18px; padding: 10px 26px; }
  .header_right,
  .menu_area,
  .navbar { display: contents; }
  .navbar-toggler { grid-column: 2; grid-row: 1; justify-self: end; align-self: center; }
  .navbar-collapse { grid-column: 1 / -1; grid-row: 2; width: 100%; margin-top: 16px; padding: 18px 18px 14px; border: 1px solid var(--sm-line); border-radius: 16px; background: #fff; box-shadow: 0 18px 34px rgba(17, 24, 39, 0.08); }
  .navbar-nav { align-items: flex-start !important; gap: 8px; }
  .navbar-nav .nav-link { width: 100%; padding: 10px 0 !important; font-size: 18px; }
  .navbar-nav .has-submenu,
  .navbar-nav .has-submenu-nested { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; width: 100%; }
  .submenu-toggle { display: inline-flex; }
  .submenu-list,
  .submenu-list-nested {
    position: static;
    min-width: 0;
    margin: 6px 0 10px;
    padding: 8px 0 0 12px;
    border: 0;
    border-left: 2px solid rgba(19, 48, 99, 0.12);
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .submenu-open > .submenu-list { display: block; }
  .submenu-link { padding: 8px 0; font-size: 16px; white-space: normal; }
  .menu_xtra { margin-left: 0; width: 100%; }
  .reserve_btn { width: 100%; margin-top: 8px; }
  .reserve_btn a { display: block; text-align: center; width: 100%; }
  .mob_lnks { padding-top: 6px; border-top: 1px solid var(--sm-line); }
  #hero_sec h3 strong { font-size: 52px; }
  #hero_sec h3 u { font-size: 34px; }
  #pricing_sec .pricing_title { font-size: 3rem; }
  .pricing-card-body { grid-template-columns: 1fr 1fr; justify-items: center;}
  .row-size { justify-self: start; }
  .row-con { justify-self: end; font-size: 1.08rem; }
  .row-price { justify-self: start; font-size: 2.6rem; }
  a.pricing_reserve_btn { justify-self: end; font-size: 1rem; padding: 10px 20px; }
  .need-more-storage-sec-title h3 { font-size: 3.1rem; }
  #about_sec h3 { font-size: 40px; }
  #about_sec p { font-size: 16px; }
  .about-feature-icon { font-size: 30px; }
  .about-feature-card h5 { font-size: 30px; }
  .about-feature-card a,
  .about-feature-card .about-feature-more-btn { font-size: 20px; }
}
@media(max-width: 768px) {
  .contact_info_header { flex-direction: column; align-items: flex-start; gap: 6px; }
  .menu_xtra { margin-left: 0; }
  #hero_sec h3 strong { font-size: 38px; }
  #hero_sec h3 u { font-size: 26px; }
  #hero_sec .hero-actions { justify-content: center; }
  .hero-btn { font-size: 16px; min-width: 170px; }
  #pricing_sec { padding-top: 2.7rem; padding-bottom: 2rem; }
  #pricing_sec .pricing_title { font-size: 2.5rem; margin-bottom: 1.4rem; }
  .pricing-card { padding: 12px 12px; }
  .pricing-card-body { grid-template-columns: 1fr; text-align: center; gap: .7rem; }
  .row-size, .row-con, .row-price, a.pricing_reserve_btn { justify-self: center; }
  .row-size { font-size: 1.7rem; }
  .row-con { white-space: normal; font-size: 1.05rem; }
  .row-price { font-size: 2.7rem; }
  .need-more-storage-sec-title h3 { font-size: 2.5rem; }
  .pricing-actions { flex-direction: column; align-items: center; }
  .need-more-storage-sec-title a { min-width: 190px; }
  .copy_container .row { text-align: center; }
  .left_copy, .right_copy { text-align: center; }
  .right_copy { margin-top: 6px; }
  .footer_col h4 { font-size: 20px; }
  .quick_links ul li a { font-size: 14px; }
  .footer_col .address_area ul li { font-size: 14px; }
  .footer-social-link { width: 40px; height: 40px; }
  .left_copy span, .right_copy span, .left_copy a, .right_copy a { font-size: 14px; }
  #about_sec { padding: 46px 0 52px; }
  #about_sec h3 { font-size: 34px; }
  #about_sec p { font-size: 15px; margin-bottom: 24px; }
  .about-cta a { min-width: 170px; font-size: 16px; padding: 12px 20px; }
  .about-feature-card { min-height: 0; padding: 16px 14px; }
  .about-feature-card h5 { font-size: 24px; }
  .about-feature-card a,
  .about-feature-card .about-feature-more-btn { font-size: 17px; }
  #control-storage-content h3 { font-size: 30px; }
}
@media(max-width: 575px) {
  .hero-btn { font-size: 13px; padding: 10px 10px !important; min-width: 148px; }
  .video-wrapper iframe, .hero-video-shell { height: 215px; }
  .hero-uploaded-video { object-fit: contain; }
}
.modal-header { border-bottom: 1px solid #eee; }
.modal-title { color: #133063; font-weight: 700; }
.about-feature-modal-content { border: 0; border-radius: 4px; box-shadow: 0 18px 40px rgba(0,0,0,.25); }
.about-feature-modal-header { padding: 14px 18px; border-bottom: 1px solid #ececec; }
.about-feature-modal-header .modal-title { font-size: 20px; font-weight: 300; color: #7f8286; line-height: 1.2; }
.about-feature-modal-header .btn-close { opacity: .6; }
.about-feature-modal-body { padding: 18px; color: #7a7d81; font-size: 16px; line-height: 1.55; }
.modal-backdrop.show { opacity: .55; }
.scrolltop { position: fixed; bottom: 30px; right: 25px; width: 44px; height: 44px; background: #6AD3FC; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 999; box-shadow: 0 4px 12px rgba(0,0,0,.2); }
.scrolltop i { color: #fff; font-size: 18px; }
.scrolltop:hover { background: #133063; }
