/* =============================================================================
   Winston Self Storage - BEM Components
   ============================================================================= */

/* =============================================================================
   BUTTONS
   ============================================================================= */

.wss-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--wss-space-2);
  padding: var(--wss-space-3) var(--wss-space-6);
  font-family: var(--wss-font-body);
  font-weight: 500;
  font-size: var(--wss-text-base);
  border-radius: var(--wss-radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--wss-transition), color var(--wss-transition), border-color var(--wss-transition), box-shadow var(--wss-transition);
  white-space: nowrap;
}

.wss-btn--primary {
  background-color: var(--wss-primary);
  color: white;
}

.wss-btn--primary:hover {
  background-color: var(--wss-primary-600);
  color: white;
}

.wss-btn--secondary {
  background-color: var(--wss-secondary);
  color: var(--wss-primary);
}

.wss-btn--secondary:hover {
  background-color: var(--wss-secondary-300);
  color: var(--wss-primary);
}

.wss-btn--accent {
  background-color: var(--wss-accent);
  color: white;
}

.wss-btn--accent:hover {
  background-color: var(--wss-accent-600);
}

.wss-btn--outline {
  background-color: transparent;
  border-color: var(--wss-primary);
  color: var(--wss-primary);
}

.wss-btn--outline:hover {
  background-color: var(--wss-primary-50);
}

.wss-btn--outline-white {
  background-color: transparent;
  border-color: white;
  color: white;
}

.wss-btn--outline-white:hover {
  background-color: white;
  color: var(--wss-primary);
}

.wss-btn--white {
  background-color: white;
  color: var(--wss-primary);
}

.wss-btn--white:hover {
  background-color: var(--wss-gray-100);
}

.wss-btn--lg {
  padding: var(--wss-space-4) var(--wss-space-8);
  font-size: var(--wss-text-lg);
}

.wss-btn--sm {
  padding: var(--wss-space-2) var(--wss-space-4);
  font-size: var(--wss-text-sm);
}

.wss-btn__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* =============================================================================
   HEADER
   ============================================================================= */

.wss-header {
  background-color: var(--wss-bg);
  box-shadow: var(--wss-shadow-sm);
  position: sticky;
  top: 0;
  z-index: 50;
}

.wss-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--wss-space-3);
  padding-bottom: var(--wss-space-3);
}

.wss-header__logo {
  height: 90px;
  width: auto;
  aspect-ratio: 200 / 103;
}

.wss-header__nav {
  display: none;
  align-items: center;
  gap: var(--wss-space-10);
}

@media (min-width: 1024px) {
  .wss-header__nav {
    display: flex;
  }
}

.wss-header__nav-link {
  font-size: var(--wss-text-lg);
  font-weight: 500;
  color: var(--wss-gray-600);
  transition: color var(--wss-transition);
  text-decoration: none;
}

.wss-header__nav-link:hover,
.wss-header__nav-link--active {
  color: var(--wss-primary);
}

.wss-header__actions {
  display: flex;
  align-items: center;
  gap: var(--wss-space-2);
}

@media (min-width: 640px) {
  .wss-header__actions {
    gap: var(--wss-space-4);
  }
}

.wss-header__phone {
  display: flex;
  align-items: center;
  color: var(--wss-primary);
  font-weight: 600;
  text-decoration: none;
}

.wss-header__phone-icon {
  width: 1.25rem;
  height: 1.25rem;
}

@media (min-width: 640px) {
  .wss-header__phone-icon {
    margin-right: var(--wss-space-2);
  }
}

.wss-header__phone-text {
  display: none;
}

@media (min-width: 640px) {
  .wss-header__phone-text {
    display: inline;
  }
}

.wss-header__menu-toggle {
  display: flex;
  padding: var(--wss-space-2);
  color: var(--wss-gray-600);
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .wss-header__menu-toggle {
    display: none;
  }
}

.wss-header__menu-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Menu */
.wss-header__mobile-menu {
  display: none;
  padding-top: var(--wss-space-4);
  padding-bottom: var(--wss-space-4);
  border-top: 1px solid var(--wss-gray-100);
}

.wss-header__mobile-menu.is-open {
  display: block;
}

@media (min-width: 1024px) {
  .wss-header__mobile-menu {
    display: none !important;
  }
}

.wss-header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--wss-space-2);
}

.wss-header__mobile-link {
  display: block;
  padding: var(--wss-space-2) var(--wss-space-4);
  border-radius: var(--wss-radius-lg);
  font-size: var(--wss-text-sm);
  font-weight: 500;
  color: var(--wss-gray-600);
  text-decoration: none;
}

.wss-header__mobile-link:hover {
  background-color: var(--wss-gray-50);
}

.wss-header__mobile-link--active {
  background-color: rgba(30, 58, 95, 0.1);
  color: var(--wss-primary);
}

/* =============================================================================
   FOOTER
   ============================================================================= */

.wss-footer {
  background-color: var(--wss-primary);
  color: white;
}

.wss-footer__main {
  padding-top: var(--wss-space-12);
  padding-bottom: var(--wss-space-12);
}

.wss-footer__grid {
  display: grid;
  gap: var(--wss-space-8);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .wss-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .wss-footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.wss-footer__column {}

.wss-footer__logo {
  height: 96px;
  width: auto;
  margin-bottom: var(--wss-space-4);
}

.wss-footer__tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--wss-text-sm);
  margin-bottom: var(--wss-space-4);
}

.wss-footer__social {
  display: flex;
  gap: var(--wss-space-4);
}

.wss-footer__social-link {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--wss-transition);
}

.wss-footer__social-link:hover {
  color: var(--wss-accent);
}

.wss-footer__social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.wss-footer__heading {
  font-weight: 600;
  font-size: var(--wss-text-lg);
  margin-bottom: var(--wss-space-4);
  color: white;
}

.wss-footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--wss-space-2);
}

.wss-footer__nav-link {
  font-size: var(--wss-text-sm);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--wss-transition);
}

.wss-footer__nav-link:hover {
  color: var(--wss-accent);
}

.wss-footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--wss-space-3);
}

.wss-footer__contact-item {
  display: flex;
  align-items: flex-start;
  font-size: var(--wss-text-sm);
}

.wss-footer__contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: var(--wss-space-3);
  margin-top: 2px;
  color: var(--wss-accent);
  flex-shrink: 0;
}

.wss-footer__contact-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--wss-transition);
}

.wss-footer__contact-link:hover {
  color: var(--wss-accent);
}

.wss-footer__hours {
  color: rgba(255, 255, 255, 0.8);
}

.wss-footer__hours p {
  margin-bottom: var(--wss-space-1);
}

.wss-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--wss-space-6);
  padding-bottom: var(--wss-space-6);
}

.wss-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: var(--wss-space-4);
  align-items: center;
  font-size: var(--wss-text-sm);
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 640px) {
  .wss-footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.wss-footer__legal {
  display: flex;
  gap: var(--wss-space-6);
}

.wss-footer__legal-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--wss-transition);
}

.wss-footer__legal-link:hover {
  color: var(--wss-accent);
}

/* =============================================================================
   HERO
   ============================================================================= */

.wss-hero {
  background-color: var(--wss-bg);
}

.wss-hero__grid {
  display: grid;
  gap: var(--wss-space-8);
  align-items: center;
}

@media (min-width: 1024px) {
  .wss-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--wss-space-12);
  }
}

.wss-hero__content {
  order: 2;
}

@media (min-width: 1024px) {
  .wss-hero__content {
    order: 1;
  }
}

.wss-hero__eyebrow {
  color: var(--wss-primary);
  font-weight: 600;
  font-size: var(--wss-text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--wss-space-4);
}

.wss-hero__title {
  font-size: var(--wss-text-4xl);
  font-weight: 700;
  color: var(--wss-text);
  line-height: 1.1;
  margin-bottom: var(--wss-space-6);
}

@media (min-width: 640px) {
  .wss-hero__title {
    font-size: var(--wss-text-5xl);
  }
}

@media (min-width: 1024px) {
  .wss-hero__title {
    font-size: var(--wss-text-6xl);
  }
}

.wss-hero__title-accent {
  color: var(--wss-primary);
}

.wss-hero__description {
  font-size: var(--wss-text-lg);
  color: var(--wss-text-muted);
  margin-bottom: var(--wss-space-8);
  max-width: 42rem;
}

.wss-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: var(--wss-space-4);
  margin-bottom: var(--wss-space-8);
}

@media (min-width: 640px) {
  .wss-hero__ctas {
    flex-direction: row;
  }
}

.wss-hero__location {
  display: flex;
  align-items: center;
  color: var(--wss-gray-500);
  font-size: var(--wss-text-sm);
}

.wss-hero__location-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: var(--wss-space-2);
  color: var(--wss-primary);
  flex-shrink: 0;
}

.wss-hero__location-link {
  color: inherit;
  text-decoration: none;
  transition: color var(--wss-transition);
}

.wss-hero__location-link:hover {
  color: var(--wss-primary);
}

.wss-hero__visual {
  order: 1;
  position: relative;
}

@media (min-width: 1024px) {
  .wss-hero__visual {
    order: 2;
  }
}

.wss-hero__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--wss-radius-2xl);
  box-shadow: var(--wss-shadow-2xl);
}

@media (min-width: 640px) {
  .wss-hero__image {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .wss-hero__image {
    height: 500px;
  }
}

/* =============================================================================
   CARDS
   ============================================================================= */

.wss-card {
  background-color: var(--wss-bg);
  border-radius: var(--wss-radius-xl);
  box-shadow: var(--wss-shadow-lg);
  padding: var(--wss-space-6);
  border: 1px solid var(--wss-gray-100);
}

/* Service Card */
.wss-service-card {
  display: block;
  background-color: var(--wss-bg);
  border-radius: var(--wss-radius-xl);
  padding: var(--wss-space-6);
  box-shadow: var(--wss-shadow-sm);
  border: 1px solid var(--wss-gray-100);
  transition: box-shadow var(--wss-transition-slow), transform var(--wss-transition-slow);
  text-decoration: none;
}

.wss-service-card:hover {
  box-shadow: var(--wss-shadow-lg);
  transform: translateY(-2px);
}

.wss-service-card__icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--wss-primary-50);
  border-radius: var(--wss-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wss-primary);
  margin-bottom: var(--wss-space-4);
  transition: background-color var(--wss-transition), color var(--wss-transition);
}

.wss-service-card:hover .wss-service-card__icon-wrapper {
  background-color: var(--wss-primary);
  color: white;
}

.wss-service-card__icon {
  width: 2rem;
  height: 2rem;
}

.wss-service-card__title {
  font-size: var(--wss-text-lg);
  font-weight: 600;
  color: var(--wss-text);
  margin-bottom: var(--wss-space-2);
  transition: color var(--wss-transition);
}

.wss-service-card:hover .wss-service-card__title {
  color: var(--wss-primary);
}

.wss-service-card__description {
  font-size: var(--wss-text-sm);
  color: var(--wss-text-muted);
  margin-bottom: var(--wss-space-4);
  line-height: 1.6;
}

.wss-service-card__link {
  display: inline-flex;
  align-items: center;
  font-size: var(--wss-text-sm);
  font-weight: 500;
  color: var(--wss-primary);
}

.wss-service-card__link-icon {
  width: 1rem;
  height: 1rem;
  margin-left: var(--wss-space-1);
  transition: transform var(--wss-transition);
}

.wss-service-card:hover .wss-service-card__link-icon {
  transform: translateX(4px);
}

/* Unit Card */
.wss-unit-card {
  background-color: var(--wss-bg);
  border-radius: var(--wss-radius-xl);
  border: 1px solid var(--wss-gray-200);
  overflow: hidden;
  transition: box-shadow var(--wss-transition-slow), border-color var(--wss-transition-slow);
}

.wss-unit-card:hover {
  box-shadow: var(--wss-shadow-lg);
  border-color: var(--wss-primary);
}

.wss-unit-card__image {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background-color: transparent;
  padding: var(--wss-space-4);
}

.wss-unit-card__content {
  padding: var(--wss-space-5);
}

.wss-unit-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--wss-space-3);
}

.wss-unit-card__size {
  font-size: var(--wss-text-2xl);
  font-weight: 700;
  color: var(--wss-text);
}

.wss-unit-card__sqft {
  font-size: var(--wss-text-sm);
  color: var(--wss-text-muted);
}

.wss-unit-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wss-space-2);
  margin-bottom: var(--wss-space-4);
}

.wss-unit-card__badge {
  display: inline-flex;
  align-items: center;
  padding: var(--wss-space-1) var(--wss-space-2);
  background-color: var(--wss-gray-100);
  border-radius: var(--wss-radius-sm);
  font-size: var(--wss-text-xs);
  color: var(--wss-text-muted);
}

.wss-unit-card__description {
  font-size: var(--wss-text-sm);
  color: var(--wss-text-muted);
  margin-bottom: var(--wss-space-4);
  line-height: 1.6;
}

.wss-unit-card__fits-label {
  font-size: var(--wss-text-xs);
  font-weight: 600;
  color: var(--wss-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--wss-space-2);
}

.wss-unit-card__fits-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wss-space-1);
}

.wss-unit-card__fits-item {
  padding: var(--wss-space-1) var(--wss-space-2);
  background-color: var(--wss-primary-50);
  color: var(--wss-primary);
  border-radius: var(--wss-radius-sm);
  font-size: var(--wss-text-xs);
  font-weight: 500;
}

/* City/Area Card */
.wss-area-card {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  border-radius: var(--wss-radius-xl);
  overflow: hidden;
  text-decoration: none;
}

.wss-area-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--wss-transition-slower);
}

.wss-area-card:hover .wss-area-card__image {
  transform: scale(1.1);
}

.wss-area-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2) 50%, transparent);
}

.wss-area-card__content {
  position: absolute;
  bottom: var(--wss-space-4);
  left: var(--wss-space-4);
  right: var(--wss-space-4);
}

.wss-area-card__title {
  color: white;
  font-weight: 600;
  font-size: var(--wss-text-lg);
  margin-bottom: var(--wss-space-1);
}

.wss-area-card__state {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--wss-text-sm);
}

/* Feature Card */
.wss-feature {
  display: flex;
  align-items: flex-start;
}

.wss-feature__icon-wrapper {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background-color: var(--wss-primary);
  border-radius: var(--wss-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: var(--wss-space-4);
}

.wss-feature__icon {
  width: 1.5rem;
  height: 1.5rem;
}

.wss-feature__content {
  flex: 1;
}

.wss-feature__title {
  font-size: var(--wss-text-lg);
  font-weight: 600;
  color: var(--wss-text);
  margin-bottom: var(--wss-space-2);
}

.wss-feature__description {
  font-size: var(--wss-text-sm);
  color: var(--wss-text-muted);
  line-height: 1.6;
}

/* =============================================================================
   CTA SECTION
   ============================================================================= */

.wss-cta {
  background-color: var(--wss-primary);
  text-align: center;
}

.wss-cta__title {
  font-size: var(--wss-text-3xl);
  font-weight: 700;
  color: white;
  margin-bottom: var(--wss-space-4);
}

@media (min-width: 640px) {
  .wss-cta__title {
    font-size: var(--wss-text-4xl);
  }
}

.wss-cta__description {
  font-size: var(--wss-text-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--wss-space-8);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.wss-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--wss-space-4);
  justify-content: center;
  margin-bottom: var(--wss-space-8);
}

@media (min-width: 640px) {
  .wss-cta__buttons {
    flex-direction: row;
  }
}

.wss-cta__footer {
  font-size: var(--wss-text-sm);
  color: rgba(255, 255, 255, 0.8);
}

.wss-cta__footer-link {
  color: inherit;
  transition: color var(--wss-transition);
}

.wss-cta__footer-link:hover {
  color: white;
  text-decoration: underline;
}

.wss-cta a:hover {
  color: var(--wss-accent);
}

/* =============================================================================
   MAP SECTION
   ============================================================================= */

.wss-map-wrapper {
  border-radius: var(--wss-radius-2xl);
  overflow: hidden;
  box-shadow: var(--wss-shadow-lg);
  height: 300px;
}

@media (min-width: 1024px) {
  .wss-map-wrapper {
    height: 400px;
  }
}

.wss-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =============================================================================
   CONTACT INFO
   ============================================================================= */

.wss-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--wss-space-6);
}

.wss-contact-info__item {
  display: flex;
  flex-direction: column;
}

.wss-contact-info__label {
  font-size: var(--wss-text-lg);
  font-weight: 600;
  color: var(--wss-text);
  margin-bottom: var(--wss-space-2);
}

.wss-contact-info__value {
  color: var(--wss-text-muted);
}

.wss-contact-info__link {
  color: var(--wss-text-muted);
  text-decoration: none;
  transition: color var(--wss-transition);
}

.wss-contact-info__link:hover {
  color: var(--wss-primary);
}

/* =============================================================================
   FORMS
   ============================================================================= */

.wss-form-group {
  margin-bottom: var(--wss-space-5);
}

.wss-form-label {
  display: block;
  font-size: var(--wss-text-sm);
  font-weight: 500;
  color: var(--wss-text);
  margin-bottom: var(--wss-space-2);
}

.wss-form-label--required::after {
  content: ' *';
  color: var(--wss-error);
}

.wss-form-input,
.wss-form-select,
.wss-form-textarea {
  width: 100%;
  padding: var(--wss-space-3) var(--wss-space-4);
  border: 1px solid var(--wss-gray-300);
  border-radius: var(--wss-radius);
  font-size: var(--wss-text-base);
  font-family: var(--wss-font-body);
  transition: border-color var(--wss-transition), box-shadow var(--wss-transition);
}

.wss-form-input:focus,
.wss-form-select:focus,
.wss-form-textarea:focus {
  outline: none;
  border-color: var(--wss-primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.2);
}

.wss-form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* =============================================================================
   FAQ
   ============================================================================= */

.wss-faq {
  display: flex;
  flex-direction: column;
  gap: var(--wss-space-4);
}

.wss-faq__item {
  background-color: var(--wss-bg);
  border-radius: var(--wss-radius-xl);
  padding: var(--wss-space-6);
  box-shadow: var(--wss-shadow-sm);
  border: 1px solid var(--wss-gray-100);
}

.wss-faq__question {
  font-size: var(--wss-text-lg);
  font-weight: 600;
  color: var(--wss-text);
  margin-bottom: var(--wss-space-3);
}

.wss-faq__answer {
  color: var(--wss-text-muted);
  line-height: 1.7;
}

/* =============================================================================
   BREADCRUMB
   ============================================================================= */

.wss-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--wss-space-2);
  font-size: var(--wss-text-sm);
  color: var(--wss-text-muted);
  margin-bottom: var(--wss-space-6);
}

.wss-breadcrumb__item {
  display: flex;
  align-items: center;
}

.wss-breadcrumb__link {
  color: var(--wss-text-muted);
  text-decoration: none;
  transition: color var(--wss-transition);
}

.wss-breadcrumb__link:hover {
  color: var(--wss-primary);
}

.wss-breadcrumb__separator {
  margin: 0 var(--wss-space-2);
  color: var(--wss-gray-400);
}

.wss-breadcrumb__current {
  color: var(--wss-text);
  font-weight: 500;
}

/* =============================================================================
   PAGE HERO
   ============================================================================= */

.wss-page-hero {
  background-color: var(--wss-bg);
  padding-top: var(--wss-space-12);
  padding-bottom: var(--wss-space-12);
}

@media (min-width: 768px) {
  .wss-page-hero {
    padding-top: var(--wss-space-16);
    padding-bottom: var(--wss-space-16);
  }
}

.wss-page-hero__title {
  font-size: var(--wss-text-4xl);
  font-weight: 700;
  color: var(--wss-text);
  margin-bottom: var(--wss-space-4);
}

@media (min-width: 640px) {
  .wss-page-hero__title {
    font-size: var(--wss-text-5xl);
  }
}

.wss-page-hero__subtitle {
  font-size: var(--wss-text-lg);
  color: var(--wss-text-muted);
  max-width: 48rem;
}

/* =============================================================================
   ICONS
   ============================================================================= */

.wss-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.wss-icon--sm {
  width: 1rem;
  height: 1rem;
}

.wss-icon--lg {
  width: 2rem;
  height: 2rem;
}

.wss-icon--xl {
  width: 2.5rem;
  height: 2.5rem;
}

.wss-icon--check {
  color: var(--wss-primary);
}

/* =============================================================================
   SERVICE PAGE HERO (Dark)
   ============================================================================= */

.wss-page-hero--dark {
  background: linear-gradient(135deg, var(--wss-primary) 0%, var(--wss-primary-700) 100%);
  color: white;
}

.wss-page-hero--dark .wss-page-hero__title {
  color: white;
}

/* =============================================================================
   FEATURE LIST (service pages)
   ============================================================================= */

.wss-feature-list {
  list-style: none;
  padding: 0;
  margin: var(--wss-space-4) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wss-space-3);
}

.wss-feature-list__item {
  display: flex;
  align-items: center;
  gap: var(--wss-space-2);
  font-size: var(--wss-text-sm);
  color: var(--wss-text);
}

.wss-feature-list__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--wss-primary);
}

/* =============================================================================
   UNIT PRICING
   ============================================================================= */

.wss-unit-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wss-primary);
  margin-left: 20%;
}

.wss-page-hero--dark .wss-page-hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.wss-page-hero--dark .wss-breadcrumb__link {
  color: rgba(255, 255, 255, 0.8);
}

.wss-page-hero--dark .wss-breadcrumb__link:hover {
  color: white;
}

.wss-page-hero--dark .wss-breadcrumb__separator {
  color: rgba(255, 255, 255, 0.5);
}

.wss-page-hero--dark .wss-breadcrumb__current {
  color: white;
}

/* =============================================================================
   SERVICE ROW (For Services Index)
   ============================================================================= */

.wss-services-list {
  display: flex;
  flex-direction: column;
  gap: var(--wss-space-16);
}

.wss-service-row {
  display: grid;
  gap: var(--wss-space-8);
  align-items: center;
}

@media (min-width: 1024px) {
  .wss-service-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--wss-space-12);
  }
}

.wss-service-row__image {
  order: 1;
}

.wss-service-row__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--wss-radius-xl);
  box-shadow: var(--wss-shadow-lg);
}

@media (min-width: 1024px) {
  .wss-service-row__image img {
    height: 400px;
  }
}

.wss-service-row__content {
  order: 2;
}

@media (min-width: 1024px) {
  .wss-service-row--reverse .wss-service-row__image {
    order: 2;
  }

  .wss-service-row--reverse .wss-service-row__content {
    order: 1;
  }
}

.wss-service-row__badge {
  display: inline-block;
  background-color: var(--wss-secondary-200);
  color: var(--wss-primary);
  padding: var(--wss-space-1) var(--wss-space-4);
  border-radius: var(--wss-radius-full);
  font-size: var(--wss-text-sm);
  font-weight: 500;
  margin-bottom: var(--wss-space-4);
}

.wss-service-row__title {
  font-size: var(--wss-text-3xl);
  font-weight: 700;
  color: var(--wss-text);
  margin-bottom: var(--wss-space-4);
}

.wss-service-row__description {
  font-size: var(--wss-text-lg);
  color: var(--wss-text-muted);
  margin-bottom: var(--wss-space-6);
  line-height: 1.7;
}

.wss-service-row__features {
  display: flex;
  flex-direction: column;
  gap: var(--wss-space-3);
  margin-bottom: var(--wss-space-6);
}

.wss-service-row__features li {
  display: flex;
  align-items: flex-start;
}

.wss-service-row__features .wss-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: var(--wss-space-3);
  margin-top: 2px;
}

.wss-service-row__features span {
  color: var(--wss-gray-700);
}

.wss-service-row__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wss-space-4);
}

/* =============================================================================
   SERVICE DETAIL PAGE
   ============================================================================= */

.wss-service-detail {
  display: grid;
  gap: var(--wss-space-12);
}

@media (min-width: 1024px) {
  .wss-service-detail {
    grid-template-columns: 2fr 1fr;
  }
}

.wss-service-detail__main {
  order: 2;
}

@media (min-width: 1024px) {
  .wss-service-detail__main {
    order: 1;
  }
}

.wss-service-detail__sidebar {
  order: 1;
}

@media (min-width: 1024px) {
  .wss-service-detail__sidebar {
    order: 2;
  }
}

.wss-service-detail__section-title {
  font-size: var(--wss-text-2xl);
  font-weight: 700;
  color: var(--wss-text);
  margin-bottom: var(--wss-space-4);
  margin-top: var(--wss-space-10);
}

.wss-service-detail__section-title:first-child {
  margin-top: 0;
}

.wss-service-detail__text {
  color: var(--wss-text-muted);
  line-height: 1.7;
  margin-bottom: var(--wss-space-6);
}

.wss-service-detail__features {
  display: flex;
  flex-direction: column;
  gap: var(--wss-space-3);
  margin-bottom: var(--wss-space-8);
}

.wss-service-detail__features li {
  display: flex;
  align-items: flex-start;
  color: var(--wss-text-muted);
}

.wss-service-detail__features svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: var(--wss-space-3);
  color: var(--wss-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Sidebar Card */
.wss-sidebar-card {
  background-color: var(--wss-gray-50);
  border-radius: var(--wss-radius-xl);
  padding: var(--wss-space-6);
  margin-bottom: var(--wss-space-6);
}

.wss-sidebar-card--bordered {
  background-color: white;
  border: 1px solid var(--wss-gray-200);
}

.wss-sidebar-card__title {
  font-size: var(--wss-text-lg);
  font-weight: 600;
  color: var(--wss-text);
  margin-bottom: var(--wss-space-4);
}

.wss-sidebar-card__text {
  color: var(--wss-text-muted);
  margin-bottom: var(--wss-space-4);
}

.wss-sidebar-card__phone {
  display: flex;
  align-items: center;
  color: var(--wss-primary);
  font-weight: 600;
  text-decoration: none;
}

.wss-sidebar-card__phone:hover {
  color: var(--wss-primary-600);
}

.wss-sidebar-card__phone svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: var(--wss-space-2);
}

/* Other Services List */
.wss-other-services {
  display: flex;
  flex-direction: column;
  gap: var(--wss-space-3);
}

.wss-other-services__link {
  display: flex;
  align-items: center;
  color: var(--wss-text-muted);
  text-decoration: none;
  transition: color var(--wss-transition);
}

.wss-other-services__link:hover {
  color: var(--wss-primary);
}

.wss-other-services__link svg {
  width: 1rem;
  height: 1rem;
  margin-right: var(--wss-space-2);
  color: var(--wss-primary);
}

/* FAQ Box */
.wss-faq-box {
  background-color: var(--wss-gray-50);
  border-radius: var(--wss-radius-xl);
  padding: var(--wss-space-6);
  margin-top: var(--wss-space-10);
}

.wss-faq-box__title {
  font-size: var(--wss-text-xl);
  font-weight: 700;
  color: var(--wss-text);
  margin-bottom: var(--wss-space-6);
}

.wss-faq-box__list {
  display: flex;
  flex-direction: column;
  gap: var(--wss-space-6);
}

.wss-faq-box__question {
  font-weight: 600;
  color: var(--wss-text);
  margin-bottom: var(--wss-space-2);
}

.wss-faq-box__answer {
  color: var(--wss-text-muted);
  font-size: var(--wss-text-sm);
  line-height: 1.7;
}

.wss-faq-box__answer a {
  color: var(--wss-primary);
  text-decoration: none;
}

.wss-faq-box__answer a:hover {
  text-decoration: underline;
}

/* =============================================================================
   CTA SECTION - Extended
   ============================================================================= */

.wss-cta__content {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.wss-cta__text {
  font-size: var(--wss-text-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--wss-space-8);
}

.wss-cta__actions {
  display: flex;
  flex-direction: column;
  gap: var(--wss-space-4);
  justify-content: center;
}

@media (min-width: 640px) {
  .wss-cta__actions {
    flex-direction: row;
  }
}

.wss-btn--outline-light {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.wss-btn--outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* =============================================================================
   AREAS SERVED
   ============================================================================= */

.wss-areas-served {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--wss-space-4);
}

.wss-areas-served__link {
  display: inline-flex;
  align-items: center;
  padding: var(--wss-space-3) var(--wss-space-6);
  background-color: white;
  border-radius: var(--wss-radius-full);
  box-shadow: var(--wss-shadow-sm);
  color: var(--wss-gray-700);
  text-decoration: none;
  transition: box-shadow var(--wss-transition), color var(--wss-transition);
}

.wss-areas-served__link:hover {
  box-shadow: var(--wss-shadow-md);
  color: var(--wss-primary);
}

.wss-areas-served__link svg {
  width: 1rem;
  height: 1rem;
  margin-right: var(--wss-space-2);
  color: var(--wss-primary);
}

/* =============================================================================
   ABOUT PAGE
   ============================================================================= */

.wss-about-grid {
  display: grid;
  gap: var(--wss-space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .wss-about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.wss-about-grid__image {
  border-radius: var(--wss-radius-xl);
  overflow: hidden;
  box-shadow: var(--wss-shadow-lg);
}

.wss-about-grid__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.wss-about-grid__content {
  max-width: 100%;
}

.wss-prose {
  color: var(--wss-text-muted);
  line-height: 1.7;
}

.wss-prose p {
  margin-bottom: var(--wss-space-4);
}

.wss-prose p:last-child {
  margin-bottom: 0;
}

/* Stats Grid */
.wss-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--wss-space-8);
}

@media (min-width: 1024px) {
  .wss-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.wss-stat {
  text-align: center;
}

.wss-stat__number {
  font-size: var(--wss-text-4xl);
  font-weight: 700;
  color: var(--wss-primary);
  margin-bottom: var(--wss-space-2);
}

.wss-stat__label {
  color: var(--wss-text-muted);
}

/* Values Grid */
.wss-values-grid {
  display: grid;
  gap: var(--wss-space-8);
}

@media (min-width: 768px) {
  .wss-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wss-value-card {
  background-color: var(--wss-gray-50);
  border-radius: var(--wss-radius-xl);
  padding: var(--wss-space-8);
  text-align: center;
}

.wss-value-card__icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--wss-primary);
  border-radius: var(--wss-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--wss-space-4);
  color: white;
}

.wss-value-card__icon .wss-icon {
  width: 2rem;
  height: 2rem;
}

.wss-value-card__title {
  font-size: var(--wss-text-xl);
  font-weight: 600;
  color: var(--wss-text);
  margin-bottom: var(--wss-space-2);
}

.wss-value-card__text {
  color: var(--wss-text-muted);
}

/* Map Container */
.wss-map-container {
  border-radius: var(--wss-radius-xl);
  overflow: hidden;
  box-shadow: var(--wss-shadow-lg);
}

.wss-map-container iframe {
  display: block;
  border: 0;
}

/* =============================================================================
   CONTACT PAGE
   ============================================================================= */

.wss-contact-grid {
  display: grid;
  gap: var(--wss-space-12);
}

@media (min-width: 1024px) {
  .wss-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact Form */
.wss-form__row {
  display: grid;
  gap: var(--wss-space-6);
}

@media (min-width: 640px) {
  .wss-form__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.wss-form__group {
  margin-bottom: var(--wss-space-6);
}

.wss-form__label {
  display: block;
  font-size: var(--wss-text-sm);
  font-weight: 500;
  color: var(--wss-gray-700);
  margin-bottom: var(--wss-space-2);
}

.wss-form__input,
.wss-form__select,
.wss-form__textarea {
  width: 100%;
  padding: var(--wss-space-3) var(--wss-space-4);
  border: 1px solid var(--wss-gray-300);
  border-radius: var(--wss-radius-lg);
  font-size: var(--wss-text-base);
  font-family: var(--wss-font-body);
  transition: border-color var(--wss-transition), box-shadow var(--wss-transition);
}

.wss-form__input:focus,
.wss-form__select:focus,
.wss-form__textarea:focus {
  outline: none;
  border-color: var(--wss-primary);
  box-shadow: 0 0 0 2px rgba(30, 58, 95, 0.2);
}

.wss-form__textarea {
  resize: none;
  min-height: 120px;
}

/* Contact Info */
.wss-contact-info__items {
  display: flex;
  flex-direction: column;
  gap: var(--wss-space-6);
  margin-bottom: var(--wss-space-8);
}

.wss-contact-info__item {
  display: flex;
  align-items: flex-start;
}

.wss-contact-info__icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(30, 58, 95, 0.1);
  border-radius: var(--wss-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--wss-space-4);
  flex-shrink: 0;
  color: var(--wss-primary);
}

.wss-contact-info__content h3 {
  font-weight: 600;
  color: var(--wss-text);
  margin-bottom: var(--wss-space-1);
}

.wss-contact-info__content p,
.wss-contact-info__content a {
  color: var(--wss-text-muted);
}

.wss-contact-info__content a {
  text-decoration: none;
  transition: color var(--wss-transition);
}

.wss-contact-info__content a:hover {
  color: var(--wss-primary);
}

.wss-contact-info__link {
  display: inline-flex;
  align-items: center;
  color: var(--wss-primary);
  font-size: var(--wss-text-sm);
  font-weight: 500;
  text-decoration: none;
  margin-top: var(--wss-space-2);
}

.wss-contact-info__link:hover {
  text-decoration: underline;
}

.wss-contact-info__phone {
  font-size: var(--wss-text-lg);
}

.wss-contact-map {
  border-radius: var(--wss-radius-xl);
  overflow: hidden;
  box-shadow: var(--wss-shadow-lg);
}

.wss-contact-map iframe {
  display: block;
  border: 0;
}

/* Contact CTA */
.wss-contact-cta {
  display: flex;
  flex-direction: column;
  gap: var(--wss-space-4);
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .wss-contact-cta {
    flex-direction: row;
  }
}

/* =============================================================================
   FAQ PAGE
   ============================================================================= */

.wss-faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.wss-faq-item {
  border: 1px solid var(--wss-gray-200);
  border-radius: var(--wss-radius-lg);
  overflow: hidden;
  margin-bottom: var(--wss-space-4);
}

.wss-faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--wss-space-4) var(--wss-space-6);
  background-color: var(--wss-gray-50);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color var(--wss-transition);
}

.wss-faq-item__question:hover {
  background-color: var(--wss-gray-100);
}

.wss-faq-item__question span {
  font-weight: 600;
  color: var(--wss-text);
  padding-right: var(--wss-space-4);
}

.wss-faq-item__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--wss-primary);
  flex-shrink: 0;
  transition: transform var(--wss-transition);
}

.wss-faq-item__question[aria-expanded="true"] .wss-faq-item__icon {
  transform: rotate(180deg);
}

.wss-faq-item__answer {
  display: none;
  padding: var(--wss-space-4) var(--wss-space-6);
  background-color: white;
}

.wss-faq-item__answer.is-open {
  display: block;
}

.wss-faq-item__answer p {
  color: var(--wss-text-muted);
}

.wss-faq-item__answer a {
  color: var(--wss-primary);
  text-decoration: none;
}

.wss-faq-item__answer a:hover {
  text-decoration: underline;
}

/* =============================================================================
   SIZE GUIDE PAGE
   ============================================================================= */

.wss-size-legend {
  background-color: var(--wss-gray-50);
  border-bottom: 1px solid var(--wss-gray-200);
  padding: var(--wss-space-6) 0;
}

.wss-size-legend__items {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wss-space-4);
  justify-content: center;
  font-size: var(--wss-text-sm);
}

.wss-size-legend__item {
  display: flex;
  align-items: center;
}

.wss-size-legend__dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: var(--wss-radius-sm);
  margin-right: var(--wss-space-2);
}

.wss-size-legend__dot--blue {
  background-color: #3b82f6;
}

.wss-size-legend__dot--green {
  background-color: #22c55e;
}

.wss-size-legend__dot--orange {
  background-color: #f97316;
}

/* Size Section Header */
.wss-size-section__header {
  display: flex;
  align-items: center;
  margin-bottom: var(--wss-space-8);
}

.wss-size-section__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--wss-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--wss-space-4);
}

.wss-size-section__icon--blue {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.wss-size-section__icon--green {
  background-color: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.wss-size-section__icon--orange {
  background-color: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.wss-size-section__title {
  font-size: var(--wss-text-2xl);
  font-weight: 700;
  color: var(--wss-text);
}

.wss-size-section__subtitle {
  color: var(--wss-text-muted);
}

/* Unit Grid */
.wss-unit-grid {
  display: grid;
  gap: var(--wss-space-6);
}

@media (min-width: 768px) {
  .wss-unit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .wss-unit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Unit Card with color variants */
.wss-unit-card--blue {
  border-left: 4px solid #3b82f6;
  background-color: rgba(59, 130, 246, 0.05);
}

.wss-unit-card--green {
  border-left: 4px solid #22c55e;
  background-color: rgba(34, 197, 94, 0.05);
}

.wss-unit-card--orange {
  border-left: 4px solid #f97316;
  background-color: rgba(249, 115, 22, 0.05);
}

.wss-unit-card__image {
  height: 12rem;
  overflow: hidden;
}

.wss-unit-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wss-unit-card__badge--blue {
  background-color: rgba(59, 130, 246, 0.1);
  color: #1d4ed8;
}

.wss-unit-card__badge--green {
  background-color: rgba(34, 197, 94, 0.1);
  color: #15803d;
}

.wss-unit-card__badge--orange {
  background-color: rgba(249, 115, 22, 0.1);
  color: #c2410c;
}

.wss-unit-card__items {
  border-top: 1px solid var(--wss-gray-200);
  padding-top: var(--wss-space-4);
  margin-top: var(--wss-space-4);
}

.wss-unit-card__items-label {
  font-size: var(--wss-text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--wss-text-muted);
  margin-bottom: var(--wss-space-2);
}

.wss-unit-card__items-list {
  display: flex;
  flex-direction: column;
  gap: var(--wss-space-1);
}

.wss-unit-card__items-list li {
  display: flex;
  align-items: center;
  font-size: var(--wss-text-sm);
  color: var(--wss-text-muted);
}

.wss-unit-card__items-list li svg {
  width: 1rem;
  height: 1rem;
  margin-right: var(--wss-space-2);
  color: #22c55e;
  flex-shrink: 0;
}

/* Button icon positions */
.wss-btn__icon--right {
  margin-left: var(--wss-space-2);
}

/* =============================================================================
   FOOTER FIXES
   ============================================================================= */

.wss-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--wss-space-2);
}

.wss-footer__link {
  font-size: var(--wss-text-sm);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--wss-transition);
}

.wss-footer__link:hover {
  color: white;
}

.wss-footer__address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--wss-space-4);
}

.wss-footer__phone a,
.wss-footer__email a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--wss-transition);
}

.wss-footer__phone a:hover,
.wss-footer__email a:hover {
  color: white;
}

.wss-footer__phone {
  margin-bottom: var(--wss-space-2);
}

.wss-footer__email {
  margin-bottom: var(--wss-space-4);
}

.wss-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--wss-space-4);
  align-items: center;
  padding-top: var(--wss-space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--wss-text-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--wss-space-12);
}

@media (min-width: 640px) {
  .wss-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* =============================================================================
   CITIES PAGES
   ============================================================================= */

/* Cities Grid */
.wss-cities-grid {
  display: grid;
  gap: var(--wss-space-8);
}

@media (min-width: 768px) {
  .wss-cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .wss-cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* City Card */
.wss-city-card {
  display: block;
  background-color: white;
  border-radius: var(--wss-radius-xl);
  overflow: hidden;
  box-shadow: var(--wss-shadow-lg);
  text-decoration: none;
  transition: box-shadow var(--wss-transition-slow);
}

.wss-city-card:hover {
  box-shadow: var(--wss-shadow-xl);
}

.wss-city-card__image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.wss-city-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--wss-transition-slow);
}

.wss-city-card:hover .wss-city-card__image img {
  transform: scale(1.05);
}

.wss-city-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.wss-city-card__title {
  position: absolute;
  bottom: var(--wss-space-4);
  left: var(--wss-space-4);
  font-size: var(--wss-text-2xl);
  font-weight: 700;
  color: white;
}

.wss-city-card__content {
  padding: var(--wss-space-6);
}

.wss-city-card__content p {
  color: var(--wss-text-muted);
  margin-bottom: var(--wss-space-4);
}

.wss-city-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--wss-text-sm);
}

.wss-city-card__footer span:first-child {
  color: var(--wss-gray-500);
}

.wss-city-card__link {
  display: inline-flex;
  align-items: center;
  color: var(--wss-primary);
  font-weight: 600;
}

.wss-city-card__link svg {
  width: 1rem;
  height: 1rem;
  margin-left: var(--wss-space-1);
  transition: transform var(--wss-transition);
}

.wss-city-card:hover .wss-city-card__link svg {
  transform: translateX(4px);
}

/* Why Grid */
.wss-why-grid {
  display: grid;
  gap: var(--wss-space-6);
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .wss-why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.wss-why-item {
  text-align: center;
  padding: var(--wss-space-6);
}

.wss-why-item__icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--wss-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--wss-space-4);
  color: var(--wss-primary);
}

.wss-why-item__icon .wss-icon {
  width: 2rem;
  height: 2rem;
}

.wss-why-item h3 {
  font-weight: 600;
  color: var(--wss-text);
  margin-bottom: var(--wss-space-2);
}

.wss-why-item p {
  font-size: var(--wss-text-sm);
  color: var(--wss-text-muted);
}

/* City Detail Hero */
.wss-city-hero {
  background-size: cover;
  background-position: center;
  color: white;
  padding: var(--wss-space-12) 0;
}

@media (min-width: 768px) {
  .wss-city-hero {
    padding: var(--wss-space-16) 0;
  }
}

.wss-city-hero__title {
  font-size: var(--wss-text-4xl);
  font-weight: 700;
  margin-bottom: var(--wss-space-4);
}

@media (min-width: 640px) {
  .wss-city-hero__title {
    font-size: var(--wss-text-5xl);
  }
}

.wss-city-hero__subtitle {
  font-size: var(--wss-text-xl);
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
  margin-bottom: var(--wss-space-8);
}

.wss-city-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wss-space-4);
}

.wss-breadcrumb--light {
  margin-bottom: var(--wss-space-6);
  color: rgba(255, 255, 255, 0.8);
}

.wss-breadcrumb--light a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--wss-transition);
}

.wss-breadcrumb--light a:hover {
  color: white;
}

.wss-breadcrumb--light span {
  margin: 0 var(--wss-space-2);
}

.wss-breadcrumb--light span:last-child {
  color: white;
  margin: 0;
}

/* City Stats */
.wss-city-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--wss-space-4);
  margin-top: var(--wss-space-8);
}

.wss-city-stat {
  background-color: var(--wss-gray-50);
  border-radius: var(--wss-radius-lg);
  padding: var(--wss-space-4);
}

.wss-city-stat__number {
  font-size: var(--wss-text-3xl);
  font-weight: 700;
  color: var(--wss-primary);
}

.wss-city-stat__label {
  font-size: var(--wss-text-sm);
  color: var(--wss-text-muted);
}

/* Spots Grid */
.wss-spots-grid {
  display: grid;
  gap: var(--wss-space-8);
}

@media (min-width: 768px) {
  .wss-spots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wss-spot-card {
  display: block;
  background-color: white;
  border-radius: var(--wss-radius-xl);
  overflow: hidden;
  box-shadow: var(--wss-shadow-md);
  text-decoration: none;
  transition: box-shadow var(--wss-transition);
}

.wss-spot-card:hover {
  box-shadow: var(--wss-shadow-lg);
}

.wss-spot-card--alt {
  background-color: var(--wss-gray-50);
}

.wss-spot-card--alt:hover {
  background-color: var(--wss-gray-100);
}

.wss-spot-card__image {
  height: 12rem;
  overflow: hidden;
}

.wss-spot-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--wss-transition-slow);
}

.wss-spot-card:hover .wss-spot-card__image img {
  transform: scale(1.05);
}

.wss-spot-card__content {
  padding: var(--wss-space-4);
}

.wss-spot-card__content h3 {
  font-weight: 600;
  color: var(--wss-text);
  transition: color var(--wss-transition);
}

.wss-spot-card:hover .wss-spot-card__content h3 {
  color: var(--wss-primary);
}

.wss-spot-card__content p {
  display: flex;
  align-items: center;
  font-size: var(--wss-text-sm);
  color: var(--wss-gray-500);
  margin-top: var(--wss-space-2);
}

.wss-spot-card__content p svg {
  width: 1rem;
  height: 1rem;
  margin-right: var(--wss-space-1);
}

/* Service Link Cards */
.wss-services-cards {
  display: grid;
  gap: var(--wss-space-6);
}

@media (min-width: 640px) {
  .wss-services-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .wss-services-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wss-service-link-card {
  display: block;
  background-color: var(--wss-gray-50);
  border-radius: var(--wss-radius-xl);
  padding: var(--wss-space-6);
  text-decoration: none;
  transition: background-color var(--wss-transition-slow), color var(--wss-transition-slow);
}

.wss-service-link-card:hover {
  background-color: var(--wss-primary);
}

.wss-service-link-card h4 {
  font-size: var(--wss-text-lg);
  font-weight: 600;
  color: var(--wss-text);
  margin-bottom: var(--wss-space-2);
  transition: color var(--wss-transition);
}

.wss-service-link-card:hover h4 {
  color: white;
}

.wss-service-link-card p {
  font-size: var(--wss-text-sm);
  color: var(--wss-text-muted);
  transition: color var(--wss-transition);
}

.wss-service-link-card:hover p {
  color: rgba(255, 255, 255, 0.8);
}

.wss-service-link-card span {
  display: inline-flex;
  align-items: center;
  font-size: var(--wss-text-sm);
  font-weight: 500;
  color: var(--wss-primary);
  margin-top: var(--wss-space-4);
  transition: color var(--wss-transition);
}

.wss-service-link-card:hover span {
  color: white;
}

.wss-service-link-card span svg {
  width: 1rem;
  height: 1rem;
  margin-left: var(--wss-space-1);
}

/* =============================================================================
   Legal Content (Privacy, Terms)
   ============================================================================= */

.wss-legal-content {
  max-width: 48rem;
  margin: 0 auto;
}

.wss-legal-content h2 {
  font-family: var(--wss-font-heading);
  font-size: var(--wss-text-2xl);
  font-weight: 700;
  color: var(--wss-primary);
  margin-top: var(--wss-space-10);
  margin-bottom: var(--wss-space-4);
}

.wss-legal-content h2:first-child {
  margin-top: 0;
}

.wss-legal-content h3 {
  font-family: var(--wss-font-heading);
  font-size: var(--wss-text-xl);
  font-weight: 600;
  color: var(--wss-gray-800);
  margin-top: var(--wss-space-6);
  margin-bottom: var(--wss-space-3);
}

.wss-legal-content p {
  color: var(--wss-text-muted);
  line-height: 1.7;
  margin-bottom: var(--wss-space-4);
}

.wss-legal-content ul {
  list-style: disc;
  padding-left: var(--wss-space-6);
  margin-bottom: var(--wss-space-4);
}

.wss-legal-content ul li {
  color: var(--wss-text-muted);
  line-height: 1.7;
  margin-bottom: var(--wss-space-2);
}

.wss-legal-content address {
  font-style: normal;
  color: var(--wss-text-muted);
  line-height: 1.7;
  background: var(--wss-gray-50);
  padding: var(--wss-space-6);
  border-radius: var(--wss-radius-lg);
  margin-top: var(--wss-space-4);
}

.wss-legal-content address strong {
  color: var(--wss-gray-900);
}

.wss-legal-content address a {
  color: var(--wss-primary);
  text-decoration: none;
  transition: color var(--wss-transition);
}

.wss-legal-content address a:hover {
  color: var(--wss-accent);
}
