﻿:root {
  --body-color: #6f7881;
  --body-bg: #eff1f3;

  --strong: #42474e;

  --primary: #1e4a7c;
  --secondary: #8cb54f;

  --heading-font-weight: 700;
}

html {
  font-size: 12px;

  @media (min-width: 320px) {
    font-size: 14px;
  }

  @media (min-width: 992px) {
    font-size: 16px;
  }
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: normal;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  color: var(--body-color);
  background-color: var(--body-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

main {
  flex: 1 0 auto;
}

/* Header */
.header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    padding: 16px 0;
    color: white;
    transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    z-index: 1000;
    will-change: background-color, padding, box-shadow;

    @media (prefers-reduced-motion: reduce) {
        transition: none;
    }
}

.header--registration {
  background-color: var(--primary);

}

.header--scrolled {
    background-color: var(--primary);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
}

    .header--scrolled .header__logo img {
        height: 48px;
        width: auto;
        transition: height 0.3s ease-in-out;
    }

.header__profile {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}

.header__avatar {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--secondary);
  color: #fff;
  border-radius: 100%;
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__btn {
  background: transparent;
  height: 2.5rem;
  width: 2.5rem;
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.header-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  z-index: 1101;
  display: block;
  width: 100%;
  height: 100svh;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}

.header-overlay--shown {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 992px) {
  .header-overlay {
    display: none;
  }
}

.header--schedule {
  background-color: var(--primary);
  position: static;
}

.main-registration {
  padding-top: 96px;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--gutter-x, 16px);
  padding-left: var(--gutter-x, 16px);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm,
  .container-xs,
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container-md,
  .container-sm,
  .container-xs,
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container-lg,
  .container-md,
  .container-sm,
  .container-xs,
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xs,
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xs,
  .container {
    max-width: 1320px;
  }
}

.row {
  --gutter-x: 1rem;
  --gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--gutter-y) * -1);
  margin-right: calc(var(--gutter-x) * -0.5);
  margin-left: calc(var(--gutter-x) * -0.5);
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
  margin-top: var(--gutter-y);
}

.col {
  flex: 1 0 0%;
}

@media (min-width: 480px) {
  .col-xs {
    flex: 1 0 0%;
  }
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
}

@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.g-,
.gx- {
  --gutter-x: ;
}

.g-,
.gy- {
  --gutter-y: ;
}

@media (min-width: 480px) {
  .col-xs-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xs-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xs-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xs-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xs-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xs-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xs-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xs-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xs-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xs-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xs-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xs-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xs-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .g-xs-,
  .gx-xs- {
    --gutter-x: ;
  }

  .g-xs-,
  .gy-xs- {
    --gutter-y: ;
  }
}

@media (min-width: 576px) {
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .g-sm-,
  .gx-sm- {
    --gutter-x: ;
  }

  .g-sm-,
  .gy-sm- {
    --gutter-y: ;
  }
}

@media (min-width: 768px) {
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .g-md-,
  .gx-md- {
    --gutter-x: ;
  }

  .g-md-,
  .gy-md- {
    --gutter-y: ;
  }
}

@media (min-width: 992px) {
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .g-lg-,
  .gx-lg- {
    --gutter-x: ;
  }

  .g-lg-,
  .gy-lg- {
    --gutter-y: ;
  }
}

@media (min-width: 1200px) {
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .g-xl-,
  .gx-xl- {
    --gutter-x: ;
  }

  .g-xl-,
  .gy-xl- {
    --gutter-y: ;
  }
}

@media (min-width: 1400px) {
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .g-xxl-,
  .gx-xxl- {
    --gutter-x: ;
  }

  .g-xxl-,
  .gy-xxl- {
    --gutter-y: ;
  }
}

/* Menu */

.menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 320px;
  padding: 0;
  max-width: 100%;
  background-color: white;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1102;

  @media (prefers-reduced-motion: reduce) {
    transition: none;
  }
}

.menu--shown {
  transform: translateX(0);
}

.menu__link {
  display: flex;
  min-height: 40px;
  width: 100%;
  padding: 4px 1rem;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  color: var(--body-color);
}

.menu__link:hover {
  color: var(--secondary);
}

.menu__action {
  background: transparent;
  height: 2.5rem;
  width: 2.5rem;
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--body-color);
}

@media (min-width: 992px) {
  .menu {
    position: static;
    background-color: transparent;
    height: auto;
    transform: translateX(0);
  }

  .menu__link {
    min-height: 0;
    padding: 0;
    color: white;
  }
}

/* Hero */
.hero {
  position: relative;
}

.hero__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

@media (min-width: 521px) {
  .hero__image {
    aspect-ratio: 3 / 2;
  }
}

@media (min-width: 769px) {
  .hero__image {
    aspect-ratio: 4/2;
  }
}

@media (min-width: 993px) {
  .hero__image {
    aspect-ratio: 1440/356;
  }
}

@media (min-width: 993px) {
  .hero__image {
    aspect-ratio: 1440/356;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      0deg,
      rgba(7, 28, 53, 0) 50%,
      rgba(7, 28, 53, 0.6) 100%
    ),
    linear-gradient(0deg, rgba(18, 49, 87, 0.3), rgba(18, 49, 87, 0.3));
}

/* Cards */

.card {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 0.75rem;
  width: 100%;
}

.card__heading {
  font-size: 2rem;
  font-weight: 700;
}

.card__header {
  background-color: var(--primary);
  padding: 1.5rem;
  color: white;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

.card__content {
  padding: 1.5rem;
  flex: 1;
  width: 100%;
}

.card__content + .card__footer {
  padding-top: 0;
}

.card__footer {
  padding: 1rem;
  width: 100%;
}

.property-wrapper {
  background-color: var(--primary);
  color: #fff;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--heading-font-weight);
}

h1,
.h1 {
  font-size: 2.25rem;
}

h2,
.h2 {
  font-size: 2rem;
}

h3,
.h3 {
  font-size: 1.75rem;
}

h4,
.h4 {
  font-size: 1.5rem;
}

h5,
.h5 {
  font-size: 1.25rem;
}

h6,
.h6 {
  font-size: 1.125rem;
}

.caption {
  font-size: 0.875rem;
}

.overline {
  font-size: 0.75rem;
}

/* Utilities */
.d-flex {
  display: flex;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.flex-column {
  flex-direction: column;
}

.p-4 {
  padding: 1rem;
}

.mh-full {
  min-height: 100%;
}

.w-full {
  width: 100%;
}

.h-auto {
  height: auto;
}

.text-primary {
  color: var(--primary);
}

.fw-semibold {
  font-weight: 600;
}

.gy-4 {
  --gutter-y: 1rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.strong {
  color: var(--strong);
}

.text-right {
  text-align: right;
}

.text-xs-right {
  @media (min-width: 480px) {
    text-align: right;
  }
}

.text-md-left {
  @media (min-width: 768px) {
    text-align: left;
  }
}

.text-lg-right {
  @media (min-width: 992px) {
    text-align: right;
  }
}

.justify-content-end {
  justify-content: flex-end;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.align-items-center {
  align-items: center;
}

.project {
}

.project__thumbnail {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: 0.5rem;
  min-height: 100%;
}

.project__thumbnail {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    border-radius: 0.5rem;
    min-height: 100%;
}

/* === EQUAL HEIGHT PROPERTY CARDS === */
.project.card {
    display: flex;
    flex-direction: column;
    min-height: 600px;
    height: 100%;
}

.project .card__content {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
}

.project .card__heading {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

    .project .card__heading img {
        max-width: 200px;
        max-height: 50px;
        width: auto;
        height: auto;
        object-fit: contain;
    }

.project .card__footer:first-of-type {
    flex: 1 1 auto;
    min-height: 100px;
    max-height: 120px;
    overflow: hidden;
    position: relative;
    padding-bottom: 1.5rem;
}

    .project .card__footer:first-of-type .col-12 {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.6;
    }

    /* Fade gradient at bottom of description */
    .project .card__footer:first-of-type::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 40px;
        background: linear-gradient(to bottom, transparent, white);
        pointer-events: none;
    }

/* Button footer - always at bottom */
.project .card__footer:last-of-type {
    flex: 0 0 auto;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

/* Ensure columns have equal height */
#project-grid {
    display: flex;
    flex-wrap: wrap;
}

    #project-grid > [class*="col-"] {
        display: flex;
        flex-direction: column;
    }

/* Mobile responsive */
@media (max-width: 767px) {
    .project.card {
        min-height: auto;
    }

    .project .card__footer:first-of-type {
        max-height: none;
    }

        .project .card__footer:first-of-type .col-12 {
            -webkit-line-clamp: unset;
        }

        .project .card__footer:first-of-type::after {
            display: none;
        }
}

.icon {
  width: 1.25em;
  height: 1.25em;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
}

.icon-tabler path,
.icon-tabler circle,
.icon-tabler rect,
.icon-tabler polyline,
.icon-tabler line {
  fill: none;
  stroke: currentColor;
}

.d-none {
  display: none;
}

@media (min-width: 992px) {
  .gx-lg-16 {
    --gutter-x: 4rem;
  }

  .d-lg-block {
    display: block;
  }

  .d-lg-none {
    display: none;
  }
}

.list__item {
  display: grid;
  padding: 0.75rem 0;
  font-weight: 600;
  gap: 1rem;
  align-items: center;
}

@media screen and (min-width: 320px) {
  .list__item {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    gap: 0.5rem;
  }

  .list__item > div:first-child,
  .list__item > div:last-child {
    grid-column: span 2;
  }
}

@media screen and (min-width: 576px) {
  .list__item {
    grid-template-columns: 1fr 1fr auto;
    grid-template-rows: auto 1fr;
  }

  .list__item > div:first-child {
    grid-column: 1;
  }
  .list__item > div:last-child {
    grid-column: span 3;
  }
}

@media screen and (min-width: 992px) {
  .list__item {
    grid-template-columns: 1fr 1fr 1fr auto;
    grid-template-rows: 1fr;
  }

  .list__item > div:last-child {
    grid-column: -1;
  }
}

.list__item + .list__item {
  border-top: 1px solid #e0e0e0;
}

.pos-sticky {
  position: sticky;
  top: 24px;
}

.link {
  color: var(--primary);
  text-decoration: none;
}

.link:hover {
  color: var(--secondary);
}

.fw-bold {
  font-weight: 700;
}

.fw-semibold {
  font-weight: 600;
}

.align-items-center {
  align-items: center;
}

.text-body {
  color: var(--body-color);
}

.lh-sm {
  line-height: 1.2;
}

.label {
  font-size: 14px;
  margin-bottom: 2px;
  display: inline-flex;
}

.field-container {
  position: relative;
}

.field {
  min-height: 48px;
  width: 100%;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 4px 16px;
  font-size: inherit;
  background-color: #eee;
}

.field:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--secondary);
}

/* Field with upload styling */
.field-with-upload {
  position: relative;
  display: flex;
  align-items: center;
}

.field-with-upload .field {
  flex: 1;
  padding-right: 3rem;
}

.upload-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.25rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-btn:hover {
  background-color: rgba(30, 74, 124, 0.1);
  color: var(--primary);
}

.upload-btn .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.upload-btn:active {
  transform: translateY(-50%) scale(0.95);
}

/* Upload actions styling */
.upload-actions {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.change-file-btn,
.remove-file-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 0.125rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.change-file-btn:hover {
  background-color: rgba(30, 74, 124, 0.1);
}

.remove-file-btn:hover {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.change-file-btn .icon,
.remove-file-btn .icon {
  width: 1rem;
  height: 1rem;
}

.field-container--upload {
  display: grid;
  grid-template-columns: 1fr auto auto;
}

.field-container--upload .field {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.field-container--upload .btn {
  border-radius: 0;
  text-transform: none;
  padding-left: 1rem;
  padding-left: 1rem;
}

.field-container--upload .btn:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.steps::after {
  content: "";
  position: absolute;
  top: 0;
  right: 12px;
  width: 2px;
  height: 100%;
  background-color: #bfc7d0;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.5rem;
  width: 100%;
  align-items: center;
  color: var(--primary);
}

.indicator {
  height: 24px;
  width: 24px;
  background-color: white;
  border-radius: 100%;
  position: relative;
  z-index: 1;
  border: 2px solid #bfc7d0;
}

.indicator:after {
  content: "";
  height: 8px;
  width: 8px;
  background-color: #fff;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
}

.step--current {
  color: #ffad1e;
}

.step--current .indicator {
  border-color: #ffad1e;
  background-color: #ffad1e;
}

.step--current .indicator:after {
  opacity: 1;
  visibility: visible;
}

.step--done {
  color: var(--secondary);
}

.step--done .indicator {
  border-color: var(--secondary);
  background-color: var(--secondary);
}

.step--done .indicator:after {
  opacity: 1;
  visibility: visible;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
  background-color: transparent;
  height: 20px;
  width: 20px;
}

.bt {
  border-top: 1px solid #ddd;
}

.pt-6 {
  padding-top: 1.5rem;
}

.agent-code {
  padding: 1rem 1.5rem;
  text-transform: uppercase;
  background: #cad8f6;
  border-radius: 0.5rem;
  color: var(--primary);
  font-weight: 600;
}

.timeslot-property-image {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 282/168;
  border-radius: 0.5rem;
}


img,
picture {
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}

.section--register {
    min-height: calc(100vh - 96px);
    background-image: url(../images/jumbotron-3.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* wrapper */
.iti {
    display: block !important;
}

/* Dropdown container */
.select2-dropdown {
    font-size: 12px;
    color: black;
}

/* Make Select2 look like .field */
.select2-container--default .select2-selection--single {
    min-height: 48px;
    width: 100%;
    border: 1px solid #eee !important;
    border-radius: 8px !important;
    padding: 4px 16px;
    font-size: inherit;
    background-color: #eee !important;
}

/* Text inside the select */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 0 !important;
    padding-top: 5px !important;
    padding-right: 0;
    color: black !important; 
    font-family: Arial, sans-serif; 
}


/* Focus state */
.select2-container--default.select2-container--focus .select2-selection--single {
    outline: none;
    box-shadow: none;
    border-color: var(--secondary) !important; 
}

/* Arrow styling */
.select2-selection__arrow {
    height: 90% !important; 
    right: 12px;
}

/* Clear / X button */
.select2-selection__clear {
    height: 83% !important;
    color: #888;
}

/* Hover / active option */
.select2-container--default .select2-results__option--highlighted {
    background-color: var(--secondary) !important;
    color: #fff !important;
}

/* Dropdown options */
.select2-container--default .select2-results__option {
    font-family: Arial, sans-serif;
    font-size: 12px; /* smaller text */
    padding: 6px 10px; /* reduce row height */
    line-height: .8; /* tighter vertical spacing */
}

.select2-selection__placeholder {
    color: black !important;
}
.error-message {
    background: #fffaf0;
    border: 1px dashed #f59e0b;
    color: #92400e;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

    .error-message a {
        color: #1d4ed8;
        font-weight: 600;
        text-decoration: underline;
    }

.account-hint {
    font-size: 13px;
    color: #6b7280; /* neutral gray */
    margin-top: 10px;
}

.account-link {
    color: #f59e0b; /* same orange family as warning */
    font-weight: 600;
    text-decoration: none;
}

    .account-link:hover {
        text-decoration: underline;
        color: #d97706;
    }
