:root {

  --forest: #123f33;

  --forest-dark: #0b2f26;

  --orange: #e96500;

  --cream: #f8f3e9;

  --white: #ffffff;

  --text: #26332e;

  --soft-text: #68736e;

  --border: rgba(18, 63, 51, 0.14);

  --shadow: 0 20px 50px rgba(18, 63, 51, 0.12);

}

* {

  box-sizing: border-box;

}

html {

  scroll-behavior: smooth;

}

body {

  margin: 0;

  color: var(--text);

  background:

    radial-gradient(

      circle at top left,

      rgba(233, 101, 0, 0.1),

      transparent 32%

    ),

    linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);

  font-family: Arial, Helvetica, sans-serif;

}

.traveller-header {

  display: flex;

  align-items: center;

  justify-content: space-between;

  min-height: 82px;

  padding: 14px clamp(20px, 5vw, 72px);

  background: rgba(255, 255, 255, 0.94);

  border-bottom: 1px solid var(--border);

}

.traveller-brand img {

  display: block;

  width: clamp(170px, 24vw, 250px);

  height: auto;

}

.traveller-login {

  padding: 12px 20px;

  color: var(--forest);

  background: var(--white);

  border: 1px solid var(--border);

  border-radius: 999px;

  font-weight: 800;

  text-decoration: none;

}

.traveller-main {

  width: min(1180px, calc(100% - 34px));

  margin: 0 auto;

  padding: 74px 0 90px;

}

.traveller-intro {

  max-width: 820px;

  margin: 0 auto 58px;

  text-align: center;

}

.traveller-kicker {

  margin: 0 0 16px;

  color: var(--orange);

  font-size: 0.78rem;

  font-weight: 900;

  letter-spacing: 0.18em;

}

.traveller-intro h1 {

  margin: 0 0 20px;

  color: var(--forest);

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(2.5rem, 7vw, 4.8rem);

  line-height: 1.02;

}

.traveller-intro > p:not(.traveller-kicker) {

  max-width: 700px;

  margin: 0 auto;

  color: var(--soft-text);

  font-size: clamp(1.05rem, 2vw, 1.25rem);

  line-height: 1.75;

}

.traveller-actions {

  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 14px;

  margin-top: 32px;

}

.traveller-button {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-height: 54px;

  padding: 15px 25px;

  border-radius: 14px;

  font-weight: 900;

  text-decoration: none;

  transition:

    transform 0.2s ease,

    box-shadow 0.2s ease;

}

.traveller-button:hover {

  transform: translateY(-2px);

}

.traveller-button-primary {

  color: var(--white);

  background: var(--orange);

  box-shadow: 0 14px 28px rgba(233, 101, 0, 0.22);

}

.traveller-button-secondary {

  color: var(--forest);

  background: var(--white);

  border: 1px solid var(--border);

}

.traveller-steps {

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 20px;

}

.traveller-steps article {

  min-height: 250px;

  padding: 30px 24px;

  background: rgba(255, 255, 255, 0.96);

  border: 1px solid var(--border);

  border-radius: 24px;

  box-shadow: var(--shadow);

}

.traveller-steps span {

  display: grid;

  place-items: center;

  width: 54px;

  height: 54px;

  margin-bottom: 22px;

  color: var(--white);

  background: var(--forest);

  border-radius: 50%;

  font-size: 0.92rem;

  font-weight: 900;

}

.traveller-steps h2 {

  margin: 0 0 13px;

  color: var(--forest);

  font-size: 1.2rem;

}

.traveller-steps p {

  margin: 0;

  color: var(--soft-text);

  line-height: 1.65;

}

@media (max-width: 900px) {

  .traveller-steps {

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }

}

@media (max-width: 620px) {

  .traveller-header {

    min-height: 70px;

    padding: 12px 18px;

  }

  .traveller-brand img {

    width: 155px;

  }

  .traveller-login {

    padding: 10px 15px;

    font-size: 0.9rem;

  }

  .traveller-main {

    width: min(100% - 28px, 1180px);

    padding: 54px 0 68px;

  }

  .traveller-actions {

    flex-direction: column;

  }

  .traveller-button {

    width: 100%;

  }

  .traveller-steps {

    grid-template-columns: 1fr;

  }

  .traveller-steps article {

    min-height: auto;

  }

}
.profile-photo-frame {

  position: relative;

  width: 220px;

  height: 275px;

  margin: 18px auto;

}

.profile-photo-frame[hidden] {

  display: none;

}
.profile-photo-crop {

  position: absolute;

  top: 10px;

left: 18px;

  width: 184px;

  height: 184px;

  border-radius: 50%;

  overflow: hidden;

}
#travelerProfilePhotoPreview {
touch-action: none;
  position: absolute;

  top: 0;

left: 0;

width: 184px;

height: 184px;

  object-fit: cover;

  border-radius: 50%;

}

.profile-frame-overlay {

  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  object-fit: contain;

  pointer-events: none;

}
/* =========================================================

   PROFILE SETTINGS MENU

========================================================= */

.profile-settings-menu {

  display: grid;

  gap: 14px;

  margin: 26px 0 30px;

}

.profile-settings-item {

  width: 100%;

  display: grid;

  grid-template-columns: 54px minmax(0, 1fr);

  gap: 14px;

  align-items: center;

  padding: 16px;

  border: 1.5px solid rgba(243, 107, 22, 0.62);

  border-radius: 20px;

  background:

    linear-gradient(

      145deg,

      #fffdf8 0%,

      #f8efe3 100%

    );

  color: #173c31;

  text-align: left;

  text-decoration: none;

  box-shadow:

    0 10px 24px rgba(13, 59, 47, 0.08);

  font: inherit;

  cursor: pointer;

}

.profile-settings-item > span {

  width: 46px;

  height: 46px;

  display: grid;

  place-items: center;

  border: 2px solid rgba(215, 173, 77, 0.72);

  border-radius: 50%;

  background: #fffaf2;

  font-size: 23px;

  box-shadow:

    0 4px 12px rgba(13, 59, 47, 0.08);

}

.profile-settings-item strong {

  display: block;

  margin-bottom: 3px;

  color: #0d3b2f;

  font-size: 17px;

  font-weight: 800;

}

.profile-settings-item small {

  display: block;

  color: #718079;

  font-size: 13px;

  line-height: 1.35;

}

.profile-settings-logout {

  border-color: rgba(180, 63, 38, 0.36);

  background:

    linear-gradient(

      145deg,

      #fffaf7 0%,

      #f8e8e3 100%

    );

}
/* =========================================================

   PREMIUM TRAVELLER PROFILE FORM

========================================================= */

#travellerProfileForm {

  display: grid;

  gap: 18px;

  margin-top: 28px;

  padding: 22px 18px 26px;

  border: 1px solid rgba(215, 173, 77, 0.34);

  border-radius: 28px;

  background:

    linear-gradient(

      180deg,

      #fffaf2 0%,

      #f8f1e7 100%

    );

  box-shadow:

    0 18px 40px rgba(13, 59, 47, 0.08);

}

#travellerProfileForm label {

  display: grid;

  gap: 8px;

  margin: 0;

  color: #0d3b2f;

  font-size: 16px;

  font-weight: 800;

}

#travellerProfileForm input,

#travellerProfileForm select,

#travellerProfileForm textarea {

  width: 100%;

  box-sizing: border-box;

  border: 1.5px solid rgba(13, 59, 47, 0.18);

  border-radius: 18px;

  background: #fffdf9;

  color: #173c31;

  font: inherit;

  box-shadow:

    inset 0 1px 0 rgba(255,255,255,0.8),

    0 5px 14px rgba(13, 59, 47, 0.04);

}

#travellerProfileForm input,

#travellerProfileForm select {

  min-height: 58px;

  padding: 12px 15px;

}

#travellerProfileForm textarea {

  min-height: 140px;

  padding: 16px;

  resize: vertical;

}

#travellerProfileForm input:focus,

#travellerProfileForm select:focus,

#travellerProfileForm textarea:focus {

  outline: none;

  border-color: #f36b16;

  box-shadow:

    0 0 0 4px rgba(243, 107, 22, 0.10);

}

#travellerProfileForm input[type="file"] {

  padding: 12px;

  background:

    linear-gradient(

      145deg,

      #fffdf8,

      #f7efe4

    );

}

#travellerProfileForm input[type="range"] {

  min-height: auto;

  padding: 0;

  accent-color: #f36b16;

}

#travellerProfileForm button[type="submit"] {

  min-height: 60px;

  margin-top: 8px;

  border: 0;

  border-radius: 18px;

  background:

    linear-gradient(

      145deg,

      #f47a24,

      #df5e13

    );

  color: #ffffff;

  font-size: 18px;

  font-weight: 900;

  box-shadow:

    0 12px 24px rgba(243, 107, 22, 0.24);

}
/* =========================================================

   PREMIUM PROFILE FORM SECTIONS

========================================================= */

.profile-form-section {

  position: relative;

  display: grid;

  gap: 16px;

  padding: 20px 16px 18px;

  margin-bottom: 18px;

  border: 1px solid rgba(215, 173, 77, 0.28);

  border-radius: 24px;

  background:

    linear-gradient(

      145deg,

      rgba(255, 255, 255, 0.98),

      rgba(248, 241, 230, 0.96)

    );

  box-shadow:

    0 12px 28px rgba(13, 59, 47, 0.07);

}

.profile-form-section h2 {

  margin: 0 0 4px;

  color: #0d3b2f;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 26px;

  line-height: 1;

  padding-bottom: 10px;

  border-bottom: 2px solid rgba(243, 107, 22, 0.28);

}

.profile-form-section:nth-of-type(1) h2::before {

  content: "👤 ";

}

.profile-form-section:nth-of-type(2) h2::before {

  content: "🚐 ";

}

.profile-form-section:nth-of-type(3) h2::before {

  content: "📍 ";

}
/* =========================================================

   PROFILE SAVE AREA

========================================================= */

#travellerProfileForm > .btn.btn-accent.full-button {

  margin-top: 8px;

  min-height: 62px;

  border-radius: 20px;

  background:

    linear-gradient(

      145deg,

      #ff7a1f 0%,

      #e45a0f 100%

    );

  box-shadow:

    0 14px 28px rgba(243, 107, 22, 0.26),

    inset 0 1px 0 rgba(255,255,255,0.18);

  font-size: 18px;

  font-weight: 900;

  letter-spacing: 0.01em;

}

#travellerProfileMessage {

  margin: 4px 0 0;

  padding: 14px 16px;

  border-radius: 16px;

  background:

    rgba(13, 59, 47, 0.06);

  color: #5f7068;

  font-size: 14px;

  line-height: 1.4;

}
/* =========================================================

   PROFILE EMOJI PICKER

========================================================= */

.profile-emoji-picker {

  display: grid;

  grid-template-columns: repeat(5, minmax(0, 1fr));

  gap: 10px;

  margin: -2px 0 18px;

  padding: 16px;

  border: 1px solid rgba(215, 173, 77, 0.28);

  border-radius: 22px;

  background:

    linear-gradient(

      145deg,

      rgba(255, 253, 248, 0.98),

      rgba(248, 241, 230, 0.98)

    );

  box-shadow:

    0 12px 26px rgba(13, 59, 47, 0.08);

}

.profile-emoji-picker[hidden] {

  display: none !important;

}

.profile-emoji-picker button {

  width: 100%;

  min-width: 0;

  aspect-ratio: 1;

  display: grid;

  place-items: center;

  padding: 0;

  border: 1.5px solid rgba(215, 173, 77, 0.52);

  border-radius: 50%;

  background:

    radial-gradient(

      circle at 35% 28%,

      #ffffff 0%,

      #fff8eb 58%,

      #eadab8 100%

    );

  font-size: 25px;

  box-shadow:

    0 5px 12px rgba(13, 59, 47, 0.08);

  cursor: pointer;

}

.profile-emoji-picker button:active {

  transform: scale(0.94);

}
.profile-emoji-picker button.selected {

  border-color: #0d3b2f;

  box-shadow:

    0 0 0 3px rgba(13, 59, 47, 0.18),

    0 0 0 6px rgba(215, 173, 77, 0.22),

    0 10px 22px rgba(13, 59, 47, 0.16);

  background:

    radial-gradient(

      circle at 35% 28%,

      #ffffff 0%,

      #fff7df 52%,

      #e6d09c 100%

    );

  transform: scale(1.05);

}