@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Jost:wght@300;400;500;600&display=swap');

:root {
    /* Legacy colors - kept for compatibility */
    --orange: #ff7350;
    --light-orange:#fc886a;
    --teal: #125875;
    --light-teal: #3188ad;
    --dark-teal: #093f55;
    --light-blue: #E9F2F3;
    --white: #FFFFFF;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #CCCCCC;
    --orange-dark-hover: #ff5e35;

    /* Design System - OKLCH Color Palette */
    /* Neutral palette - semantic naming */
    --surface-base: oklch(98% 0 0);
    /* Near white - main backgrounds */
    --surface-elevated: oklch(100% 0 0);
    /* Pure white - elevated cards */
    --surface-subtle: oklch(96% 0 0);
    /* Very light gray - subtle backgrounds */
    --surface-muted: oklch(92% 0 0);
    /* Light gray - muted sections */

    --text-primary: oklch(25% 0 0);
    /* Near black - main text */
    --text-secondary: oklch(45% 0 0);
    /* Dark gray - secondary text */
    --text-muted: oklch(60% 0 0);
    /* Medium gray - de-emphasized text */
    --text-disabled: oklch(70% 0 0);
    /* Light gray - disabled text */

    --border-subtle: oklch(88% 0 0);
    /* Very subtle borders */
    --border-default: oklch(82% 0 0);
    /* Default borders */
    --border-emphasis: oklch(70% 0 0);
    /* Emphasized borders */

    /* Brand colors - OKLCH for consistency */
    --brand-primary: oklch(62% 0.17 25);
    /* Warm orange - primary actions */
    --brand-primary-hover: #ff5e35;
    /* Darker orange - hover state */
    --brand-secondary: oklch(48% 0.12 220);
    /* Deep teal - secondary elements */
    --brand-secondary-light: oklch(55% 0.10 220);
    /* Lighter teal */
    --brand-accent: oklch(72% 0.08 220);
    /* Light blue accent */

    /* Semantic colors */
    --semantic-success: oklch(65% 0.15 145);
    --semantic-warning: oklch(75% 0.15 85);
    --semantic-error: oklch(60% 0.20 25);
    --semantic-info: oklch(65% 0.15 250);

    /* Elevation system - Multi-layer shadows */
    --shadow-sm:
        0 1px 2px oklch(0% 0 0 / 0.04),
        0 2px 4px oklch(0% 0 0 / 0.08);
    --shadow-md:
        0 2px 4px oklch(0% 0 0 / 0.06),
        0 4px 8px oklch(0% 0 0 / 0.10);
    --shadow-lg:
        0 4px 6px oklch(0% 0 0 / 0.08),
        0 8px 16px oklch(0% 0 0 / 0.12);
    --shadow-xl:
        0 8px 12px oklch(0% 0 0 / 0.10),
        0 16px 24px oklch(0% 0 0 / 0.15);
    --shadow-2xl:
        0 16px 24px oklch(0% 0 0 / 0.12),
        0 32px 48px oklch(0% 0 0 / 0.20);

    /* Spacing scale - 8px base */
    --space-xs: 0.5rem;
    /* 8px */
    --space-sm: 0.75rem;
    /* 12px */
    --space-md: 1rem;
    /* 16px */
    --space-lg: 1.5rem;
    /* 24px */
    --space-xl: 2rem;
    /* 32px */
    --space-2xl: 3rem;
    /* 48px */
    --space-3xl: 4rem;
    /* 64px */
    --space-4xl: 6rem;
    /* 96px */

    /* Typography scale - 1.250 (Major Third) ratio */
    --text-xs: 0.8rem;
    /* 12.8px */
    --text-sm: 0.875rem;
    /* 14px */
    --text-base: 1rem;
    /* 16px */
    --text-lg: 1.125rem;
    /* 18px */
    --text-xl: 1.25rem;
    /* 20px */
    --text-2xl: 1.563rem;
    /* 25px */
    --text-3xl: 1.953rem;
    /* 31.25px */
    --text-4xl: 2.441rem;
    /* 39px */
    --text-5xl: 3.052rem;
    /* 48.8px */

    /* Line heights - inversely proportional */
    --leading-tight: 1.2;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 1.75;
}

body {
    font-family: 'Roboto', sans-serif !important;
    color: var(--text-primary);
    background-color: var(--surface-base);
    margin: 0;
    padding-top: 90px;
    font-size: var(--text-base);
    line-height: var(--leading-normal);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Jost', sans-serif !important;
    line-height: var(--leading-tight);
    font-weight: 600;
}

h6 {
    font-family: 'Jost', sans-serif !important;
    color: var(--text-primary);
    line-height: var(--leading-tight);
    font-weight: 600;
}

/* ---------------- Reusable Global Button ---------------- */
.btn-global,
.orange-btn,
.blue-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0.3rem;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  transition: background 0.4s ease, color 0.4s ease;
}

/* Shared icon behavior */
.btn-global i,
.orange-btn i,
.blue-btn i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.btn-global:hover i,
.orange-btn:hover i,
.blue-btn:hover i {
  transform: translateX(5px);
}

/* ---------------- Blue Button (Apply) ---------------- */
.blue-btn {
  background: var(--teal);
  color: var(--white);
  border: 1px solid var(--light-teal);
}

.blue-btn:hover {
  background: transparent;
  color: var(--light-teal);
}

/* ---------------- Orange Button (Contact) ---------------- */
.orange-btn {
  background: var(--orange);
  color: var(--white);
  border: 1px solid var(--light-orange);
}

.orange-btn:hover {
  background: transparent;
  color: var(--orange);
}


.text-secondary {
    color: var(--text-secondary) !important;
}


/* ========================================== breadcrumbs========================================= */
.page-banner {
    position: relative;
    background: url("/Resources/images/breadcrumbs/breadcrumb1.png") center/cover no-repeat;
    color: var(--white);
    text-align: center;
    height: 250px;
    overflow: visible;
    font-family: 'Jost', sans-serif;
}


.page-banner .banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            oklch(49.294% 0.09628 228.132 / 0.548) 0%,
            oklch(49.294% 0.09628 228.132 / 0.616) 50%,
            oklch(49.294% 0.09628 228.132 / 0.479) 100%);
    z-index: 1;
}



.banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.page-title {
    font-size: var(--text-4xl);
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.02em;
}


.banner-breadcrumb-wrapper {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}


.banner-breadcrumb {
    background: var(--orange);
    display: inline-flex;
    padding: var(--space-sm) var(--space-lg);
    border-radius: 40px;
    font-size: var(--text-lg);
    color: var(--surface-elevated);
    margin: 0;
    box-shadow: var(--shadow-lg);
}


.banner-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "|";
    color: var(--surface-elevated);
    padding: 0 var(--space-xs);
}

.banner-breadcrumb a {
    color: var(--surface-elevated);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.banner-breadcrumb a:hover {
    opacity: 0.8;
}

.banner-breadcrumb .active {
    color: var(--surface-elevated);
    opacity: 0.9;
}


/* ---------------- reuse TITLE DESIGN ---------------- */
.title-class h2 {
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.title-class h2 span {
  position: relative;
  display: inline-block;
}

.title-class h2 span::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 3px;
}