/* ============================================
   CSS VARIABLES - Global Color Scheme
   Used across all pages
   ============================================ */
:root {
  --global-text-color: #000;
  --global-color-green: #103cb4;
  --global-color-strong-orange: #ef7d07;
  --global-color-strong-orange-2: #f08a34;
  --global-color-orange: #dc802a;
  --global-color-light-orange: #fcc12b;
  --global-color-gray: #aea7a4;
  --global-color-yellow: #ffde59;
  --global-color-strong-gray: #4b4b4b;
}

/* ============================================
   FONT FACES - Custom Fonts
   Used across all pages
   ============================================ */
@font-face {
  font-family: "29lt";
  src: url("../fonts/29lt-azer-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cabin";
  src: url("../fonts/Cabin-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cabin";
  src: url("../fonts/Cabin-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Heading Now";
  src: url("../fonts/HeadingNowTrial-26Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Heading Now";
  src: url("../fonts/HeadingNowTrial-24Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Heading Now 71-78";
  src: url("../fonts/HeadingNow_71-78.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Heading Now Heavy";
  src: url("../fonts/HeadingNowTrial-58Heavy.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "League Spartan";
  src: url("../fonts/LeagueSpartan-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Paytone One";
  src: url("../fonts/PaytoneOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Blacker Sans Text";
  src: url("../fonts/BlackerSansText-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   GLOBAL STYLES - Base Styles
   Used across all pages
   ============================================ */
body {
  color: var(--global-text-color);
  overflow-x: hidden;
  max-width: 100%;
}

/* ============================================
   HOMEPAGE - Scroll Snap Effect
   Used in: index.php only
   ============================================ */
html.scroll-snap-enabled {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

/* body.scroll-snap-page - No additional styles needed */

h2 {
  font-family: "League Spartan", sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  @media (max-width: 767px) {
    font-size: 2rem;
  }
  @media (min-width: 768px) and (max-width: 991px) {
    font-size: 3rem;
  }
  @media (min-width: 992px) {
    font-size: 99px;
    letter-spacing: -5px;
  }
}

h3 {
  @media (min-width: 1200px) {
    font-size: 2rem;
  }
}

.btn-default {
  border-radius: 30px;
  text-transform: uppercase;
  font-family: "Cabin", sans-serif;
  font-style: italic;
  font-size: 24px;
  padding: 5px 40px;
  color: var(--global-color-green);
  border: 1px solid var(--global-color-green);
  background: var(--global-color-strong-orange);
  &:hover,
  &:active {
    color: inherit !important;
    background-color: inherit !important;
    border-color: inherit !important;
  }
}

.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--global-color-green);
  width: 40px;
  height: 40px;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 22px;
}

/* ============================================
   HEADER & NAVIGATION - Top Navigation Bar
   Used in: index.php, dashboard.php, and other pages
   ============================================ */
.top-nav-bar {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #e9ecef;
  padding: 0;
  margin-bottom: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  min-height: 53px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 20px;
  @media (max-width: 991px) {
    justify-content: center;
    padding-right: 0;
    min-height: 47px;
  }
  .top-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    height: 100%;
    @media (max-width: 991px) {
      justify-content: center;
    }
    li {
      a {
        font-family: "29lt", sans-serif;
        font-size: 20px;
        font-weight: normal;
        color: #6c757d;
        text-decoration: none;
        text-transform: uppercase;
        padding: 7px 13px;
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
        height: 100%;
        &:hover {
          color: var(--global-text-color);
          text-decoration: none;
        }
      }
    }
  }
}

/* ============================================
   HEADER - Main Site Header
   Used in: index.php and other main pages
   ============================================ */
header {
  position: relative;
  scroll-snap-align: start;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-size: 25px;
  margin-bottom: 20px;
  @media (min-width: 992px) {
    flex-direction: row;
    margin-bottom: 0;
    h1 {
      translate: 0 10px;
      position: relative;
      z-index: 2;
      margin-top: 0;
    }
  }
  h1 {
    margin-top: 20px;
    @media (min-width: 992px) {
      margin-top: 0;
    }
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    @media (max-width: 991px) {
      flex-direction: column;
      gap: 15px;
      margin-top: 20px;
    }
  }
  .nav {
    gap: 5px 50px;
    a {
      font-family: "Montserrat", sans-serif !important;
      color: var(--global-text-color);
      &:hover {
        color: var(--global-text-color);
      }
      &.active {
        font-weight: 400 !important;
      }
    }
  }
  .language-selector {
    .dropdown {
      .btn-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 5px 10px;
        text-decoration: none;
        color: var(--global-text-color);
        font-family: "29lt", sans-serif;
        font-size: 16px;
        border: none;
        box-shadow: none;
        background: transparent;
        line-height: 1.5;
        &:hover,
        &:focus,
        &:active,
        &.show {
          color: var(--global-text-color);
          text-decoration: none;
          background: transparent;
          border: none;
          box-shadow: none;
        }
        .flag-icon {
          width: 20px;
          height: 15px;
          display: inline-block;
          vertical-align: middle;
          object-fit: contain;
        }
      }
      .dropdown-menu {
        min-width: 120px;
        padding: 0.5rem 0;
        margin-top: 0.125rem;
        .dropdown-item {
          display: flex;
          align-items: center;
          gap: 8px;
          padding: 0.5rem 1rem;
          font-family: "29lt", sans-serif;
          color: var(--global-text-color);
          white-space: nowrap;
          .flag-icon {
            width: 20px;
            height: 15px;
            display: inline-block;
            vertical-align: middle;
            object-fit: contain;
          }
          &:hover,
          &:focus {
            background-color: #f8f9fa;
            color: var(--global-text-color);
          }
        }
      }
    }
  }
}

/* ============================================
   HOMEPAGE - Heading Box Section
   Used in: index.php
   ============================================ */
.heading-box {
  --internal-bg-unlock-btn: #feb14c;

  font-family: "Blacker Sans Text", sans-serif;
  display: flex;
  flex-direction: column;
  margin-top: 100px;
  margin-bottom: 160px;
  font-size: 40px;
  @media (max-width: 767px) {
    margin-top: 40px;
    margin-bottom: 80px;
    font-size: 18px;
  }
  .content-box {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    .heading-top-row.lang-vi {
      justify-content: center !important;
      align-items: flex-end !important;
      gap: 0 !important;
      margin-left: 110px !important;
      margin-right: 0 !important;
      .heading-left-part {
        align-items: flex-end !important;
      }
      .heading-arrow-first {
        margin-right: 0 !important;
        margin-left: 0 !important;
        margin-top: 8px !important;
      }
      .heading-right-part {
        margin-left: 0 !important;
        justify-content: flex-start;
        flex: 1;
        align-items: flex-end !important;
      }
      .heading-right-part em {
        margin-left: 0 !important;
        padding-left: 0 !important;
      }
    }
    .heading-bottom-row.lang-vi .heading-m-icon {
      right: -90px !important;
    }
    > div {
      @media (max-width: 767px) {
        gap: 4px !important;
        margin-bottom: 12px !important;
      }
      > div {
        @media (max-width: 767px) {
          img[alt="arrow"] {
            height: 30px !important;
            margin-top: 4px !important;
            margin-right: 1px !important;
          }
        }
      }
      img[alt="hello"] {
        @media (max-width: 767px) {
          height: 45px !important;
          margin-left: 8px !important;
        }
      }
      > div:last-child {
        @media (max-width: 767px) {
          gap: 8px !important;
          padding-left: 1.5rem !important;
          img[alt="comma"] {
            height: 30px !important;
            top: -12px !important;
            left: -3px !important;
          }
          img[alt="M icon"] {
            height: 45px !important;
            bottom: -20px !important;
            right: -8px !important;
          }
        }
      }
    }
    em {
      display: block;
      font-style: normal;
      color: var(--global-color-green);
      @media (max-width: 767px) {
        font-size: 0.9em;
      }
    }
    h2 {
      font-family: "Blacker Sans Text", sans-serif;
      font-size: 2em;
      letter-spacing: -2px;
      color: var(--global-color-green);
      @media (max-width: 767px) {
        font-size: 1.6em;
        letter-spacing: -1px;
      }
    }
    a {
      font-family: "Montserrat";
      font-weight: 700;
      font-size: 1em;
      letter-spacing: 2px;
      border-radius: 40px;
      padding: 15px 60px;
      line-height: 1.2;
      margin-top: 60px;
      color: var(--global-color-green);
      margin-bottom: 40px;
      @media (max-width: 767px) {
        font-size: 0.8em;
        padding: 12px 40px;
        margin-top: 40px;
        margin-bottom: 30px;
      }
      background: var(--internal-bg-unlock-btn);
      @media (max-width: 767px) {
        font-size: 0.55em;
        padding: 6px 30px;
        margin-top: 8px;
      }
    }
  }
}

/* .about-us-box {
  font-family: "Montserrat", sans-serif !important;
  font-size: 40px;
  padding-bottom: 20px;
  @media (max-width: 767px) {
    font-size: 24px;
    padding-bottom: 40px;
  }
  * {
    font-family: "Montserrat", sans-serif !important;
  }
  .about-us-arrow {
    @media (max-width: 991px) {
      bottom: -100px !important;
      right: -5px !important;
      height: 50px !important;
    }
    @media (max-width: 767px) {
      bottom: -80px !important;
      right: 0 !important;
      height: 40px !important;
    }
  }
  p {
    font-family: "Montserrat", sans-serif !important;
    font-size: 1em;
    padding: 0 80px;
    margin-top: 150px;
    line-height: 1.5 !important;
    word-spacing: normal !important;
    letter-spacing: normal !important;
    text-align: left !important;
    white-space: normal !important;
    word-break: keep-all !important;
    text-wrap: pretty !important;
    hyphens: manual !important;
    @media (max-width: 991px) {
      padding: 0 20px;
      margin-top: 60px;
    }
    @media (max-width: 767px) {
      padding: 0 15px;
      margin-top: 40px;
    }
    strong {
      color: var(--global-color-strong-orange);
      margin: 0 !important;
      padding: 0 !important;
      display: inline !important;
      &:nth-child(2) {
        color: var(--global-color-green);
      }
    }
    
    &::before {
      translate: -50px 0;
      background: url("../media/double-mark.png") no-repeat;
    }
    &::after {
      margin-left: auto;
      background: url("../media/double-mark-2.png") no-repeat;
    }
    &::before,
    &::after {
      content: "";
      display: block;
      width: 50px;
      height: 42px;
      background-size: 50px 42px;
    }
  }
  h2 {
    margin-top: 40px;
    color: var(--global-color-green);
    font-size: 2rem;
    @media (min-width: 768px) and (max-width: 991px) {
      font-size: 4rem;
    }
    @media (min-width: 992px) {
      font-size: 130px;
    }
    @media (max-width: 767px) {
      font-size: 1.8rem;
      margin-top: 30px;
    }
    span {
      color: #fff;
      -webkit-text-stroke: 4px var(--global-color-green);
      @media (max-width: 767px) {
        -webkit-text-stroke: 2px var(--global-color-green);
      }
    }
  }
} */

/* ============================================
   HOMEPAGE - About Us Section
   Used in: index.php
   ============================================ */
.about-us-box {
  font-family: "Montserrat", sans-serif !important;
  scroll-snap-align: start;
  scroll-margin-top: 0;
  font-size: 40px;
  padding-bottom: 200px;
  @media (max-width: 991px) {
    padding-bottom: 150px;
  }
  @media (max-width: 767px) {
    font-size: 24px;
    padding-bottom: 120px;
  }
  * {
    font-family: "Montserrat", sans-serif !important;
  }
  .about-us-arrow {
    @media (max-width: 991px) {
      bottom: -100px !important;
      right: -5px !important;
      height: 50px !important;
    }
    @media (max-width: 767px) {
      bottom: -80px !important;
      right: 0 !important;
      height: 40px !important;
    }
  }
  p {
    font-family: "Montserrat", sans-serif !important;
    font-size: 1em;
    padding: 0 80px;
    margin-top: 150px;
    @media (max-width: 991px) {
      padding: 0 20px;
      margin-top: 60px;
    }
    @media (max-width: 767px) {
      padding: 0 15px;
      margin-top: 40px;
    }
    strong {
      color: var(--global-color-strong-orange);
      &:nth-child(2) {
        color: var(--global-color-green);
      }
    }

    &::before {
      translate: -50px 0;
      background: url("../media/double-mark.png") no-repeat;
    }
    &::after {
      margin-left: auto;
      background: url("../media/double-mark-2.png") no-repeat;
    }
    &::before,
    &::after {
      content: "";
      display: block;
      width: 50px;
      height: 42px;
      background-size: 50px 42px;
    }
  }
  h2 {
    margin-top: 40px;
    color: var(--global-color-green);
    font-size: 2rem;
    @media (min-width: 768px) and (max-width: 991px) {
      font-size: 4rem;
    }
    @media (min-width: 992px) {
      font-size: 130px;
    }
    @media (max-width: 767px) {
      font-size: 1.8rem;
      margin-top: 30px;
    }
    span {
      color: #fff;
      -webkit-text-stroke: 4px var(--global-color-green);
      @media (max-width: 767px) {
        -webkit-text-stroke: 2px var(--global-color-green);
      }
    }
  }
}

/* ============================================
   HOMEPAGE - Steps Section
   Used in: index.php
   ============================================ */
.steps-box {
  padding: 80px 20px 60px 20px;
  scroll-snap-align: start;
  background: #ffffff;
  @media (max-width: 767px) {
    padding: 120px 20px 60px 20px;
  }
}

.steps-box h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: white;
  -webkit-text-stroke: 0.5px #ef7d07;
  text-stroke: 0.5px #ef7d07;
  -webkit-text-fill-color: white;
  margin-top: 40px;
  font-family: "Paytone One", sans-serif;
  letter-spacing: 1px;
  line-height: 1.2;
  white-space: nowrap;
  @media (min-width: 992px) {
    font-size: 60px;
    -webkit-text-stroke: 0.5px #ef7d07;
    text-stroke: 0.5px #ef7d07;
    letter-spacing: 1.5px;
    line-height: 1.2;
  }
  @media (min-width: 768px) and (max-width: 991px) {
    font-size: 28px;
    letter-spacing: 1px;
    line-height: 1.2;
  }
  @media (max-width: 767px) {
    font-size: 18px;
    -webkit-text-stroke: 0.5px #ef7d07;
    text-stroke: 0.5px #ef7d07;
    letter-spacing: 0.5px;
    line-height: 1.2;
  }
}

.steps-box h2 span {
  color: var(--global-color-orange);
  font-family: "League Spartan", sans-serif;
  -webkit-text-stroke: 0;
  text-stroke: 0;
  -webkit-text-fill-color: var(--global-color-orange);
  letter-spacing: 2px;
  @media (min-width: 992px) {
    letter-spacing: 3px;
  }
  @media (max-width: 767px) {
    letter-spacing: 1px;
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
  justify-items: center;
}

.step-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  border: 4px solid;
  padding: 20px 15px;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-plus {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.step-plus:hover {
  transform: scale(1.1);
}

.step-card h4 {
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step-card h4 span {
  display: block;
}

.step-card-orange {
  border-color: var(--global-color-strong-orange);
  color: var(--global-color-strong-orange);
}

.step-card-orange .step-plus {
  background: var(--global-color-strong-orange);
  color: white;
}

.step-card-blue {
  border-color: var(--global-color-green);
  color: var(--global-color-green);
}

.step-card-blue .step-plus {
  background: var(--global-color-green);
  color: white;
}

.step-card-yellow {
  border-color: var(--global-color-light-orange);
  color: var(--global-color-light-orange);
}

.step-card-yellow .step-plus {
  background: var(--global-color-light-orange);
  color: white;
}

.step-card-gray {
  border-color: var(--global-color-gray);
  color: var(--global-color-gray);
}

.step-card-gray .step-plus {
  background: var(--global-color-gray);
  color: white;
}

.step-card-black {
  border-color: var(--global-color-strong-gray);
  color: var(--global-color-strong-gray);
}

.step-card-black .step-plus {
  background: var(--global-color-strong-gray);
  color: white;
}

.step-offset {
  grid-column: 1 / 2;
}

.step-card:nth-child(4) {
  grid-row: 2;
  grid-column: 1 / 3;
  justify-self: center;
  margin-left: 0;
}

.step-card:nth-child(5) {
  grid-row: 2;
  grid-column: 2 / 4;
  justify-self: center;
}

@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .step-card:nth-child(4) {
    grid-column: auto;
  }

  .step-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-card {
    width: 100%;
    max-width: 320px;
    height: 320px;
    padding: 20px 15px;
    grid-row: auto !important;
    grid-column: auto !important;
    justify-self: center;
  }

  .step-card:nth-child(4),
  .step-card:nth-child(5) {
    grid-row: auto !important;
    grid-column: auto !important;
    margin-left: 0;
  }

  .step-card h4 {
    font-size: 1.4rem;
  }
}

/* ============================================
   HOMEPAGE - Coffee Box Section
   Used in: index.php
   ============================================ */
.coffee-box {
  padding-top: 100px;
  scroll-snap-align: start;
  padding-bottom: 100px;
  @media (max-width: 767px) {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    @media (max-width: 767px) {
      margin-bottom: 30px;
    }
  }
  h2 {
    color: var(--global-color-orange);
    span {
      color: #fff;
      -webkit-text-stroke: 2px var(--global-color-orange);
    }
  }
  h3 {
    margin-top: 15px;
    font-family: "Paytone One", sans-serif;
    color: var(--global-color-orange);
    text-transform: uppercase;
    text-align: left;
    @media (max-width: 767px) {
      text-align: center;
      font-size: 1rem;
    }
    span {
      color: var(--global-color-green);
    }
  }
}

/* ============================================
   HOMEPAGE - Dinner Box Section
   Used in: index.php
   ============================================ */
.dinner-box {
  padding-top: 100px;
  scroll-snap-align: start;
  padding-bottom: 100px;
  @media (max-width: 767px) {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    @media (max-width: 767px) {
      margin-bottom: 30px;
    }
  }
  h2 {
    color: var(--global-color-green);
    span {
      color: #fff;
      -webkit-text-stroke: 2px var(--global-color-green);
    }
  }
  h3 {
    margin-top: 15px;
    font-family: "Paytone One", sans-serif;
    color: var(--global-color-green);
    text-transform: uppercase;
    text-align: left;
    @media (min-width: 1400px) {
      padding: 0 30px 0 0;
    }
    @media (max-width: 767px) {
      text-align: center;
      font-size: 1rem;
    }
    span {
      color: var(--global-color-orange);
    }
  }
  .btn-default {
    border-color: var(--global-color-yellow);
    color: var(--global-color-yellow);
    background: var(--global-color-green);
  }
}

/* ============================================
   BLOG PAGES - Blog Hero Image
   Used in: blog pages
   ============================================ */
.blog-hero-image {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-top: 30px;
  @media (min-width: 992px) {
    padding-top: 10px;
  }
  img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    @media (max-width: 991px) {
      max-height: 300px;
    }
  }
}

.blog-page-wrapper {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  @media (max-width: 991px) {
    padding-left: 15px;
    padding-right: 15px;
  }
  .blog-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }
}

/* ============================================
   BLOG PAGES - Blog Content Box
   Used in: blog pages
   ============================================ */
.blog-box {
  padding-bottom: 80px;
  padding-top: 40px;
  font-size: 14px;
  .row {
    justify-content: center;
  }
  .blog-content-row {
    align-items: stretch;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: 15px;
    padding-right: 15px;
    @media (max-width: 991px) {
      align-items: center;
      width: 100%;
      max-width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
    .col-12.col-lg-6 {
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }
  .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-right: 20px;
    width: 100%;
    @media (max-width: 991px) {
      align-items: center;
      text-align: center;
      padding-right: 0;
      margin-bottom: 30px;
    }
  }
  .blog-image-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    height: 100%;
    padding: 0;
    @media (max-width: 991px) {
      justify-content: center;
      align-items: flex-start;
    }
  }
  .blog-content-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    @media (min-width: 992px) {
      width: 100%;
      height: auto;
      min-height: 467px;
      max-height: none;
      object-fit: contain;
      object-position: center;
    }
    @media (max-width: 991px) {
      height: auto;
      max-height: 400px;
      object-fit: contain;
    }
  }
  p {
    font-family: "Cabin", sans-serif;
    font-style: italic;
    font-size: 16px;
    margin-top: 30px;
  }
  h2 {
    font-family: "Heading Now Heavy", sans-serif;
    font-weight: normal;
    letter-spacing: 1px;
    font-stretch: 10%;
    color: #ef7d07;
    text-align: center;
    font-size: 3.5rem;
    @media (max-width: 991px) {
      text-align: center;
      font-size: 2rem;
    }
    @media (max-width: 767px) {
      font-size: 1.5rem;
      letter-spacing: 0.5px;
      font-stretch: 10%;
    }
    span {
      color: #fff;
      -webkit-text-stroke: 2px var(--global-color-orange);
    }
  }
  .btn-default {
    margin-top: 30px;
    border-color: var(--global-color-yellow);
    color: var(--global-color-yellow);
    background: var(--global-color-green);
  }
}

/* ============================================
   BLOG PAGES - Latest Stories Box
   Used in: blog pages
   ============================================ */
.lastest-stories-box {
  padding-top: 60px;
  padding-bottom: 60px;
  margin-bottom: 0;
  margin-left: -20px;
  margin-right: -20px;
  background: var(--global-color-strong-orange-2);
  width: calc(100% + 40px);
  @media (max-width: 991px) {
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
  }
  
  h2 {
    color: var(--global-color-green);
    margin-bottom: 40px;
    @media (max-width: 767px) {
      font-size: 1.5rem;
      margin-bottom: 30px;
    }
    span {
      color: var(--global-color-strong-orange-2);
      -webkit-text-stroke: 2px #fff;
    }
  }
  > .blog-container > .row:last-child {
    margin-top: 40px;
  }
  .story-item {
    font-family: "Montserrat", sans-serif !important;
    color: #fff;
    font-size: 12px;
    padding: 0 5px;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    @media (max-width: 767px) {
      padding: 0 10px;
      margin-bottom: 25px;
    }
    h3 {
      font-size: 14px;
      font-weight: 700;
      margin-top: 20px;
      color: #fff;
      @media (max-width: 767px) {
        font-size: 13px;
        margin-top: 15px;
      }
    }
    .story-text {
      text-align: justify;
      margin: 15px 0;
      color: #fff;
      flex-grow: 1;
      transition: all 0.3s ease;
      &.collapsed {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.5;
        max-height: 4.5em;
      }
      &.expanded {
        display: block;
        overflow: visible;
        -webkit-line-clamp: unset;
        max-height: none;
      }
    }
    img {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
    }
    .toggle-text {
      color: #fff;
      display: block;
      text-align: right;
      margin-top: auto;
      padding-top: 10px;
      text-decoration: none;
      cursor: pointer;
      &:hover {
        text-decoration: underline;
      }
    }
  }
  @media (min-width: 992px) {
    .story-item {
      margin-bottom: 0;
    }
  }
}

/* ============================================
   BLOG PAGES - Press Resources Box
   Used in: blog pages
   ============================================ */
.press-resources-box {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 0;
  background: var(--global-color-green);
  width: 100%;
  .blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    @media (max-width: 991px) {
      padding-left: 15px;
      padding-right: 15px;
    }
    .row {
      min-height: 300px;
      @media (min-width: 992px) {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
      }
      @media (max-width: 991px) {
        min-height: auto;
      }
    }
  }
  h2 {
    font-family: "League Spartan", sans-serif;
    font-weight: 700;
    font-size: 60px;
    color: var(--global-color-strong-orange);
    text-transform: uppercase;
    letter-spacing: -2px;
    margin: 0;
    @media (max-width: 991px) {
      font-size: 40px;
      text-align: center;
      margin-bottom: 40px;
    }
    @media (min-width: 992px) {
      font-size: 80px;
      display: flex;
      align-items: center;
      height: 100%;
    }
  }
  .press-resources-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .press-resource-item {
    padding: 20px 0;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    &:nth-child(2) {
      position: relative;
      padding-top: 20px;
      padding-bottom: 20px;
      &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 60%;
        height: 7px;
        background: rgba(255, 255, 255, 0.3);
      }
      &::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60%;
        height: 7px;
        background: rgba(255, 255, 255, 0.3);
      }
    }
    &:last-child {
      border-bottom: none;
    }
    @media (max-width: 767px) {
      flex-direction: column;
      align-items: center;
      gap: 15px;
      padding: 20px 0;
    }
    p {
      font-family: "Montserrat", sans-serif !important;
      color: #fff;
      font-size: 16px;
      margin: 0;
      flex: 1;
      padding-bottom: 0;
      border-bottom: none;
      display: flex;
      align-items: center;
      @media (min-width: 992px) {
        font-size: 18px;
      }
      @media (max-width: 767px) {
        font-size: 14px;
        padding-bottom: 0;
        border-bottom: none;
        text-align: center;
      }
    }
    &:nth-child(2) p {
      border-bottom: none;
      padding-bottom: 0;
    }
    &:last-child p {
      border-bottom: none;
      padding-bottom: 0;
    }
  }
  .btn-press-resource {
    display: inline-block;
    background: #fff;
    color: var(--global-color-strong-orange);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif !important;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: normal;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    box-sizing: border-box;
    word-wrap: break-word;
    @media (max-width: 767px) {
      padding: 8px 20px;
      font-size: 12px;
      width: 100%;
      max-width: 100%;
      text-align: center;
    }
    &:hover {
      background: var(--global-color-strong-orange);
      color: #fff;
      text-decoration: none;
      transform: translateY(-2px);
    }
    &.email-link {
      text-transform: none;
      font-weight: 700;
      white-space: nowrap;
    }
  }
}

/* ============================================
   BLOG PAGES - ONOFF Blog Box
   Used in: blog pages
   ============================================ */
.onoff-blog-box {
  padding-top: 60px;
  padding-bottom: 60px;
  margin-bottom: 80px;
  background: var(--global-color-yellow);
  width: 100%;
  @media (max-width: 767px) {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    @media (max-width: 991px) {
      padding-left: 15px;
      padding-right: 15px;
    }
    .row {
      display: flex;
      align-items: center;
      justify-content: center;
      @media (max-width: 991px) {
        flex-direction: column-reverse;
      }
    }
  }
  h2 {
    font-family: "League Spartan", sans-serif;
    font-weight: 700;
    font-size: 50px;
    color: var(--global-color-green);
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 40px;
    text-align: right;
    @media (max-width: 991px) {
      font-size: 35px;
      text-align: center;
      margin-top: 40px;
    }
    @media (max-width: 767px) {
      font-size: 28px;
      margin-top: 30px;
      margin-bottom: 30px;
    }
    @media (min-width: 992px) {
      font-size: 70px;
    }
  }
  .blog-image-wrapper {
    position: relative;
    margin-bottom: 20px;
    img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }
  }
  .btn-read-more {
    display: inline-block;
    background: var(--global-color-gray);
    color: #fff;
    padding: 8px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif !important;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 15px;
    transition: all 0.3s ease;
    &:hover {
      background: var(--global-color-strong-gray);
      color: #fff;
      text-decoration: none;
    }
  }
  .blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-end;
    @media (max-width: 991px) {
      justify-content: center;
    }
  }
  .blog-tag {
    display: inline-block;
    background: var(--global-color-strong-orange);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif !important;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
    @media (max-width: 767px) {
      font-size: 11px;
      padding: 8px 16px;
    }
    &:hover {
      background: var(--global-color-orange);
      color: #fff;
      text-decoration: none;
      transform: translateY(-2px);
    }
    @media (min-width: 992px) {
      font-size: 13px;
      padding: 12px 25px;
    }
  }
}

/* ============================================
   HOMEPAGE - Business Box Section
   Used in: index.php
   ============================================ */
.business-box {
  padding-top: 100px;
  scroll-snap-align: start;
  padding-bottom: 150px;
  @media (max-width: 767px) {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    @media (max-width: 767px) {
      margin-bottom: 30px;
    }
  }
  h2 {
    color: var(--global-color-light-orange);
    span {
      color: #fff;
      -webkit-text-stroke: 2px var(--global-color-light-orange);
    }
  }
  h3 {
    margin-top: 15px;
    font-family: "Paytone One", sans-serif;
    color: var(--global-color-light-orange);
    text-transform: uppercase;
    text-align: left;
    @media (max-width: 767px) {
      text-align: center;
      font-size: 1rem;
    }
    span {
      color: var(--global-color-green);
    }
  }
  .btn-default {
    border-color: var(--global-color-green);
    color: var(--global-color-green);
    background: var(--global-color-light-orange);
  }
}

/* ============================================
   HOMEPAGE - Slider/Testimonials Box
   Used in: index.php
   ============================================ */
.slider-box {
  background: var(--global-color-strong-orange);
  scroll-snap-align: start;
  padding-top: 40px;
  padding-bottom: 20px;
  font-size: 14px;
  @media (max-width: 767px) {
    padding-top: 30px;
    padding-bottom: 15px;
    font-size: 12px;
  }
  h2 {
    color: var(--global-color-strong-orange);
    -webkit-text-stroke: 1px #fff;
    margin-bottom: 30px;
    text-align: center;
    font-family: "Paytone One", sans-serif;
    font-size: 50px;
    letter-spacing: 2px;
    @media (max-width: 991px) {
      font-size: 40px;
      letter-spacing: 1.5px;
    }
    @media (max-width: 767px) {
      font-size: 1.5rem;
      margin-bottom: 20px;
      -webkit-text-stroke: 0.5px #fff;
      letter-spacing: 1px;
    }
    span {
      color: #fff;
      -webkit-text-stroke: 0px #fff;
      font-family: "League Spartan", sans-serif;
      font-size: 1.15em;
      letter-spacing: 2px;
      @media (max-width: 991px) {
        letter-spacing: 1.5px;
      }
      @media (max-width: 767px) {
        letter-spacing: 1px;
      }
    }
  }
  .carousel-item {
    height: 330px;
    @media (max-width: 767px) {
      height: auto;
      min-height: 300px;
    }
  }
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    @media (max-width: 991px) {
      gap: 20px;
      flex-wrap: wrap;
    }
    @media (max-width: 767px) {
      gap: 15px;
      flex-direction: column;
    }
    li {
      font-family: "Montserrat", sans-serif;
      width: 300px;
      height: 250px;
      border-radius: 20px;
      border: 2px solid #fff;
      padding: 20px 15px;
      @media (max-width: 991px) {
        width: 280px;
        height: 230px;
      }
      @media (max-width: 767px) {
        width: 100%;
        max-width: 300px;
        height: auto;
        min-height: 200px;
        padding: 15px 12px;
      }
      img {
        filter: brightness(0) saturate(100%) invert(11%) sepia(91%) saturate(4196%) hue-rotate(226deg) brightness(100%)
          contrast(90%);
      }
      blockquote {
        margin-top: 10px;
        @media (max-width: 767px) {
          margin-top: 8px;
        }
        p {
          color: #fff;
          font-size: 14px;
          font-style: italic;
          font-family: "Montserrat", sans-serif;
          display: -webkit-box;
          -webkit-line-clamp: 5;
          -webkit-box-orient: vertical;
          overflow: hidden;
          @media (max-width: 767px) {
            font-size: 12px;
            -webkit-line-clamp: 4;
          }
        }
      }
      p.name {
        font-size: 20px;
        font-weight: 700;
        font-style: italic;
        text-align: right;
        color: var(--global-color-green);
        font-family: "Montserrat", sans-serif;
        @media (max-width: 767px) {
          font-size: 16px;
          text-align: center;
          margin-top: 10px;
        }
      }
    }
  }
}

/* ============================================
   HOMEPAGE - Count Box Section
   Used in: index.php
   ============================================ */
.count-box {
  font-family: "League Spartan", sans-serif;
  scroll-snap-align: start;
  color: #fff;
  background: var(--global-color-green);
  padding-top: 60px;
  padding-bottom: 60px;
  font-size: 25px;
  @media (max-width: 767px) {
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 18px;
  }
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    @media (max-width: 767px) {
      gap: 20px;
      flex-direction: column;
    }
    li {
      text-align: center;
      @media (max-width: 767px) {
        width: 100%;
        max-width: 250px;
      }
      h3 {
        font-size: 3em;
        color: var(--global-color-light-orange);
        @media (max-width: 767px) {
          font-size: 2em;
        }
      }
      p {
        margin: 0;
        @media (max-width: 767px) {
          font-size: 0.9em;
        }
      }
    }
  }
}

/* ============================================
   HOMEPAGE - Personal Test Box
   Used in: index.php
   ============================================ */
.personal-test-box {
  font-family: "League Spartan", sans-serif;
  scroll-snap-align: start;
  background: var(--global-color-light-orange);
  padding-top: 60px;
  padding-bottom: 60px;
  font-size: 14px;
  @media (max-width: 767px) {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  h2 {
    letter-spacing: -1px;
    color: var(--global-color-green);
    font-size: 2rem;
    @media (min-width: 992px) {
      font-size: 4em;
    }
    @media (max-width: 767px) {
      font-size: 1.5rem;
    }
  }
  p {
    color: #fff;
    font-size: 3em;
    line-height: 1.3;
    margin-top: 30px;
    @media (max-width: 767px) {
      font-size: 1.5em;
      margin-top: 20px;
    }
    span {
      color: var(--global-color-strong-orange);
    }
  }
  .btn-default {
    font-family: "Cabin", sans-serif;
    font-size: 2.2em;
    font-style: normal;
    color: #000;
    margin-top: 25px;
    border-radius: 40px;
    padding: 15px 60px;
    text-transform: unset;
    @media (max-width: 767px) {
      font-size: 1.2em;
      padding: 12px 40px;
      margin-top: 20px;
      width: 100%;
      max-width: 300px;
    }
    &.bg-white {
      background: #fff;
    }
  }
}

/* ============================================
   HOMEPAGE - Four Cut Box Section
   Used in: index.php
   ============================================ */
.four-cut-box {
  border-radius: 20px;
  border: 1px solid #2d2d2d;
  padding: 60px 25px;
  max-width: 850px;
  margin: 0 auto 80px auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 25px;
  font-size: 14px;
  .description-box {
    flex: 1;
    text-align: center;
    h2 {
      color: var(--global-color-strong-orange);
      font-size: 4em;
      margin-bottom: 30px;
      line-height: 1;
      @media (min-width: 992px) {
        letter-spacing: -2px;
      }
    }
    p {
      font-family: "Cabin", sans-serif;
      font-size: 1.2em;
      font-style: italic;
      text-align: left;
      margin-bottom: 40px;
    }
  }
  &.dinner {
    h2 {
      color: var(--global-color-green);
    }
    .btn-default {
      border-color: var(--global-color-yellow);
      color: var(--global-color-yellow);
      background: var(--global-color-green);
    }
  }
  &.business {
    h2 {
      color: var(--global-color-light-orange);
    }
    .btn-default {
      border-color: var(--global-color-green);
      color: var(--global-color-green);
      background: var(--global-color-light-orange);
    }
  }
}

/* ============================================
   AUTH PAGES - Login & Register
   Used in: auth/login.php, auth/register.php
   ============================================ */
.auth-container {
  max-width: 500px;
  margin: 50px auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  font-family: "Montserrat", sans-serif !important;
}

.auth-container * {
  font-family: "Montserrat", sans-serif !important;
}

.auth-container .form-label {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 600;
  color: var(--global-color-green);
}

.auth-container input,
.auth-container button,
.auth-container p,
.auth-container h2 {
  font-family: "Montserrat", sans-serif !important;
}

.auth-container .alert {
  margin-bottom: 20px;
}

/* ============================================
   DASHBOARD - User Avatar & Navigation
   Used in: dashboard.php, header navigation
   ============================================ */
.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
  overflow: hidden;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.nav-item .nav-link {
  display: flex;
  align-items: center;
}

.nav-item .dropdown {
  display: flex;
  align-items: center;
}

.nav-item .dropdown .btn-link {
  padding: 0;
  border: none;
  text-decoration: none;
  background: transparent;
  box-shadow: none;
}

.nav-item .dropdown .btn-link::after {
  display: none;
}

.nav-item .dropdown .btn-link:hover,
.nav-item .dropdown .btn-link:focus,
.nav-item .dropdown .btn-link:active {
  background: transparent;
  border: none;
  box-shadow: none;
}

.nav-item .dropdown .dropdown-menu {
  min-width: 150px;
  margin-top: 0.5rem;
}

/* ============================================
   COMMON COMPONENTS - Arrow Link Hover Effect
   Used in: multiple pages
   ============================================ */
.arrow-link {
  display: inline-block !important;
  transition: transform 0.3s ease, opacity 0.3s ease !important;
  cursor: pointer !important;
  text-decoration: none !important;
  position: relative !important;
  z-index: 10 !important;
  border: none !important;
  outline: none !important;
}

.arrow-link:hover {
  transform: scale(1.15) translateX(5px) !important;
  opacity: 0.8 !important;
}

.arrow-link:active {
  transform: scale(1.1) translateX(3px) !important;
}

.arrow-link:focus {
  outline: none !important;
}

.arrow-link img {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
}

/* ============================================
   HOMEPAGE - About Us Arrow Specific Styles
   Used in: index.php (about us section)
   ============================================ */
.about-us-arrow {
  transition: transform 0.3s ease, opacity 0.3s ease !important;
  cursor: pointer !important;
}

.about-us-arrow:hover {
  transform: scale(1.15) translateX(5px) !important;
  opacity: 0.8 !important;
}

.about-us-arrow:active {
  transform: scale(1.1) translateX(3px) !important;
}

/* ============================================
   PROFILE SETUP PAGE - Complete Profile Form
   Used in: profile-setup.php
   ============================================ */
body.profile-setup-page * {
  box-sizing: border-box;
}

body.profile-setup-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #fafafa;
  min-height: 100vh;
  padding: 20px;
  margin: 0;
}

.profile-setup-page .container {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 50px 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.profile-setup-page .logo {
  text-align: center;
  margin-bottom: 40px;
}

.profile-setup-page .logo img {
  width: 140px;
}

.profile-setup-page .section {
  margin-bottom: 50px;
}

.profile-setup-page .question {
  margin-bottom: 40px;
}

.profile-setup-page .question-title {
  font-size: 16px;
  font-weight: 700;
  color: #FF8C00;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.5px;
}

/* Pill-shaped buttons for single/multiple choice */
.profile-setup-page .pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.profile-setup-page .pill-option {
  position: relative;
}

.profile-setup-page .pill-option input[type="radio"],
.profile-setup-page .pill-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.profile-setup-page .pill-option label {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 25px;
  border: 2px solid #e0e0e0;
  background: #f5f5f5;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.profile-setup-page .pill-option label:hover {
  border-color: #FF8C00;
  transform: translateY(-2px);
}

.profile-setup-page .pill-option input:checked + label {
  background: #FF8C00;
  border-color: #FF8C00;
  color: white;
}

.profile-setup-page .pill-option.blue input:checked + label {
  background: #1E40AF;
  border-color: #1E40AF;
}

.profile-setup-page .pill-option.gray input:checked + label {
  background: #9CA3AF;
  border-color: #9CA3AF;
}

.profile-setup-page .pill-option.beige input:checked + label {
  background: #D4C5B9;
  border-color: #D4C5B9;
}

/* Circular number buttons for scale questions */
.profile-setup-page .scale-container {
  padding: 20px 0;
}

.profile-setup-page .scale-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #1E40AF;
}

.profile-setup-page .scale-labels .left {
  text-align: left;
}

.profile-setup-page .scale-labels .right {
  text-align: right;
}

.profile-setup-page .scale-numbers {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.profile-setup-page .scale-option {
  position: relative;
}

.profile-setup-page .scale-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.profile-setup-page .scale-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #333;
  background: white;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.profile-setup-page .scale-option label:hover {
  background: #f0f0f0;
  transform: scale(1.1);
}

.profile-setup-page .scale-option input:checked + label {
  background: #1E40AF;
  border-color: #1E40AF;
  color: white;
  transform: scale(1.15);
}

/* Text inputs with cleaner styling */
.profile-setup-page .input-field {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 15px;
  transition: border-color 0.3s;
  background: #fafafa;
}

.profile-setup-page .input-field:focus {
  outline: none;
  border-color: #FF8C00;
  background: white;
}

.profile-setup-page .submit-btn {
  width: 100%;
  padding: 16px;
  background: #FF8C00;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 30px;
}

.profile-setup-page .submit-btn:hover {
  background: #E67E00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.profile-setup-page .error {
  background: #FEE2E2;
  border: 2px solid #FCA5A5;
  color: #991B1B;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 30px;
  text-align: center;
}

@media (max-width: 768px) {
  .profile-setup-page .container {
    padding: 30px 20px;
  }
  
  .profile-setup-page .scale-option label {
    width: 45px;
    height: 45px;
    font-size: 14px;
  }
  
  .profile-setup-page .pill-option label {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* ============================================
   EDIT PROFILE PAGE - Edit User Profile
   Used in: edit-profile.php
   ============================================ */
body.edit-profile-page {
  background: #f5f5f5;
  font-family: "Montserrat", sans-serif;
  padding: 20px;
}

.edit-profile-page .profile-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.edit-profile-page .profile-header {
  text-align: center;
  margin-bottom: 40px;
}

.edit-profile-page .profile-header h1 {
  font-size: 2rem;
  color: var(--global-color-green);
  margin-bottom: 10px;
}

.edit-profile-page .avatar-section {
  text-align: center;
  margin-bottom: 40px;
}

.edit-profile-page .avatar-preview {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 48px;
  font-weight: 600;
  overflow: hidden;
  position: relative;
}

.edit-profile-page .avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.edit-profile-page .avatar-upload {
  display: inline-block;
}

.edit-profile-page .avatar-upload input[type="file"] {
  display: none;
}

.edit-profile-page .avatar-upload label {
  display: inline-block;
  padding: 10px 20px;
  background: var(--global-color-strong-orange);
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.edit-profile-page .avatar-upload label:hover {
  background: var(--global-color-orange);
  transform: translateY(-2px);
}

.edit-profile-page .form-group {
  margin-bottom: 25px;
}

.edit-profile-page .form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.edit-profile-page .form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.edit-profile-page .form-control:focus {
  outline: none;
  border-color: var(--global-color-strong-orange);
  box-shadow: 0 0 0 3px rgba(239, 125, 7, 0.1);
}

.edit-profile-page .btn-save {
  background: var(--global-color-green);
  color: white;
  padding: 15px 180px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 20px;
}

.edit-profile-page .btn-save:hover {
  background: #0d2f7a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 60, 180, 0.3);
}

.edit-profile-page .btn-back {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--global-color-green);
  text-decoration: none;
  font-weight: 500;
}

.edit-profile-page .btn-back:hover {
  text-decoration: underline;
}

.edit-profile-page .btn-profile-setup {
  display: inline-block;
  padding: 12px 40px;
  background: var(--global-color-strong-orange);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.edit-profile-page .btn-profile-setup:hover {
  background: var(--global-color-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 125, 7, 0.3);
  text-decoration: none;
  color: white;
}

.edit-profile-page .alert {
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.edit-profile-page .alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.edit-profile-page .alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.edit-profile-page .logo-section {
  text-align: center;
  margin-bottom: 30px;
}

.edit-profile-page .logo-section img {
  width: 150px;
}
