:root {
  --primary-blue: #2f5bea;
  --dark-blue: #0b1c3f;
  --gradient-top: #243b55;
  --gradient-bottom: #141e30;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  color: #ffffff;
  background-color: #000000;
}

/* Navbar */
.main-nav {
  background: #333366;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.logo-badge {
  background: #ff3366;
  color: #ffffff;
  font-weight: 700;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.logo-text {
  color: #a4ff4f;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-link.active,
.nav-link:hover {
  color: #ffffff !important;
}

/* Hero */
/* .hero-section {
  min-height: calc(100vh - 64px);
  background-image:
    linear-gradient(to bottom, rgba(4, 9, 30, 0.8), rgba(4, 9, 30, 0.9)),
    url('https://images.pexels.com/photos/4484078/pexels-photo-4484078.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  position: relative;
  color: #ffffff;
} */

.hero-section {
  min-height: calc(100vh - 64px);
  background-image:
    linear-gradient(to bottom, rgba(4, 9, 30, 0.8), rgba(4, 9, 30, 0.9)),
    url('/frontend/image/main4.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  color: #ffffff;
}

.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
}

.hero-eyebrow {
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #d1e4ff;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 650px;
  color: #e3ebff;
}

/* Form */
.hero-form {
  max-width: 640px;
  background: rgba(5, 13, 40, 0.9);
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
}

.hero-input {
  border-radius: 999px 0 0 999px;
  border: none;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  min-height: 52px;
}

.hero-input:focus {
  outline: none;
  box-shadow: none;
}

.hero-btn {
  border-radius: 0 999px 999px 0;
  min-height: 52px;
  background: linear-gradient(135deg, #f70c00, #da261d);
  border: none;
  font-weight: 600;
}

.hero-btn:hover {
  background: linear-gradient(135deg, #da261d, #f70c00);
}

/* Feature badges */
.hero-features {
  font-size: 0.9rem;
  color: #f5f7ff;
}

.feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
}


/* Locations section */
.locations-section {
  background-color: #f5f7fb;
}

.section-title {
  color: #12327b;
  font-weight: 700;
}

.section-subtitle {
  max-width: 620px;
  margin: 0 auto;
  color: #5e6478;
  font-size: 0.95rem;
}

.location-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 35, 80, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 35, 80, 0.18);
}

.location-image-wrapper {
  position: relative;
  overflow: hidden;
}

.location-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.location-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #ffffff;
  color: #12327b;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.location-body {
  padding: 18px 20px 20px;
}

.location-title {
  color: #12327b;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.location-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #6b7280;
}

.location-list li + li {
  margin-top: 4px;
}

/* How it works section */
.how-section {
  background-color: #f9fafc;
}

.how-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 26px 26px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(15, 35, 80, 0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.how-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 35, 80, 0.16);
}

.how-badge-wrapper {
  position: absolute;
  top: -16px;
  left: 32px;
}

.how-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: #2f5bea;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
}

.how-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px auto 16px;
  font-size: 1.6rem;
  color: #ffffff;
}

.how-icon-blue {
  background: rgba(47, 91, 234, 0.12);
  color: #2f5bea;
}

.how-icon-green {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

.how-icon-purple {
  background: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
}

.how-title {
  color: #12327b;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.how-text {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0;
}

/* Why choose section */
.why-section {
  background: #f4f6ff;
}

.why-title {
  color: #111827;
  font-weight: 700;
}

.why-subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: #6b7280;
  font-size: 0.95rem;
}

/* Top cards */
.why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px 20px 18px;
  box-shadow: 0 18px 45px rgba(15, 35, 80, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.2);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 35, 80, 0.14);
}

.why-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.why-card-green .why-icon {
  background: #e7fbe7;
  color: #16a34a;
}

.why-card-blue .why-icon {
  background: #e0f2fe;
  color: #2563eb;
}

.why-card-purple .why-icon {
  background: #ede9fe;
  color: #7c3aed;
}

.why-card-orange .why-icon {
  background: #ffedd5;
  color: #ea580c;
}

.why-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.why-card-text {
  font-size: 0.88rem;
  color: #6b7280;
  margin-bottom: 12px;
}

.why-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3f4ff;
  color: #4f46e5;
}

/* Extra amenities block */
.why-extra-wrapper {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px 18px 22px;
  margin-top: 10px;
  box-shadow: 0 20px 50px rgba(15, 35, 80, 0.10);
}

.why-extra-title {
  font-weight: 700;
  color: #111827;
}

.why-extra-subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: #6b7280;
  font-size: 0.9rem;
}

.amenity-item h6 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  margin-top: 10px;
  margin-bottom: 4px;
}

.amenity-item p {
  font-size: 0.82rem;
  color: #6b7280;
  margin-bottom: 0;
}

.amenity-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ffffff;
}

.amenity-icon-red {
  background: #f97373;
}

.amenity-icon-blue {
  background: #60a5fa;
}

.amenity-icon-green {
  background: #34d399;
}

.amenity-icon-purple {
  background: #a855f7;
}

/* Stats */
.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111827;
}

/* Vehicle storage section */
.vehicle-section {
  background: #e0ecff;
}

.vehicle-wrapper {
  max-width: 900px;
  background: #c5d9ff;
  border-radius: 18px;
  padding: 32px 20px 28px;
  box-shadow: 0 24px 60px rgba(15, 35, 80, 0.18);
}

.vehicle-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2933;
  margin-bottom: 14px;
}

.vehicle-subtitle {
  font-weight: 700;
  color: #1f2933;
}

.vehicle-text {
  font-size: 0.9rem;
  color: #3f4a5a;
}

/* option chips */
.vehicle-chip {
  display: flex;
  align-items: center;
  background: #e7f0ff;
  border-radius: 12px;
  padding: 10px 14px;
  gap: 10px;
}

.vehicle-chip-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #3664f7;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.vehicle-chip span {
  font-size: 0.9rem;
  color: #1f2933;
}

/* Main footer */
.main-footer {
  background: #333366;
  color: #d1e4ff;
  font-size: 0.85rem;
}

.footer-logo-badge {
  display: inline-block;
  background: #ff3366;
  color: #ffffff;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  font-size: 0.75rem;
  margin-right: 6px;
}

.footer-logo-text {
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.footer-text {
  max-width: 260px;
  margin-bottom: 0;
  color: #e5edff;
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #ffffff;
}

.footer-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-list li {
  margin-bottom: 0.25rem;
  color: #d1e4ff;
}

.footer-list a {
  color: inherit;
  text-decoration: none;
}

.footer-list a:hover {
  text-decoration: underline;
}

.footer-divider {
  border-color: rgba(148, 163, 184, 0.4);
}

.footer-copy {
  color: #cbd5f5;
}

/* legal links */
.footer-legal {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  gap: 1.2rem;
}

.footer-legal a {
  color: #cbd5f5;
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

/* Perfect storage hero */
.perfect-hero {
  background: #f5f7ff;
}

.perfect-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #102a43;
}

.perfect-eyebrow {
  font-size: 1rem;
  color: #52606d;
}

.perfect-text {
  max-width: 850px;
  margin: 0 auto;
  font-size: 0.98rem;
  color: #52606d;
}

/* form */
.perfect-form {
  /* max-width: 640px; */
  margin: 0 auto;
}

.perfect-input {
  border-radius: 999px;
  border: 1px solid #d0d7e2;
}

.perfect-btn {
  border-radius: 999px;
  background: #da261d;
  border: none;
  font-weight: 600;
}

.perfect-btn:hover {
  background: #f70c00;
}

/* badges */
.perfect-badges {
  font-size: 0.88rem;
  color: #4b5563;
  gap: 1.3rem;
}

.perfect-badge {
  display: flex;
  align-items: center;
}

/* stats */
.perfect-stats {
  font-size: 0.86rem;
  color: #4b5563;
  gap: 1.5rem;
}

.perfect-stars {
  color: #fbbf24;
}

/* Understanding storage section */
.storage-understand {
  background: #ffffff;
}

.storage-heading {
  font-weight: 700;
  color: #111827;
}

.storage-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #4b5563;
}

.storage-col-title {
  font-weight: 700;
  color: #111827;
}

.storage-body {
  font-size: 0.9rem;
  color: #4b5563;
}

/* right side features */
.storage-feature {
  margin-bottom: 1rem;
}

.storage-bullet {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 4px solid #2563eb;
  margin-right: 12px;
  margin-top: 4px;
}

.storage-feature-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2px;
}

.storage-feature-text {
  font-size: 0.86rem;
  color: #4b5563;
}

/* Vehicle storage solutions */
.vehicle-solutions {
  background: #f5f7fb;
}

.vs-heading {
  font-weight: 700;
  color: #111827;
}

.vs-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #4b5563;
}

/* cards */
.vs-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 18px 18px;
  box-shadow: 0 18px 45px rgba(15, 35, 80, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.25);
  text-align: left;
}

.vs-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #e0f2ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.vs-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.vs-card-text {
  font-size: 0.86rem;
  color: #4b5563;
}

.vs-card-list {
  font-size: 0.82rem;
  color: #4b5563;
  padding-left: 0;
  list-style: none;
  margin-top: 8px;
}

.vs-card-list li::before {
  content: "• ";
}

/* bottom card */
.vs-bottom-card {
  max-width: 820px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 18px 45px rgba(15, 35, 80, 0.08);
}

.vs-bottom-title {
  font-weight: 700;
  color: #111827;
}

.vs-bottom-item {
  font-size: 0.86rem;
  color: #4b5563;
}

/* Size selector section */
.size-section {
  background: radial-gradient(circle at top, #3b82f6 0%, #1f2937 55%, #020617 100%);
  color: #ffffff;
}

.size-heading {
  font-weight: 700;
  font-size: 1.9rem;
}

.size-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #e5edff;
}

/* cards */
.size-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px 20px 18px;
  color: #111827;
  box-shadow: 0 20px 55px rgba(15, 35, 80, 0.35);
}

.size-card-popular {
  transform: translateY(-10px);
}

.size-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #10b981;
  color: #ffffff;
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 600;
}

.size-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #eef2ff;
  color: #4f46e5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 10px;
}

.size-unit {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.size-sqft {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 10px;
}

.size-text {
  font-size: 0.88rem;
  color: #4b5563;
  margin-bottom: 10px;
}

.size-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin-bottom: 8px;
}

.size-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.size-tags span {
  font-size: 0.78rem;
  background: #f3f4f6;
  border-radius: 999px;
  padding: 4px 8px;
  color: #374151;
}

/* dots */
.size-dots {
  margin-top: 8px;
}

.size-dots .dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.6);
  margin: 0 3px;
}

.size-dots .dot.active {
  width: 9px;
  height: 9px;
  background: #ffffff;
}


/* Trusted solutions section */
.trusted-section {
  background: #ffffff;
}

/* top blue area */
.trusted-top {
  background: #bcd5ff;
}

.trusted-heading {
  font-weight: 700;
  color: #102a43;
}

.trusted-subtitle {
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.9rem;
  color: #334155;
}

/* small pills */
.trusted-pill {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  padding: 10px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.8rem;
}

.trusted-pill-icon {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.trusted-pill-text {
  color: #111827;
  font-weight: 600;
}

/* bottom content */
.trusted-bottom {
  background: #ffffff;
}

.trusted-item {
  max-width: 360px;
  margin: 0 auto;
}

.trusted-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #e5efff;
  color: #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.trusted-item-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.trusted-list {
  padding-left: 1.1rem;
  font-size: 0.86rem;
  color: #4b5563;
}

/* Storage insights banner */
.insights-hero {
  position: relative;
  background: linear-gradient(90deg, #1f3b87 0%, #4f8ee5 50%, #8fb9ff 100%);
  color: #ffffff;
  padding: 60px 0 40px;
  overflow: hidden;
}

.insights-title {
  font-size: 2rem;
  font-weight: 700;
}

.insights-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* wave svg */
.insights-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
}

.insights-wave svg {
  display: block;
  width: 100%;
  height: 70px;
}

/* Blog cards */
.blog-section {
  background: #f9fafc;
}

.blog-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(15, 35, 80, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-image-wrapper {
  height: 190px;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-meta {
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 6px;
}

.blog-tag {
  color: #2563eb;
  font-weight: 600;
}

.blog-dot {
  margin: 0 4px;
}

.blog-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.blog-text {
  font-size: 0.86rem;
  color: #4b5563;
  margin-bottom: 10px;
}

.blog-link {
  margin-top: auto;
  font-size: 0.86rem;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.blog-link i {
  vertical-align: middle;
}

.blog-link:hover {
  text-decoration: underline;
}

.ny-hero {
  width: 100%;
  min-height: 120px;
  padding: 40px 15px;
  color: #ffffff;
  background: linear-gradient(90deg, #0f1f58, #243b8f 40%, #6b2bb8 80%, #8526c7);
  display: flex;
}

.ny-hero-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin: 0;
}

.ny-hero-subtitle {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

/* Top listing block */
.storage-card {
  border-radius: 18px;
  /* border: 1px solid #e4e7f0; */
  border: 1px solid black;
  background-color: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  padding: 14px 16px 16px;
}

/* left blue logo box */
.storage-logo {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: linear-gradient(135deg, #da261d, #da261d);
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 11px;
}

/* small colored dot */
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-right: 4px;
}

.dot-blue { background-color: #2563eb; }
.dot-green { background-color: #16a34a; }
.dot-purple { background-color: #a855f7; }
.dot-pink { background-color: #ec4899; }

/* offer bar */
.storage-offer {
  border-radius: 12px;
  background: linear-gradient(90deg, #ffe4f3, #ffffff);
  padding: 8px 12px;
}

/* sort dropdown button tweak */
.btn-primary.dropdown-toggle {
  border-radius: 999px;
}

.ny-text-section {
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
}

/* default UL bullets Bootstrap reduce pannum; restore + spacing */
.ny-bullet {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}

.ny-bullet li {
  margin-bottom: 0.35rem;
}

.blog-hero-img {
  /* max-width: 720px;   */
  border-radius: 6px;
}

.blog-content {
  /* max-width: 720px; */
  margin: 0 auto;
  line-height: 1.6;
}

.autocomplete-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    border-radius: 0 0 8px 8px;
    max-height: 260px;
    overflow-y: auto;
    display: none;
}

.autocomplete-box .list-group-item {
    cursor: pointer;
    font-size: 15px;
}

.autocomplete-box .list-group-item:hover {
    background-color: #f1f5ff;
}

/* Page background and section spacing */
.contact-section {
    background-color: #f7f8fc;
}

.contact-section h2 {
    font-size: 2rem;
    color: #1f2a44;
}

/* Card-style wrapper (if you wrap form in .card) */
.contact-form {
    background-color: #ffffff;
    padding: 24px 28px;
    border-radius: 6px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.08); /* similar to Bootstrap shadow */ /*[web:43][web:60]*/
}

/* Labels */
.contact-form .form-label {
    font-size: 0.9rem;
    color: #555555;
    margin-bottom: 4px;
}

/* Inputs & textarea */
.contact-form .form-control {
    border-radius: 4px;
    border: 1px solid #d0d4dd;
    font-size: 0.95rem;
    padding: 0.55rem 0.75rem;
}

.contact-form .form-control::placeholder {
    color: #b0b4bd;
}

/* Focus state */
.contact-form .form-control:focus {
    border-color: #2b4c9a;
    box-shadow: 0 0 0 2px rgba(43, 76, 154, 0.18); /* custom focus glow */ /*[web:53][web:59]*/
}

/* Button */
.contact-section .btn-primary {
    background-color: #163971;
    border-color: #163971;
    padding: 0.55rem 1.6rem;
    font-size: 0.95rem;
    border-radius: 4px;
}

.contact-section .btn-primary:hover {
    background-color: #122c57;
    border-color: #122c57;
}

.contact-form .form-check-label {
    color: #212529;   /* Bootstrap default text color */ /*[web:98][web:100]*/
}

.contact-form .form-label {
    color: #555555;
}


/* if section or body forces white text, add !important */
.contact-section .form-check-label {
    color: #212529 !important;
}


/* small devices – text size கொஞ்சம் பெரியது */
@media (max-width: 575.98px) {
  .blog-content {
    font-size: 0.9rem;
  }
}


/* headings responsive size */
@media (max-width: 575.98px) {
  .ny-text-section h4 {
    font-size: 1.1rem;
  }
}


/* responsive adjustments */
@media (max-width: 767.98px) {
  .storage-card {
    padding: 12px 10px 14px;
  }
  .storage-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }
}


/* Responsive text sizes */
@media (max-width: 991.98px) {
  .ny-hero {
    padding: 32px 15px;
  }
  .ny-hero-title {
    font-size: 2.1rem;
  }
  .ny-hero-subtitle {
    font-size: 1.7rem;
  }
}

@media (max-width: 575.98px) {
  .ny-hero {
    padding: 26px 12px;
  }
  .ny-hero-title {
    font-size: 1.6rem;
    line-height: 1.2;
  }
  .ny-hero-subtitle {
    font-size: 1.3rem;
  }
}


/* responsive spacing */
@media (max-width: 575.98px) {
  .blog-image-wrapper {
    height: 170px;
  }
}

/* responsive */
@media (max-width: 767.98px) {
  .insights-title {
    font-size: 1.6rem;
  }

  .insights-hero {
    padding: 48px 0 32px;
  }
}


/* mobile spacing */
@media (max-width: 767.98px) {
  .trusted-top {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}


/* responsive */
@media (max-width: 767.98px) {
  .size-card-popular {
    transform: none;
  }

  .size-heading {
    font-size: 1.6rem;
  }
}


/* responsive tweaks */
@media (max-width: 767.98px) {
  .vs-card {
    text-align: left;
  }

  .vs-bottom-card {
    padding: 16px 16px;
  }
}


/* mobile spacing */
@media (max-width: 767.98px) {
  .storage-understand {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}


/* responsive */
@media (max-width: 767.98px) {
  .perfect-title {
    font-size: 1.9rem;
  }

  .perfect-form .perfect-input,
  .perfect-form .perfect-btn {
    border-radius: 12px;
  }

  .perfect-badges,
  .perfect-stats {
    gap: 0.8rem;
  }
}


/* mobile */
@media (max-width: 575.98px) {
  .footer-legal {
    gap: 0.75rem;
    font-size: 0.8rem;
  }
}


/* responsive */
@media (max-width: 575.98px) {
  .vehicle-wrapper {
    padding: 24px 16px 22px;
  }

  .vehicle-title {
    font-size: 1.25rem;
  }
}


/* Mobile tweaks */
@media (max-width: 575.98px) {
  .why-extra-wrapper {
    padding: 22px 14px 18px;
  }

  .stat-value {
    font-size: 1.2rem;
  }
}


/* small screens spacing */
@media (max-width: 767.98px) {
  .how-badge-wrapper {
    left: 24px;
  }
}


/* Responsive tweaks */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-form {
    border-radius: 18px;
    padding: 8px;
  }

  .hero-input,
  .hero-btn {
    border-radius: 10px;
  }

  .hero-section {
    text-align: left;
  }
}

/* Mobile-specific adjustments */
@media (max-width: 767px) {
    
    /* 1. Move logo to align with facility name */
    .storage-card .row > .col-3.col-sm-2.col-md-1 {
        display: flex;
        align-items: flex-start; /* aligns logo to top of name */
        justify-content: flex-start; /* optional: align left */
    }

    /* 2. Make phone number a Click-to-Call button */
    .storage-card .small.text-primary.fs-6 {
        display: inline-block;
        background-color: #11dc11;
        color: white !important;
        padding: 0.25rem 0.5rem;
        border-radius: 0.25rem;
        font-weight: 500;
        text-decoration: none;
        margin-top: 0.25rem;
    }
    .storage-card .small.text-primary.fs-6 i {
        color: white; /* icon color */
    }

    /* Make phone clickable */
    .storage-card .small.text-primary.fs-6 a {
        color: white !important;
        text-decoration: none;
    }

    /* 3. Split amenities into 2 lines if overflowing */
    .storage-card .d-flex.flex-wrap.gap-2 {
        flex-wrap: wrap; /* ensures wrapping */
        max-width: 100%;
    }
}

/* .location-list.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 20px; 
  list-style: none;
  padding: 0;
  margin: 0;
} */
.recommended-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #c30667;
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 0 10px 0 10px;
    z-index: 5;
}
