/* ===================================
   COMPONENT STYLES
   =================================== */

/* Body - Force light mode with white background */
html {
  color-scheme: light;
}

body {
  background-color: #ffffff;
  color: #00224c;
  transition: background-color var(--transition-base);
}

/* ===================================
   NAVIGATION
   =================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) var(--spacing-md);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

@media (min-width: 1024px) {
  .header {
    padding: var(--spacing-md) var(--container-padding-lg);
  }
}

.header__logo {
  display: flex;
  align-items: center;
  color: var(--color-primary);
  text-decoration: none;
}

.header__logo-image {
  height: 80px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.header__nav-links {
  display: none;
}

@media (min-width: 768px) {
  .header__nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
  }
}

.header__nav-link {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: #00224c;
  text-decoration: none;
  transition: color var(--transition-fast);
  cursor: pointer;
  padding: 0.5rem 0;
  position: relative;
}

/* Animated underline for nav links */
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent-gold);
  transition: width var(--transition-fast);
}

.header__nav-link:hover::after,
.header__nav-link:focus::after {
  width: 100%;
}

.header__nav-link:hover {
  color: var(--color-accent-gold);
}

.header__cta-button {
  display: none;
  min-width: 84px;
  padding: 0 var(--spacing-lg);
  height: 40px;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-text-white);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
  box-shadow: var(--shadow-sm);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .header__cta-button {
    display: flex;
  }
}

.header__cta-button:hover {
  background-color: var(--color-accent-gold-hover);
  color: var(--color-text-white);
}

.header__menu-toggle {
  display: flex;
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
}

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

/* Mobile Menu */
.header__mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--color-bg-light);
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-lg);
}

.header__mobile-menu.active {
  display: block;
}

.header__mobile-nav-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: var(--spacing-md);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  border-bottom: 1px solid var(--color-border-gray);
  cursor: pointer;
}

.header__mobile-nav-link:last-child {
  border-bottom: none;
}

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

/* Hero Logo */
.hero__logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--spacing-xl);
  animation: logoFadeIn 1s ease-out;
}

.hero__logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.3))
    drop-shadow(0 8px 40px rgba(0, 34, 76, 0.2));
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Disable float animation on mobile and for reduced motion */
@media (max-width: 767px) or (prefers-reduced-motion: reduce) {
  .hero__logo {
    animation: none;
    max-width: 150px;
  }
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 64px;
  overflow: hidden;
}

@keyframes kenBurnsZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

/* Wrapper for parallax - handles vertical movement */
.hero__background-wrapper {
  position: absolute;
  inset: 0; /* No negative inset - fully responsive */
  z-index: 0;
  overflow: hidden;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* Inner background - handles Ken Burns zoom animation */
.hero__background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center; /* Default background positioning */
  background-repeat: no-repeat;
  /* Ken Burns animation - more prominent zoom */
  animation: kenBurnsZoom 30s ease-out infinite alternate;
  will-change: transform;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center center; /* Default background positioning */
  background-repeat: no-repeat;
  /* Parallax effect - enable hardware acceleration */
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 0.1s linear;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero__background-wrapper {
    will-change: auto;
    transform: none !important;
  }

  .hero__background {
    animation: none !important;
  }
}

/* Disable parallax and Ken Burns on mobile */
@media (max-width: 767px) {
  .hero__background-wrapper {
    will-change: auto;
    transform: none !important;
  }

  .hero__background {
    animation: none !important;
    background-position: 50% 40%; /* Mobile: focus on upper portion of image */
    background-image:
      linear-gradient(rgba(0, 34, 76, 0.4) 0%, rgba(0, 34, 76, 0.6) 100%),
      url("../assets/Banner Mobile.png") !important;
  }
}

/* Tablet: center positioning */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero__background {
    background-position: 50% 50%;
  }
}

/* Desktop: focus on center-lower portion */
@media (min-width: 1024px) {
  .hero__background {
    background-position: 50% 45%;
  }
}

.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-xl);
  padding: var(--spacing-4xl) var(--spacing-md);
}

@media (min-width: 1024px) {
  .hero__content {
    padding: var(--spacing-4xl) var(--container-padding-lg);
  }
}

.hero__title {
  color: var(--color-text-white);
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.3),
    0 4px 8px rgba(0, 0, 0, 0.2),
    0 8px 16px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .hero__title {
    font-size: var(--font-size-7xl);
  }
}

.hero__subtitle {
  color: var(--color-text-white-90);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-relaxed);
  letter-spacing: 0.05em;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.25),
    0 4px 8px rgba(0, 0, 0, 0.15);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero__subtitle {
    font-size: var(--font-size-xl);
  }
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
  width: 100%;
}

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

.hero__button {
  display: flex;
  min-width: 160px;
  align-items: center;
  justify-content: center;
  padding: 0 var(--spacing-xl);
  height: 48px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.025em;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  text-decoration: none;
}

.hero__button--primary {
  background-color: var(--color-primary);
  color: var(--color-text-white);
  border: 1px solid var(--color-primary);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero__button--primary:hover {
  background-color: var(--color-accent-gold-hover);
  color: var(--color-text-white);
}

.hero__button--secondary {
  background-color: transparent;
  color: var(--color-text-white);
  border: 2px solid var(--color-text-white);
  backdrop-filter: blur(10px);
}

.hero__button--secondary:hover {
  background-color: var(--color-text-white);
  color: var(--color-primary);
}

.hero__compliance {
  position: absolute;
  bottom: var(--spacing-lg);
  left: 0;
  right: 0;
  text-align: center;
  font-size: var(--font-size-xs);
}

.hero__compliance a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.hero__compliance a:hover {
  color: var(--color-text-white);
}

.hero__compliance-separator {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 var(--spacing-sm);
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
  background-color: var(--color-bg-light);
}

.about__container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

@media (min-width: 1024px) {
  .about__container {
    flex-direction: row;
    gap: var(--spacing-4xl);
    align-items: center;
  }
}

.about__image-wrapper {
  width: 100%;
  position: relative;
}

@media (min-width: 1024px) {
  .about__image-wrapper {
    width: 50%;
  }
}

.about__image {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  position: relative;
  z-index: 10;
}

.about__image-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.about__decorative-circle {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 8rem;
  height: 8rem;
  background-color: rgba(197, 160, 101, 0.2);
  border-radius: var(--radius-full);
  z-index: 0;
  display: none;
}

@media (min-width: 1024px) {
  .about__decorative-circle {
    display: block;
  }
}

.about__decorative-border {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 6rem;
  height: 6rem;
  border: 2px solid rgba(0, 34, 76, 0.2);
  border-radius: var(--radius-sm);
  z-index: 0;
  display: none;
}

@media (min-width: 1024px) {
  .about__decorative-border {
    display: block;
  }
}

.about__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

@media (min-width: 1024px) {
  .about__content {
    width: 50%;
  }
}

.about__label {
  color: var(--color-accent-terracotta);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: var(--font-size-sm);
  display: block;
  margin-bottom: var(--spacing-sm);
}

.about__title {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--spacing-lg);
  color: #00224c;
}

@media (min-width: 1024px) {
  .about__title {
    font-size: var(--font-size-5xl);
  }
}

.about__text {
  color: var(--color-text-secondary);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.about__feature-card {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background-color: var(--color-bg-offwhite);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-gray);
}

.about__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm);
  background-color: rgba(0, 34, 76, 0.1);
  border-radius: var(--radius-full);
  color: var(--color-primary);
}

.about__feature-title {
  font-weight: var(--font-weight-bold);
  color: #00224c;
  font-size: var(--font-size-lg);
}

.about__feature-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.about__more-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: var(--spacing-xs);
  transition: color var(--transition-fast);
  text-decoration: none;
  cursor: pointer;
}

.about__more-link:hover {
  color: var(--color-accent-gold);
}

.about__more-link .material-symbols-outlined {
  transition: transform var(--transition-fast);
}

.about__more-link:hover .material-symbols-outlined {
  transform: translateX(4px);
}

/* ===================================
   BIO / ABOUT MORE SECTION
   =================================== */
.bio {
  background-color: var(--color-bg-offwhite);
  border-top: 1px solid var(--color-border-gray);
}

.bio__container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

@media (min-width: 1024px) {
  .bio__container {
    flex-direction: row;
    gap: var(--spacing-4xl);
    align-items: center;
  }
}

.bio__image-wrapper {
  width: 100%;
  position: relative;
}

@media (min-width: 1024px) {
  .bio__image-wrapper {
    width: 50%;
  }
}

.bio__image {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  position: relative;
  z-index: 10;
}

.bio__image-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.bio__decorative-circle {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 8rem;
  height: 8rem;
  background-color: rgba(197, 160, 101, 0.2);
  border-radius: var(--radius-full);
  z-index: 0;
  display: none;
}

@media (min-width: 1024px) {
  .bio__decorative-circle {
    display: block;
  }
}

.bio__decorative-border {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 6rem;
  height: 6rem;
  border: 2px solid rgba(0, 34, 76, 0.2);
  border-radius: var(--radius-sm);
  z-index: 0;
  display: none;
}

@media (min-width: 1024px) {
  .bio__decorative-border {
    display: block;
  }
}

.bio__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

@media (min-width: 1024px) {
  .bio__content {
    width: 50%;
  }
}

.bio__label {
  color: var(--color-accent-terracotta);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: var(--font-size-sm);
  display: block;
  margin-bottom: var(--spacing-sm);
}

.bio__headline {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--spacing-lg);
  color: #00224c;
}

@media (min-width: 1024px) {
  .bio__headline {
    font-size: var(--font-size-5xl);
  }
}

.bio__text {
  color: var(--color-text-secondary);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
}

.bio__cta {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

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

.bio__cta-button {
  display: inline-flex;
  min-width: 160px;
  align-items: center;
  justify-content: center;
  padding: 0 var(--spacing-xl);
  height: 48px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.025em;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  text-decoration: none;
  background-color: var(--color-primary);
  color: var(--color-text-white);
  border: 1px solid var(--color-primary);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.bio__cta-button:hover {
  background-color: var(--color-accent-gold-hover);
  color: var(--color-text-white);
}

.bio__cta-button--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: none;
  text-shadow: none;
}

.bio__cta-button--secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-text-white);
  box-shadow: var(--shadow-lg);
}

/* ===================================
   BIO HERO SECTION
   =================================== */
.bio-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 64px;
  overflow: hidden;
}

.bio-hero__background {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 34, 76, 0.85) 0%,
    rgba(0, 26, 61, 0.9) 50%,
    rgba(15, 43, 78, 0.88) 100%
  );
  z-index: 0;
}

.bio-hero__background::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(
    ellipse,
    rgba(197, 160, 101, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.bio-hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-md);
  padding: var(--spacing-4xl) var(--spacing-md);
}

.bio-hero__label {
  color: var(--color-accent-gold);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: var(--font-size-sm);
}

.bio-hero__title {
  color: var(--color-text-white);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.3),
    0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .bio-hero__title {
    font-size: var(--font-size-6xl);
  }
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
  background-color: var(--color-bg-offwhite);
  border-top: 1px solid var(--color-border-gray);
  border-bottom: 1px solid var(--color-border-gray);
}

.services__header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto var(--spacing-2xl);
}

.services__label {
  color: var(--color-accent-terracotta);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: var(--font-size-sm);
  display: block;
  margin-bottom: var(--spacing-sm);
}

.services__title {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-md);
  color: #00224c;
}

@media (min-width: 768px) {
  .services__title {
    font-size: var(--font-size-4xl);
  }
}

.services__subtitle {
  color: var(--color-text-secondary);
  font-size: var(--font-size-lg);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
}

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

.services__card {
  background-color: var(--color-bg-light);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-gray);
  transition: box-shadow var(--transition-base);
  cursor: pointer;
}

.services__card:hover {
  box-shadow: var(--shadow-lg);
}

.services__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  color: var(--color-text-white);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-lg);
  transition: background-color var(--transition-fast);
}

.services__card:hover .services__card-icon {
  background-color: var(--color-accent-gold);
}

.services__card-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: #00224c;
  margin-bottom: var(--spacing-md);
}

.services__card-text {
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-sm);
}

/* ===================================
   BUYER'S ROADMAP SECTION
   =================================== */
.roadmap {
  background-color: var(--color-bg-light);
  border-top: 1px solid var(--color-border-gray);
}

.roadmap__header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto var(--spacing-2xl);
}

.roadmap__header-image {
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-lg);
  margin: 0 auto var(--spacing-xl);
  box-shadow: var(--shadow-xl);
  display: block;
}

.roadmap__label {
  color: var(--color-accent-terracotta);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: var(--font-size-sm);
  display: block;
  margin-bottom: var(--spacing-sm);
}

.roadmap__title {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .roadmap__title {
    font-size: var(--font-size-4xl);
  }
}

.roadmap__tagline {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent-gold);
  margin-bottom: var(--spacing-lg);
  font-style: italic;
}

.roadmap__intro {
  color: var(--color-text-secondary);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
}

.roadmap__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .roadmap__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }
}

.roadmap__step {
  display: flex;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl);
  background-color: var(--color-bg-offwhite);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-gray);
  transition:
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.roadmap__step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.roadmap__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    var(--color-accent-gold),
    var(--color-accent-gold-hover)
  );
  color: var(--color-text-white);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-full);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(197, 160, 101, 0.3);
}

.roadmap__step-content {
  flex: 1;
}

.roadmap__step-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.roadmap__step-text {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
}

.roadmap__cta {
  text-align: center;
  margin-top: var(--spacing-2xl);
}

.roadmap__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--spacing-xl);
  height: 48px;
  background-color: var(--color-primary);
  color: var(--color-text-white);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.025em;
  border-radius: var(--radius-md);
  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  text-decoration: none;
}

.roadmap__cta-button:hover {
  background-color: var(--color-accent-gold-hover);
  color: var(--color-text-white);
  transform: translateY(-1px);
}

.roadmap__cta-button:active {
  transform: translateY(0);
}

/* ===================================
   SHORT-TERM RENTAL (STR) SECTION
   =================================== */
.str {
  position: relative;
  overflow: hidden;
}

.str__background {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 34, 76, 0.85) 0%,
    rgba(0, 26, 61, 0.9) 100%
  ),
  url("../assets/str_header.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.str__background::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(
    ellipse,
    rgba(197, 160, 101, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.str__inner {
  position: relative;
  z-index: 1;
}

.str__header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto var(--spacing-2xl);
}

.str__label {
  color: var(--color-accent-gold);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: var(--font-size-sm);
  display: block;
  margin-bottom: var(--spacing-sm);
}

.str__title {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-white);
}

@media (min-width: 768px) {
  .str__title {
    font-size: var(--font-size-4xl);
  }
}

.str__tagline {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent-gold);
  margin-bottom: var(--spacing-lg);
  font-style: italic;
}

.str__intro {
  color: var(--color-text-white-80);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-md);
}

.str__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
}

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

.str__card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
  cursor: pointer;
}

.str__card:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.str__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    var(--color-accent-gold),
    var(--color-accent-gold-hover)
  );
  color: var(--color-primary);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-lg);
  transition: transform var(--transition-fast);
}

.str__card:hover .str__card-icon {
  transform: scale(1.1);
}

.str__card-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-white);
  margin-bottom: var(--spacing-md);
}

.str__card-text {
  color: var(--color-text-white-80);
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-sm);
}

.str__cta {
  text-align: center;
  margin-top: var(--spacing-2xl);
}

.str__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--spacing-xl);
  height: 48px;
  background: linear-gradient(
    135deg,
    var(--color-accent-gold),
    var(--color-accent-gold-hover)
  );
  color: var(--color-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.025em;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 20px rgba(197, 160, 101, 0.3);
  cursor: pointer;
  text-decoration: none;
}

.str__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197, 160, 101, 0.4);
  color: var(--color-text-white);
  background: linear-gradient(
    135deg,
    var(--color-accent-gold-hover),
    var(--color-accent-gold)
  );
}

.str__cta-button:active {
  transform: translateY(0);
}

/* ===================================
   TEXAS OPPORTUNITY SECTION
   =================================== */
.texas {
  position: relative;
  overflow: hidden;
}

.texas__background {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 43, 78, 0.88) 0%,
    rgba(0, 34, 76, 0.85) 30%,
    rgba(0, 51, 102, 0.8) 70%,
    rgba(224, 122, 95, 0.75) 100%
  ),
  url("../assets/texas_header.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.texas__background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(197, 160, 101, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(224, 122, 95, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.texas__inner {
  position: relative;
  z-index: 1;
}

.texas__header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto var(--spacing-2xl);
}

.texas__label {
  color: var(--color-accent-gold);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: var(--font-size-sm);
  display: block;
  margin-bottom: var(--spacing-sm);
}

.texas__title {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-white);
}

@media (min-width: 768px) {
  .texas__title {
    font-size: var(--font-size-4xl);
  }
}

.texas__tagline {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent-gold);
  margin-bottom: var(--spacing-lg);
  font-style: italic;
}

.texas__intro {
  color: var(--color-text-white-80);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
}

.texas__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
}

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

.texas__card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    background var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
  cursor: pointer;
}

.texas__card:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.texas__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    var(--color-accent-terracotta),
    var(--color-accent-terracotta-hover)
  );
  color: var(--color-text-white);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-lg);
  transition: transform var(--transition-fast);
}

.texas__card:hover .texas__card-icon {
  transform: scale(1.1);
}

.texas__card-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-white);
  margin-bottom: var(--spacing-md);
}

.texas__card-text {
  color: var(--color-text-white-80);
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-sm);
}

/* ===================================
   PROPERTIES SECTION
   =================================== */
.properties {
  background-color: var(--color-bg-light);
}

.properties__header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-2xl);
}

@media (min-width: 768px) {
  .properties__header {
    flex-direction: row;
  }
}

.properties__title {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-md);
  color: #00224c;
}

@media (min-width: 768px) {
  .properties__title {
    font-size: var(--font-size-4xl);
  }
}

.properties__subtitle {
  color: var(--color-text-secondary);
  font-size: var(--font-size-lg);
}

.properties__search-button {
  display: flex;
  min-width: 160px;
  align-items: center;
  justify-content: center;
  padding: 0 var(--spacing-lg);
  height: 48px;
  background-color: var(--color-primary);
  color: var(--color-text-white);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.025em;
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  text-decoration: none;
}

.properties__search-button:hover {
  background-color: var(--color-accent-gold-hover);
  color: var(--color-text-white);
}

.properties__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

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

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

.properties__card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform var(--transition-base);
  cursor: pointer;
}

.properties__card-link:hover {
  transform: translateY(-4px);
}

.properties__card {
  height: 100%;
}

.properties__card-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
  margin-bottom: var(--spacing-md);
}

.properties__card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

.properties__card:hover .properties__card-bg {
  transform: scale(1.1);
}

.properties__card-badge {
  position: absolute;
  top: var(--spacing-md);
  left: var(--spacing-md);
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
}

.properties__card-badge--new {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
}

.properties__card-badge--featured {
  background-color: rgba(0, 34, 76, 0.9);
  color: var(--color-text-white);
}

.properties__card-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: #00224c;
  margin-bottom: var(--spacing-xs);
  transition: color var(--transition-fast);
}

.properties__card:hover .properties__card-title {
  color: var(--color-accent-terracotta);
}

.properties__card-pitch {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  margin-top: var(--spacing-sm);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
  background-color: var(--color-bg-offwhite);
  border-top: 1px solid var(--color-border-light);
}

.contact__form-wrapper {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  background-color: var(--color-bg-light);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border-gray);
}

@media (min-width: 768px) {
  .contact__form-wrapper {
    padding: var(--spacing-2xl);
  }
}

.contact__title {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-sm);
  color: #00224c;
}

.contact__subtitle {
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-xl);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.contact__form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

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

.contact__form-group {
  text-align: left;
}

.contact__form-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: #00224c;
  margin-bottom: var(--spacing-xs);
}

.contact__form-input,
.contact__form-select {
  width: 100%;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-gray-300);
  background-color: var(--color-bg-offwhite);
  color: var(--color-primary);
  font-size: var(--font-size-base);
  transition: all var(--transition-fast);
}

.contact__form-input:focus,
.contact__form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 34, 76, 0.1);
}

.contact__form-textarea {
  width: 100%;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-gray-300);
  background-color: var(--color-bg-offwhite);
  color: var(--color-primary);
  font-size: var(--font-size-base);
  font-family: inherit;
  resize: vertical;
  min-height: 120px;
  transition: all var(--transition-fast);
}

.contact__form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 34, 76, 0.1);
}

.contact__form-textarea::placeholder {
  color: #6b7280;
}

.contact__form-button {
  margin-top: var(--spacing-md);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--spacing-xl);
  height: 48px;
  background-color: var(--color-primary);
  color: var(--color-text-white);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.025em;
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: none;
}

.contact__form-button:hover {
  background-color: var(--color-accent-gold-hover);
  color: var(--color-text-white);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background-color: var(--color-primary);
  color: var(--color-text-white);
}

.footer__top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-xl);
  padding-bottom: var(--spacing-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer__top {
    flex-direction: row;
  }
}

.footer__cta {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.footer__cta-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-white);
  line-height: var(--line-height-snug);
}

.footer__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-lg);
  background-color: var(--color-accent-gold);
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.footer__cta-button:hover {
  background-color: var(--color-accent-gold-hover);
  color: var(--color-text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.footer__nav {
  display: flex;
  gap: var(--spacing-xl);
}

.footer__nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast);
  cursor: pointer;
}

.footer__nav-link:hover {
  color: var(--color-text-white);
}

.footer__social {
  display: flex;
  gap: var(--spacing-md);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--color-text-white);
  transition: background-color var(--transition-fast);
  cursor: pointer;
}

.footer__social-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.5);
}

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

.footer__bottom p {
  margin: 0;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

@media (min-width: 768px) {
  .footer__legal {
    text-align: right;
  }
}

.footer__legal strong {
  font-weight: var(--font-weight-bold);
}

.footer__compliance {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  font-size: var(--font-size-xs);
  margin-top: var(--spacing-md);
}

.footer__compliance a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  transition: color var(--transition-fast);
  cursor: pointer;
}

.footer__compliance a:hover {
  color: var(--color-text-white);
}

.footer__compliance-separator {
  display: none;
}

@media (min-width: 768px) {
  .footer__compliance {
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: 0;
  }

  .footer__compliance-separator {
    display: inline;
    color: rgba(255, 255, 255, 0.4);
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.bg-white {
  background-color: var(--color-bg-light);
}

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

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

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

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-xl {
  border-radius: var(--radius-lg);
}

.rounded-2xl {
  border-radius: var(--radius-lg);
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.shadow-xl {
  box-shadow: var(--shadow-xl);
}

.shadow-2xl {
  box-shadow: var(--shadow-2xl);
}

.border-solid {
  border-style: solid;
}

.border-b {
  border-bottom: 1px solid;
}

.border-t {
  border-top: 1px solid;
}

.border-gray-100 {
  border-color: var(--color-border-gray);
}

.border-gray-200 {
  border-color: var(--color-border-light);
}

.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ===================================
   TYPING EFFECT
   =================================== */

.hero__typing-text {
  display: inline;
  position: relative;
}

@keyframes blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

.hero__typing-cursor {
  display: inline-block;
  animation: blink 1s step-end infinite;
  color: var(--color-text-white);
  font-weight: var(--font-weight-bold);
}

@media (prefers-reduced-motion: reduce) {
  .hero__typing-cursor {
    animation: none;
    opacity: 1;
  }
}

/* ===================================
   ACCESSIBILITY
   =================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus visible for better accessibility */
:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 2px;
}

/* Ensure all interactive elements show focus */
.button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 2px;
}

/* ===================================
   LOADING STATES
   =================================== */

/* Spinner animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Button loading state */
.contact__form-button.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.contact__form-button.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

/* ===================================
   DISABLED STATES
   =================================== */

.contact__form-button:disabled,
.header__cta-button:disabled,
.hero__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.contact__form-input:disabled,
.contact__form-select:disabled {
  background-color: var(--color-bg-offwhite);
  color: var(--color-text-muted);
  cursor: not-allowed;
  opacity: 0.7;
}

/* ===================================
   FORM VALIDATION STATES
   =================================== */

.contact__form-input.error,
.contact__form-select.error {
  border-color: #ef4444;
}

.contact__form-input.error:focus,
.contact__form-select.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.contact__form-input.success,
.contact__form-select.success {
  border-color: #10b981;
}

.contact__form-input.success:focus,
.contact__form-select.success:focus {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Form messages */
.form-message {
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  animation: fadeIn var(--transition-base);
}

.form-message--success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #10b981;
}

.form-message--error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #ef4444;
}

/* ===================================
   ENHANCED HOVER STATES
   =================================== */

/* Smooth hover transitions for cards */
.services__card,
.properties__card-link {
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.services__card:hover,
.properties__card-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* Enhanced button hover states */
.header__cta-button,
.hero__button--primary,
.contact__form-button,
.properties__search-button,
.footer__cta-button {
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.header__cta-button:hover,
.hero__button--primary:hover,
.contact__form-button:hover,
.properties__search-button:hover,
.footer__cta-button:hover {
  transform: translateY(-1px);
}

.header__cta-button:active,
.hero__button--primary:active,
.contact__form-button:active,
.properties__search-button:active,
.footer__cta-button:active {
  transform: translateY(0);
}

/* ===================================
   SMOOTH SCROLL
   =================================== */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ===================================
   RESPONSIVE IMPROVEMENTS
   =================================== */
@media (max-width: 768px) {
  .hero__content {
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
    text-align: center;
  }

  .about__content,
  .services__header,
  .properties__header,
  .contact__form-wrapper {
    text-align: left;
  }

  .about__feature-card {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }

  .properties__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .properties__search-button {
    width: 100%;
  }
}
