@font-face {
    font-family: 'Roboto';
    src: url('../fonts/google/roboto-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/google/roboto-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/google/poppins-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/google/poppins-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/google/poppins-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/google/poppins-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-primary: #ff6600;
    --color-text: #1a1a1a;
    --color-text-muted: #6c757d;
    --color-border: #e9ecef;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --border-radius: 0.5rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: #ffffff;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.15s ease;
}

a:hover {
    color: #cc5200;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #0d1117;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.display-1 { font-size: 4rem; font-weight: 700; line-height: 1.2; }
.display-2 { font-size: 3.5rem; font-weight: 700; line-height: 1.2; }
.display-3 { font-size: 3rem; font-weight: 700; line-height: 1.2; }
.display-4 { font-size: 2.5rem; font-weight: 700; line-height: 1.2; }
.display-5 { font-size: 2rem; font-weight: 700; line-height: 1.2; }
.display-6 { font-size: 1.75rem; font-weight: 700; line-height: 1.2; }

.lead {
    font-size: 1.125rem;
    font-weight: 300;
}

small, .small {
    font-size: 0.875rem;
    font-weight: 400;
}

.text-primary { color: var(--color-primary) !important; }
.text-secondary { color: var(--color-text-muted) !important; }
.text-success { color: #28a745 !important; }
.text-danger { color: #dc3545 !important; }
.text-warning { color: #cc9900 !important; }
.text-info { color: #17a2b8 !important; }
.text-dark { color: #0d1117 !important; }
.text-light { color: #f8f9fa !important; }
.text-white { color: #ffffff !important; }
.text-body { color: var(--color-text) !important; }
.text-muted { color: var(--color-text-muted) !important; }

.bg-primary { background-color: var(--color-primary) !important; }
.bg-secondary { background-color: var(--color-text-muted) !important; }
.bg-success { background-color: #28a745 !important; }
.bg-danger { background-color: #dc3545 !important; }
.bg-warning { background-color: #ffc107 !important; }
.bg-info { background-color: #17a2b8 !important; }
.bg-dark { background-color: #0d1117 !important; }
.bg-light { background-color: #f8f9fa !important; }
.bg-white { background-color: #ffffff !important; }

.border { border: 1px solid var(--color-border) !important; }
.border-top { border-top: 1px solid var(--color-border) !important; }
.border-bottom { border-bottom: 1px solid var(--color-border) !important; }
.border-start { border-left: 1px solid var(--color-border) !important; }
.border-end { border-right: 1px solid var(--color-border) !important; }
.border-0 { border: 0 !important; }
.border-primary { border-color: var(--color-primary) !important; }

.rounded { border-radius: var(--border-radius) !important; }
.rounded-0 { border-radius: 0 !important; }
.rounded-1 { border-radius: calc(var(--border-radius) * 0.5) !important; }
.rounded-2 { border-radius: var(--border-radius) !important; }
.rounded-3 { border-radius: calc(var(--border-radius) * 1.5) !important; }
.rounded-circle { border-radius: 50% !important; }
.rounded-pill { border-radius: 50rem !important; }

.shadow { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important; }
.shadow-sm { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important; }
.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1) !important; }
.shadow-none { box-shadow: none !important; }

.position-static { position: static !important; }
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-fixed { position: fixed !important; }
.position-sticky { position: sticky !important; }

.top-0 { top: 0 !important; }
.top-50 { top: 50% !important; }
.top-100 { top: 100% !important; }
.bottom-0 { bottom: 0 !important; }
.bottom-50 { bottom: 50% !important; }
.bottom-100 { bottom: 100% !important; }
.start-0 { left: 0 !important; }
.start-50 { left: 50% !important; }
.start-100 { left: 100% !important; }
.end-0 { right: 0 !important; }
.end-50 { right: 50% !important; }
.end-100 { right: 100% !important; }

.translate-middle {
    transform: translate(-50%, -50%) !important;
}
.translate-middle-x {
    transform: translateX(-50%) !important;
}
.translate-middle-y {
    transform: translateY(-50%) !important;
}

.overflow-auto { overflow: auto !important; }
.overflow-hidden { overflow: hidden !important; }
.overflow-visible { overflow: visible !important; }
.overflow-scroll { overflow: scroll !important; }

.d-none { display: none !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }
.d-table { display: table !important; }

@media (min-width: 576px) {
    .d-sm-none { display: none !important; }
    .d-sm-inline { display: inline !important; }
    .d-sm-inline-block { display: inline-block !important; }
    .d-sm-block { display: block !important; }
    .d-sm-flex { display: flex !important; }
    .d-sm-inline-flex { display: inline-flex !important; }
}

@media (min-width: 768px) {
    .d-md-none { display: none !important; }
    .d-md-inline { display: inline !important; }
    .d-md-inline-block { display: inline-block !important; }
    .d-md-block { display: block !important; }
    .d-md-flex { display: flex !important; }
    .d-md-inline-flex { display: inline-flex !important; }
}

@media (min-width: 992px) {
    .d-lg-none { display: none !important; }
    .d-lg-inline { display: inline !important; }
    .d-lg-inline-block { display: inline-block !important; }
    .d-lg-block { display: block !important; }
    .d-lg-flex { display: flex !important; }
    .d-lg-inline-flex { display: inline-flex !important; }
}

@media (min-width: 1200px) {
    .d-xl-none { display: none !important; }
    .d-xl-inline { display: inline !important; }
    .d-xl-inline-block { display: inline-block !important; }
    .d-xl-block { display: block !important; }
    .d-xl-flex { display: flex !important; }
    .d-xl-inline-flex { display: inline-flex !important; }
}

.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.flex-row-reverse { flex-direction: row-reverse !important; }
.flex-column-reverse { flex-direction: column-reverse !important; }

.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }
.flex-wrap-reverse { flex-wrap: wrap-reverse !important; }

.justify-content-start { justify-content: flex-start !important; }
.justify-content-end { justify-content: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-around { justify-content: space-around !important; }
.justify-content-evenly { justify-content: space-evenly !important; }

.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }
.align-items-center { align-items: center !important; }
.align-items-baseline { align-items: baseline !important; }
.align-items-stretch { align-items: stretch !important; }

.align-content-start { align-content: flex-start !important; }
.align-content-end { align-content: flex-end !important; }
.align-content-center { align-content: center !important; }
.align-content-between { align-content: space-between !important; }
.align-content-around { align-content: space-around !important; }
.align-content-stretch { align-content: stretch !important; }

.align-self-auto { align-self: auto !important; }
.align-self-start { align-self: flex-start !important; }
.align-self-end { align-self: flex-end !important; }
.align-self-center { align-self: center !important; }
.align-self-baseline { align-self: baseline !important; }
.align-self-stretch { align-self: stretch !important; }

.order-first { order: -1 !important; }
.order-0 { order: 0 !important; }
.order-1 { order: 1 !important; }
.order-2 { order: 2 !important; }
.order-3 { order: 3 !important; }
.order-4 { order: 4 !important; }
.order-5 { order: 5 !important; }
.order-last { order: 6 !important; }

.m-0 { margin: 0 !important; }
.m-1 { margin: var(--spacing-xs) !important; }
.m-2 { margin: var(--spacing-sm) !important; }
.m-3 { margin: var(--spacing-md) !important; }
.m-4 { margin: var(--spacing-lg) !important; }
.m-5 { margin: var(--spacing-xl) !important; }
.m-auto { margin: auto !important; }

.mx-0 { margin-right: 0 !important; margin-left: 0 !important; }
.mx-1 { margin-right: var(--spacing-xs) !important; margin-left: var(--spacing-xs) !important; }
.mx-2 { margin-right: var(--spacing-sm) !important; margin-left: var(--spacing-sm) !important; }
.mx-3 { margin-right: var(--spacing-md) !important; margin-left: var(--spacing-md) !important; }
.mx-4 { margin-right: var(--spacing-lg) !important; margin-left: var(--spacing-lg) !important; }
.mx-5 { margin-right: var(--spacing-xl) !important; margin-left: var(--spacing-xl) !important; }
.mx-auto { margin-right: auto !important; margin-left: auto !important; }

.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.my-1 { margin-top: var(--spacing-xs) !important; margin-bottom: var(--spacing-xs) !important; }
.my-2 { margin-top: var(--spacing-sm) !important; margin-bottom: var(--spacing-sm) !important; }
.my-3 { margin-top: var(--spacing-md) !important; margin-bottom: var(--spacing-md) !important; }
.my-4 { margin-top: var(--spacing-lg) !important; margin-bottom: var(--spacing-lg) !important; }
.my-5 { margin-top: var(--spacing-xl) !important; margin-bottom: var(--spacing-xl) !important; }
.my-auto { margin-top: auto !important; margin-bottom: auto !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--spacing-xs) !important; }
.mt-2 { margin-top: var(--spacing-sm) !important; }
.mt-3 { margin-top: var(--spacing-md) !important; }
.mt-4 { margin-top: var(--spacing-lg) !important; }
.mt-5 { margin-top: var(--spacing-xl) !important; }
.mt-auto { margin-top: auto !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--spacing-xs) !important; }
.mb-2 { margin-bottom: var(--spacing-sm) !important; }
.mb-3 { margin-bottom: var(--spacing-md) !important; }
.mb-4 { margin-bottom: var(--spacing-lg) !important; }
.mb-5 { margin-bottom: var(--spacing-xl) !important; }
.mb-auto { margin-bottom: auto !important; }

.ms-0 { margin-left: 0 !important; }
.ms-1 { margin-left: var(--spacing-xs) !important; }
.ms-2 { margin-left: var(--spacing-sm) !important; }
.ms-3 { margin-left: var(--spacing-md) !important; }
.ms-4 { margin-left: var(--spacing-lg) !important; }
.ms-5 { margin-left: var(--spacing-xl) !important; }
.ms-auto { margin-left: auto !important; }

.me-0 { margin-right: 0 !important; }
.me-1 { margin-right: var(--spacing-xs) !important; }
.me-2 { margin-right: var(--spacing-sm) !important; }
.me-3 { margin-right: var(--spacing-md) !important; }
.me-4 { margin-right: var(--spacing-lg) !important; }
.me-5 { margin-right: var(--spacing-xl) !important; }
.me-auto { margin-right: auto !important; }

.p-0 { padding: 0 !important; }
.p-1 { padding: var(--spacing-xs) !important; }
.p-2 { padding: var(--spacing-sm) !important; }
.p-3 { padding: var(--spacing-md) !important; }
.p-4 { padding: var(--spacing-lg) !important; }
.p-5 { padding: var(--spacing-xl) !important; }

.px-0 { padding-right: 0 !important; padding-left: 0 !important; }
.px-1 { padding-right: var(--spacing-xs) !important; padding-left: var(--spacing-xs) !important; }
.px-2 { padding-right: var(--spacing-sm) !important; padding-left: var(--spacing-sm) !important; }
.px-3 { padding-right: var(--spacing-md) !important; padding-left: var(--spacing-md) !important; }
.px-4 { padding-right: var(--spacing-lg) !important; padding-left: var(--spacing-lg) !important; }
.px-5 { padding-right: var(--spacing-xl) !important; padding-left: var(--spacing-xl) !important; }

.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-1 { padding-top: var(--spacing-xs) !important; padding-bottom: var(--spacing-xs) !important; }
.py-2 { padding-top: var(--spacing-sm) !important; padding-bottom: var(--spacing-sm) !important; }
.py-3 { padding-top: var(--spacing-md) !important; padding-bottom: var(--spacing-md) !important; }
.py-4 { padding-top: var(--spacing-lg) !important; padding-bottom: var(--spacing-lg) !important; }
.py-5 { padding-top: var(--spacing-xl) !important; padding-bottom: var(--spacing-xl) !important; }

.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: var(--spacing-xs) !important; }
.pt-2 { padding-top: var(--spacing-sm) !important; }
.pt-3 { padding-top: var(--spacing-md) !important; }
.pt-4 { padding-top: var(--spacing-lg) !important; }
.pt-5 { padding-top: var(--spacing-xl) !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: var(--spacing-xs) !important; }
.pb-2 { padding-bottom: var(--spacing-sm) !important; }
.pb-3 { padding-bottom: var(--spacing-md) !important; }
.pb-4 { padding-bottom: var(--spacing-lg) !important; }
.pb-5 { padding-bottom: var(--spacing-xl) !important; }

.ps-0 { padding-left: 0 !important; }
.ps-1 { padding-left: var(--spacing-xs) !important; }
.ps-2 { padding-left: var(--spacing-sm) !important; }
.ps-3 { padding-left: var(--spacing-md) !important; }
.ps-4 { padding-left: var(--spacing-lg) !important; }
.ps-5 { padding-left: var(--spacing-xl) !important; }

.pe-0 { padding-right: 0 !important; }
.pe-1 { padding-right: var(--spacing-xs) !important; }
.pe-2 { padding-right: var(--spacing-sm) !important; }
.pe-3 { padding-right: var(--spacing-md) !important; }
.pe-4 { padding-right: var(--spacing-lg) !important; }
.pe-5 { padding-right: var(--spacing-xl) !important; }

.gap-0 { gap: 0 !important; }
.gap-1 { gap: var(--spacing-xs) !important; }
.gap-2 { gap: var(--spacing-sm) !important; }
.gap-3 { gap: var(--spacing-md) !important; }
.gap-4 { gap: var(--spacing-lg) !important; }
.gap-5 { gap: var(--spacing-xl) !important; }

.w-25 { width: 25% !important; }
.w-50 { width: 50% !important; }
.w-75 { width: 75% !important; }
.w-100 { width: 100% !important; }
.w-auto { width: auto !important; }

.h-25 { height: 25% !important; }
.h-50 { height: 50% !important; }
.h-75 { height: 75% !important; }
.h-100 { height: 100% !important; }
.h-auto { height: auto !important; }

.min-vw-100 { min-width: 100vw !important; }
.min-vh-100 { min-height: 100vh !important; }
.vw-100 { width: 100vw !important; }
.vh-100 { height: 100vh !important; }

.text-start { text-align: left !important; }
.text-end { text-align: right !important; }
.text-center { text-align: center !important; }

@media (min-width: 576px) {
    .text-sm-start { text-align: left !important; }
    .text-sm-end { text-align: right !important; }
    .text-sm-center { text-align: center !important; }
}

@media (min-width: 768px) {
    .text-md-start { text-align: left !important; }
    .text-md-end { text-align: right !important; }
    .text-md-center { text-align: center !important; }
}

@media (min-width: 992px) {
    .text-lg-start { text-align: left !important; }
    .text-lg-end { text-align: right !important; }
    .text-lg-center { text-align: center !important; }
}

@media (min-width: 1200px) {
    .text-xl-start { text-align: left !important; }
    .text-xl-end { text-align: right !important; }
    .text-xl-center { text-align: center !important; }
}

.fw-normal { font-weight: 400 !important; }
.fw-medium { font-weight: 500 !important; }
.fw-semibold { font-weight: 600 !important; }
.fw-bold { font-weight: 700 !important; }

.fs-1 { font-size: 2.5rem !important; }
.fs-2 { font-size: 2rem !important; }
.fs-3 { font-size: 1.75rem !important; }
.fs-4 { font-size: 1.5rem !important; }
.fs-5 { font-size: 1.25rem !important; }
.fs-6 { font-size: 1rem !important; }

.fst-italic { font-style: italic !important; }
.fst-normal { font-style: normal !important; }

.text-decoration-none { text-decoration: none !important; }
.text-decoration-underline { text-decoration: underline !important; }
.text-decoration-line-through { text-decoration: line-through !important; }

.lh-1 { line-height: 1 !important; }
.lh-sm { line-height: 1.25 !important; }
.lh-base { line-height: 1.6 !important; }
.lh-lg { line-height: 2 !important; }

.text-lowercase { text-transform: lowercase !important; }
.text-uppercase { text-transform: uppercase !important; }
.text-capitalize { text-transform: capitalize !important; }

.visible { visibility: visible !important; }
.invisible { visibility: hidden !important; }

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

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

.font-monospace {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace !important;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
}

.list-inline-item {
    display: inline-block;
}

.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}

.blockquote {
    margin: 0 0 1rem;
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--color-primary);
    background: var(--color-background);
}

.blockquote-footer {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.blockquote-footer::before {
    content: "\2014 \00A0";
}

.figure {
    display: inline-block;
}

.figure-img {
    margin-bottom: 0.5rem;
    line-height: 1;
}

.figure-caption {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}
:root {
    --color-primary: #ff6600;
    --color-primary-dark: #cc5200;
    --color-secondary: #6c757d;
    --color-success: #28a745;
    --color-danger: #dc3545;
    --color-warning: #ffc107;
    --color-info: #17a2b8;
    --color-dark: #0d1117;
    --color-white: #ffffff;
    --color-text: #1a1a1a;
    --color-text-muted: #6c757d;
    --color-border: #e9ecef;
    --color-background: #f8f9fa;
    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.5;
    border: 1px solid transparent;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    font-family: inherit;
}

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

.btn-primary {
    color: var(--color-white);
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover:not(:disabled) {
    color: var(--color-white);
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.btn-secondary {
    color: var(--color-white);
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn-secondary:hover:not(:disabled) {
    color: var(--color-white);
    background-color: #5a6268;
    border-color: #545b62;
}

.btn-success {
    color: var(--color-white);
    background-color: var(--color-success);
    border-color: var(--color-success);
}

.btn-danger {
    color: var(--color-white);
    background-color: var(--color-danger);
    border-color: var(--color-danger);
}

.btn-warning {
    color: #212529;
    background-color: var(--color-warning);
    border-color: var(--color-warning);
}

.btn-info {
    color: var(--color-white);
    background-color: var(--color-info);
    border-color: var(--color-info);
}

.btn-dark {
    color: var(--color-white);
    background-color: var(--color-dark);
    border-color: var(--color-dark);
}

.btn-light {
    color: var(--color-dark);
    background-color: var(--color-background);
    border-color: var(--color-border);
}

.btn-outline-primary {
    color: var(--color-primary);
    background-color: transparent;
    border-color: var(--color-primary);
}

.btn-outline-primary:hover:not(:disabled) {
    color: var(--color-white);
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline-secondary {
    color: var(--color-secondary);
    background-color: transparent;
    border-color: var(--color-secondary);
}

.btn-outline-secondary:hover:not(:disabled) {
    color: var(--color-white);
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn-outline-dark {
    color: var(--color-dark);
    background-color: transparent;
    border-color: var(--color-dark);
}

.btn-outline-dark:hover:not(:disabled) {
    color: var(--color-white);
    background-color: var(--color-dark);
    border-color: var(--color-dark);
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1.0625rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-teko {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-teko:hover:not(:disabled) {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
}

.btn-outline-teko {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline-teko:hover:not(:disabled) {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-square {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-circle {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-group {
    display: inline-flex;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.btn-group .btn {
    border-radius: 0;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: var(--color-white);
    background-clip: border-box;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    transition: box-shadow var(--transition-normal), transform var(--transition-normal);
    overflow: hidden;
}

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

.card-body {
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-header {
    padding: 1rem 1.25rem;
    margin-bottom: 0;
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    font-weight: 600;
}

.card-header:first-child {
    border-radius: calc(var(--border-radius-lg) - 1px) calc(var(--border-radius-lg) - 1px) 0 0;
}

.card-footer {
    padding: 1rem 1.25rem;
    background-color: var(--color-background);
    border-top: 1px solid var(--color-border);
}

.card-footer:last-child {
    border-radius: 0 0 calc(var(--border-radius-lg) - 1px) calc(var(--border-radius-lg) - 1px);
}

.card-img {
    width: 100%;
    object-fit: cover;
}

.card-img-top {
    border-top-left-radius: calc(var(--border-radius-lg) - 1px);
    border-top-right-radius: calc(var(--border-radius-lg) - 1px);
}

.card-img-bottom {
    border-bottom-right-radius: calc(var(--border-radius-lg) - 1px);
    border-bottom-left-radius: calc(var(--border-radius-lg) - 1px);
}

.card-title {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-dark);
}

.card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.card-link:hover {
    color: var(--color-primary-dark);
}

.card-link + .card-link {
    margin-left: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text);
    background-color: var(--color-white);
    background-clip: padding-box;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    font-family: inherit;
}

.form-control:focus {
    color: var(--color-text);
    background-color: var(--color-white);
    border-color: var(--color-primary);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.15);
}

.form-control::placeholder {
    color: var(--color-text-muted);
    opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: var(--color-background);
    opacity: 1;
}

.form-control.is-valid {
    border-color: var(--color-success);
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.5 4.91c-.39-.39-.39-1.02 0-1.41l1.06-1.06c.39-.39 1.02-.39 1.41 0L4.75 3.32l3.54-3.54c.39-.39 1.02-.39 1.41 0l1.06 1.06c.39.39.39 1.02 0 1.41l-5.11 5.11c-.39.39-1.02.39-1.41 0z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem 1rem;
}

.form-control.is-invalid {
    border-color: var(--color-danger);
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5zM5.25 7.75h.5v-3h-.5v3zm.75-3.5h.5v3h-.5v-3z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem 1rem;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-select {
    display: block;
    width: 100%;
    padding: 0.625rem 2.5rem 0.625rem 0.875rem;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text);
    background-color: var(--color-white);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    appearance: none;
    cursor: pointer;
}

.form-select:focus {
    border-color: var(--color-primary);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.15);
}

.form-check {
    display: flex;
    align-items: center;
    min-height: 1.5rem;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-check-input {
    width: 1rem;
    height: 1rem;
    margin-left: -1.5rem;
    accent-color: var(--color-primary);
    cursor: pointer;
}

.form-check-label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 0.9375rem;
}

.form-check-inline {
    display: inline-flex;
    align-items: center;
    padding-left: 0;
    margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
    margin-right: 0.375rem;
}

.input-group {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
}

.input-group .form-control,
.input-group .form-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

@media (max-width: 575.98px) {
    .input-group {
        flex-wrap: wrap;
    }

    .input-group .form-control,
    .input-group .form-select,
    .input-group .input-group-text {
        width: 100%;
        border-radius: var(--border-radius) !important;
        margin-bottom: 0.5rem;
    }

    .input-group .btn {
        width: 100%;
        border-radius: var(--border-radius) !important;
    }

    .input-group > *:last-child {
        margin-bottom: 0;
    }
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.625rem 0.875rem;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text);
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
}

.input-group > .form-control,
.input-group > .form-select {
    border-radius: 0;
}

.input-group > .form-control:first-child,
.input-group > .form-select:first-child {
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
}

.input-group > .form-control:last-child,
.input-group > .form-select:last-child {
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.input-group .btn {
    position: relative;
    z-index: 2;
}

.alert {
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: var(--border-radius);
}

.alert-primary {
    color: var(--color-primary-dark);
    background-color: #fff0e6;
    border-color: #ffd9cc;
}

.alert-secondary {
    color: #545b62;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.alert-dismissible {
    padding-right: 3rem;
    position: relative;
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    padding: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity var(--transition-fast);
}

.alert-dismissible .btn-close:hover {
    opacity: 1;
}

.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: var(--border-radius);
}

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

.badge-secondary {
    color: var(--color-white);
    background-color: var(--color-secondary);
}

.badge-success {
    color: var(--color-white);
    background-color: var(--color-success);
}

.badge-danger {
    color: var(--color-white);
    background-color: var(--color-danger);
}

.badge-warning {
    color: #212529;
    background-color: var(--color-warning);
}

.badge-info {
    color: var(--color-white);
    background-color: var(--color-info);
}

.badge-pill {
    border-radius: 50rem;
    padding-left: 0.875em;
    padding-right: 0.875em;
}

.nav-tabs {
    border-bottom: 1px solid var(--color-border);
}

.nav-tabs .nav-link {
    color: var(--color-text);
    border: 1px solid transparent;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    padding: 0.75rem 1.25rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    cursor: pointer;
    background: none;
    border-bottom: none;
    margin-bottom: -1px;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
    border-color: var(--color-border);
    isolation: isolate;
}

.nav-tabs .nav-link.active {
    color: var(--color-primary);
    background-color: var(--color-white);
    border-color: var(--color-border) var(--color-border) var(--color-white);
}

.nav-pills .nav-link {
    color: var(--color-text);
    background: none;
    border: 1px solid transparent;
    padding: 0.625rem 1.25rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.nav-pills .nav-link:hover {
    background-color: var(--color-background);
}

.nav-pills .nav-link.active {
    color: var(--color-white);
    background-color: var(--color-primary);
}

.tab-content {
    padding: 1.25rem 0;
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
    display: none;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
    max-width: 500px;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: var(--color-white);
    background-clip: padding-box;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.modal-title {
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-body {
    padding: 1.25rem;
    flex: 1 1 auto;
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--color-border);
    gap: 0.5rem;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1040;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.modal-backdrop.show {
    opacity: 1;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-lg {
        max-width: 800px;
    }
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 0.9375rem;
    color: var(--color-text);
    text-align: left;
    list-style: none;
    background-color: var(--color-white);
    background-clip: padding-box;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem 1.25rem;
    clear: both;
    font-weight: 400;
    color: var(--color-text);
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    transition: background-color var(--transition-fast), color var(--transition-fast);
    cursor: pointer;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--color-primary);
    background-color: var(--color-background);
    outline: none;
}

.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid var(--color-border);
}

.dropdown-header {
    display: block;
    padding: 0.5rem 1.25rem;
    margin-bottom: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: var(--border-radius);
}

.list-group-item {
    position: relative;
    display: block;
    padding: 0.75rem 1.25rem;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
}

.list-group-item:first-child {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.list-group-item:last-child {
    border-bottom-right-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
}

.list-group-item-action {
    width: 100%;
    color: var(--color-text);
    text-align: inherit;
    transition: background-color var(--transition-fast);
    cursor: pointer;
}

.list-group-item-action:hover,
.list-group-item-action:focus {
    color: var(--color-primary);
    background-color: var(--color-background);
    outline: none;
}

.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: var(--border-radius);
}

.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.875rem;
    margin-left: -1px;
    line-height: 1.5;
    color: var(--color-primary);
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.page-link:hover {
    color: var(--color-primary-dark);
    background-color: var(--color-background);
    border-color: var(--color-border);
}

.page-link.active {
    z-index: 3;
    color: var(--color-white);
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.page-link.disabled {
    color: var(--color-text-muted);
    pointer-events: none;
    background-color: var(--color-white);
    border-color: var(--color-border);
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
}

.page-item:last-child .page-link {
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.progress {
    height: 0.75rem;
    overflow: hidden;
    background-color: var(--color-background);
    border-radius: var(--border-radius);
}

.progress-bar {
    height: 100%;
    background-color: var(--color-primary);
    transition: width var(--transition-normal);
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: var(--color-text);
    vertical-align: top;
    border-color: var(--color-border);
}

.table > :not(caption) > * > * {
    padding: 0.75rem 0.75rem;
    background-color: var(--color-white);
    border-bottom-width: 1px;
}

.table > thead {
    background-color: var(--color-background);
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.02);
}

.table-hover > tbody > tr:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

.toast {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1100;
    display: none;
    max-width: 350px;
    padding: 1rem;
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.toast.show {
    display: block;
    animation: toast-show 0.3s ease;
}

@keyframes toast-show {
    from {
        opacity: 0;
        transform: translateY(1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
:root {
    --navbar-height: 70px;
    --container-max: 1400px;
    --container-fluid-max: 1920px;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-width: 320px;
}

#main {
    min-height: calc(100vh - var(--navbar-height));
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-fluid {
    width: 100%;
    max-width: var(--container-fluid-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(var(--spacing-md) * -1);
}

[class*="col-"] {
    padding: 0 var(--spacing-md);
}

.sticky-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #e9ecef;
    z-index: 1030;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
    transition: color 0.15s ease;
    flex-shrink: 0;
}

.navbar-brand:hover {
    color: #ff6600;
}

.navbar-logo {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.navbar-logo strong:first-child {
    color: #ff6600;
}

.navbar-logo strong:last-child {
    color: #1a1a1a;
}

.navbar-collapse {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-sm);
}

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

.nav-link {
    display: flex;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #ff6600;
    background: rgba(255, 102, 0, 0.08);
}

.nav-link.active {
    color: #ff6600;
    background: rgba(255, 102, 0, 0.1);
}

.navbar-toggler {
    display: none;
    padding: var(--spacing-sm);
    background: transparent;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.navbar-toggler:hover {
    background: #f8f9fa;
}

.navbar-toggler-icon {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

@media (max-width: 991.98px) {
    .navbar-toggler {
        display: block;
    }

    .navbar-collapse {
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.99);
        padding: var(--spacing-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1029;
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

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

    .nav-link {
        width: 100%;
        padding: var(--spacing-md);
    }
}

footer {
    background: #0d1117;
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    grid-template-columns: 1fr 2fr;
}

.footer-brand h1 {
    font-size: 2rem;
    margin: 0 0 var(--spacing-xs);
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.footer-brand h1 strong:first-child {
    color: #ff6600;
}

.footer-brand h1 strong:last-child {
    color: #ffffff;
}

.footer-subtitle {
    color: #ff6600;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #ff6600;
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-lg);
}

.footer-links-group h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid #ff6600;
}

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

.footer-nav .nav-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.25rem 0;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-nav .nav-link:hover {
    color: #ffffff;
    background: transparent;
    padding-left: var(--spacing-sm);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-legal .nav-link {
    color: rgba(255, 255, 255, 0.6);
    padding: 0;
    font-size: 0.875rem;
}

.footer-legal .nav-link:hover {
    color: #ffffff;
    background: transparent;
}

@media (max-width: 991.98px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

@media (min-width: 1600px) {
    :root {
        --container-max: 1520px;
        --container-fluid-max: 2200px;
    }

    .container {
        max-width: 1520px;
        padding: 0 var(--spacing-lg);
    }

    .navbar-container {
        max-width: 1520px;
        padding: 0 var(--spacing-lg);
    }

    .footer-container {
        max-width: 1520px;
        padding: 0 var(--spacing-lg);
    }

    .navbar-brand {
        font-size: 1.75rem;
    }

    .footer-brand h1 {
        font-size: 2.5rem;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.625rem 1.25rem;
    }
}

@media (min-width: 1920px) {
    :root {
        --container-max: 1720px;
        --spacing-lg: 2rem;
        --spacing-xl: 2.5rem;
        --spacing-2xl: 4rem;
    }

    .container {
        max-width: 1720px;
        padding: 0 var(--spacing-xl);
    }

    .navbar-container {
        max-width: 1720px;
        padding: 0 var(--spacing-xl);
    }

    .footer-container {
        max-width: 1720px;
        padding: 0 var(--spacing-xl);
    }

    .navbar-brand {
        font-size: 2rem;
    }

    .footer-brand h1 {
        font-size: 3rem;
    }

    .nav-link {
        font-size: 1.0625rem;
        padding: 0.75rem 1.5rem;
    }
}

@media (min-width: 992px) {
    .col-lg { flex: 1 0 0%; }
    .col-lg-auto { flex: 0 0 auto; width: auto; }
    .col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
    .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 1200px) {
    .col-xl { flex: 1 0 0%; }
    .col-xl-auto { flex: 0 0 auto; width: auto; }
    .col-xl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-xl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-xl-3 { flex: 0 0 25%; max-width: 25%; }
    .col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
    .col-xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-xl-9 { flex: 0 0 75%; max-width: 75%; }
    .col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-xl-12 { flex: 0 0 100%; max-width: 100%; }
}
:root {
    --color-primary: #ff6600;
    --color-primary-rgb: 255, 102, 0;
    --color-primary-light: #ff8533;
    --color-primary-dark: #cc5200;
    --color-accent: #00ccff;
    --color-surface: #ffffff;
    --color-background: #f8f9fa;
    --color-text: #1a1a1a;
    --color-text-muted: #6c757d;
    --color-border: #e9ecef;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--color-surface);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
}

.main-content {
    min-height: calc(100vh - 200px);
    padding-top: 80px;
    padding-bottom: 3rem;
}

@media (min-width: 1600px) {
    .main-content {
        padding-top: 90px;
        padding-bottom: 4rem;
    }
}

@media (min-width: 1920px) {
    .main-content {
        padding-top: 100px;
        padding-bottom: 5rem;
    }

    body {
        font-size: 17px;
        line-height: 1.65;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-normal);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 1600px) {
    .navbar-container {
        padding: 0 2rem;
    }
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

@media (min-width: 1600px) {
    .navbar-brand {
        font-size: 1.75rem;
    }
}

@media (min-width: 1920px) {
    .navbar-brand {
        font-size: 2rem;
    }
}

.navbar-brand:hover {
    opacity: 0.8;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        transform: translateX(-100%);
        transition: transform var(--transition-normal);
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }
}

.nav-link {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
}

@media (min-width: 1600px) {
    .nav-link {
        font-size: 1rem;
        padding: 0.625rem 1.25rem;
    }
}

@media (min-width: 1920px) {
    .nav-link {
        font-size: 1.0625rem;
        padding: 0.75rem 1.5rem;
    }
}

.nav-link:hover {
    color: var(--color-primary);
    background: rgba(255, 102, 0, 0.08);
}

.nav-link.active {
    color: var(--color-primary);
    background: rgba(255, 102, 0, 0.1);
}

.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1600px) {
    .footer-container {
        padding: 0 2rem;
    }
}

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 2fr;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 1600px) {
    .footer-logo {
        font-size: 2.5rem;
    }
}

@media (min-width: 1920px) {
    .footer-logo {
        font-size: 3rem;
    }
}

.footer-subtitle {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.footer-links-group {
    min-width: 0;
}

.footer-heading {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
}

@media (min-width: 1600px) {
    .footer-heading {
        font-size: 1.125rem;
    }
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav .nav-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.25rem 0;
    font-size: 0.875rem;
}

@media (min-width: 1600px) {
    .footer-nav .nav-link {
        font-size: 0.9375rem;
    }
}

.footer-nav .nav-link:hover {
    color: white;
    background: transparent;
    padding-left: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 1600px) {
    .footer-copyright {
        font-size: 0.9375rem;
    }
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal .nav-link {
    color: rgba(255, 255, 255, 0.6);
    padding: 0;
    font-size: 0.875rem;
}

@media (min-width: 1600px) {
    .footer-legal .nav-link {
        font-size: 0.9375rem;
    }
}

.footer-legal .nav-link:hover {
    color: white;
    background: transparent;
}

@media (max-width: 991.98px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.btn-back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 1600px) {
    .btn-back-to-top {
        width: 3.5rem;
        height: 3.5rem;
        bottom: 2rem;
        right: 2rem;
    }
}

.btn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-back-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-4px);
}

.btn-back-to-top:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.3);
}

.breadcrumb-container {
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    background: var(--color-background);
    border-radius: var(--border-radius);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0.5rem 1rem;
    margin: 0;
    list-style: none;
    font-size: 0.875rem;
    background: transparent;
}

@media (min-width: 1600px) {
    .breadcrumb {
        font-size: 0.9375rem;
    }
}

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

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 0.5rem;
    color: var(--color-text-muted);
}

.breadcrumb-item a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--color-primary);
}

.breadcrumb-item.active {
    color: var(--color-text);
}

.page-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 1600px) {
    .page-header h1 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1920px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
}

.page-header h1 .icon {
    color: var(--color-primary);
}

.page-header .subtitle {
    color: var(--color-text-muted);
    margin-top: 0.5rem;
    font-size: 1rem;
}

@media (min-width: 1600px) {
    .page-header .subtitle {
        font-size: 1.0625rem;
    }
}

.card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.card-header {
    background: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 1.25rem;
    font-weight: 600;
}

.card-header:first-child {
    border-radius: calc(var(--border-radius-lg) - 1px) calc(var(--border-radius-lg) - 1px) 0 0;
}

.card-body {
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-footer {
    background: var(--color-background);
    border-top: 1px solid var(--color-border);
    padding: 1rem 1.25rem;
}

.card-footer:last-child {
    border-radius: 0 0 calc(var(--border-radius-lg) - 1px) calc(var(--border-radius-lg) - 1px);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

@media (min-width: 1600px) {
    .section-title {
        font-size: 1.75rem;
    }
}

@media (min-width: 1920px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.text-teko {
    color: var(--color-primary) !important;
}

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

.border-teko {
    border-color: var(--color-primary) !important;
}

.border-start-teko {
    border-left-color: var(--color-primary) !important;
}

.btn-teko {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.625rem 1.25rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
}

.btn-teko:hover {
    background: var(--color-primary-dark);
    color: white;
}

.btn-outline-teko {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 0.5rem 1.125rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
}

.btn-outline-teko:hover {
    background: var(--color-primary);
    color: white;
}

.feature-box {
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
    transition: all var(--transition-normal);
}

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

.feature-box .icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 102, 0, 0.1);
    color: var(--color-primary);
    border-radius: var(--border-radius);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-box h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-box p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin: 0;
}

.testimonial-box {
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
    position: relative;
}

.testimonial-box::before {
    content: """;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--color-primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.testimonial-info h5 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0;
}

.testimonial-info p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin: 0;
}

.service-card {
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all var(--transition-normal);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.service-card .icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
    border-radius: 50%;
    font-size: 2rem;
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-text-muted);
    margin: 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-background);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.contact-info-item .icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: white;
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.contact-info-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
}

.contact-info-item p {
    color: var(--color-text-muted);
    margin: 0;
    font-size: 0.9375rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text);
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
}

@media (min-width: 1600px) {
    .form-control {
        font-size: 1.0625rem;
    }
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.15);
}

.form-control::placeholder {
    color: var(--color-text-muted);
    opacity: 1;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--color-text);
    pointer-events: none;
}

.select-wrapper select.form-control {
    appearance: none;
    padding-right: 2.5rem;
}

.error-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--color-background);
}

.error-content {
    text-align: center;
    max-width: 500px;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 1rem;
}

@media (min-width: 1600px) {
    .error-code {
        font-size: 10rem;
    }
}

.error-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

@media (min-width: 1600px) {
    .error-title {
        font-size: 2.25rem;
    }
}

.error-message {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

@media (min-width: 1600px) {
    .error-message {
        font-size: 1.25rem;
    }
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 575.98px) {
    .error-code {
        font-size: 5rem;
    }

    .error-title {
        font-size: 1.5rem;
    }

    .error-actions {
        flex-direction: column;
    }
}

.loading-skeleton {
    background: linear-gradient(90deg, var(--color-border) 25%, #f0f0f0 50%, var(--color-border) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--border-radius);
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.fade-in {
    animation: fadeIn var(--transition-normal);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp var(--transition-normal);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
:root {
    --teko-primary: #ff6600;
    --teko-secondary: #777777;
    --teko-dark: #222222;
    --teko-light: #f8f9fa;
}

body {
    font-family: "Roboto", sans-serif;
}

p {
    color: #222222;
    font-family: "Roboto", sans-serif;
}

.f-teko {
    font-family: 'Roboto', sans-serif;
}

.f-net {
    font-family: 'Roboto', sans-serif;
}

.text-teko {
    color: #ff6600!important;
}

.text-net {
    font-family: 'Roboto', monospace, sans-serif;
    color: #777777!important;
}

.bg-teko {
    background-color: #ff6600!important;
}

.bg-net {
    background-color: #777777!important;
}

.border-teko {
    border-color: #ff6600!important;
}

.page-title {
    border-color: #ff6600!important;
    border-left: 5px;
}

.border-end-teko {
    border-right-color: #ff6600;
}

.border-top-teko {
    border-top-color: #ff6600;
}

.border-bottom-teko {
    border-bottom-color: #ff6600;
}

.dropdown-menu {
    min-width: 50rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

#message {
    height: 100px;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-teko {
    color: #FFFFFF;
    background: #ff6600;
    border-color: #ff6600;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 25px 0;
    color: var(--secondary);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
    text-decoration: underline;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.fixed-img {
    height: 200px;           /* ou 180px, ou o valor desejado */
    object-fit: cover;       /* faz a imagem preencher sem distorcer */
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 25px;
        border-top: 1px solid #EEEEEE;
    }

    .navbar-collapse {
        background-color: white;
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 0.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        border: none;
        margin-top: 0;
        right: 0;
        left: auto;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}

/*** Header ***/
.carousel-caption {
    background: rgba(0, 0, 0, .65);
}

.carousel-indicators [data-bs-target] {
    background-color: rgba(255, 255, 255, 0.6);
}

.carousel-indicators .active {
    background-color: var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
        border-width: 12px;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}

/*** Facts ***/
.facts-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, .65);
}

.facts-overlay h1 {
    font-size: 120px;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
}

.facts-overlay a:hover {
    color: var(--primary) !important;
}

/*** Service ***/
.service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: var(--primary);
    opacity: 0;
    transition: .5s;
}

.service-item:hover .service-text::before {
    height: 100%;
    opacity: 1;
}

.service-text * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-text * {
    color: #FFFFFF !important;
}

/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/8.jpg) center center no-repeat;
    background-size: cover;
}

/*** Team ***/
.team-text {
    position: absolute;
    width: 75%;
    bottom: 30px;
    left: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    width: 100%;
}

.team-text * {
    transition: .5s;
}

.team-item:hover .team-text * {
    letter-spacing: 2px;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}

/*** Footer ***/
.footer {
    color: #999999;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.gcse-search, .gcse-searchresults {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

/*** Pagination ***/
.pagination .page-link {
    color: #ff6600 !important;
    border-color: #dee2e6;
    padding: 8px 16px;
    margin: 0 2px;
    border-radius: 6px;
}

.pagination .page-item.active .page-link {
    background-color: #ff6600 !important;
    border-color: #ff6600 !important;
    color: #fff !important;
}

.pagination .page-item.disabled .page-link {
    color: #adb5bd !important;
    background-color: transparent;
    border-color: transparent;
}

.pagination .page-link:hover {
    color: #e55b00 !important;
    background-color: #f8f9fa;
    border-color: #ff6600;
}

.pagination .page-item {
    margin: 0 2px;
}

.search-result-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    flex-shrink: 0;
    background-color: #f8f9fa;
}
.error-section {
    padding: 3rem 0;
}

.error-icon {
    font-size: 5rem;
    color: var(--teko-primary);
    margin-bottom: 1.5rem;
}

.error-code {
    font-size: 8rem;
    font-weight: 900;
    color: #222222;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.error-title {
    font-size: 2rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.error-support {
    padding-top: 1.5rem;
    border-top: 1px solid #dee2e6;
    margin-top: 1.5rem;
}

.error-support p {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.error-support a {
    color: var(--teko-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.error-support a:hover {
    color: #ff8533;
    text-decoration: underline;
}

.error-debug {
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: left;
    font-size: 0.9rem;
    color: #6c757d;
    word-break: break-word;
    border: 1px solid #dee2e6;
}

.error-debug strong {
    color: #ffc107;
    display: block;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .error-code {
        font-size: 5rem;
    }

    .error-icon {
        font-size: 3.5rem;
    }

    .error-title {
        font-size: 1.5rem;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-actions .btn {
        width: 100%;
    }
}
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-sources {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-sources-label {
    font-weight: 600;
    color: #6c757d;
    margin-right: 0.5rem;
}

.blog-source-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    background-color: var(--source-color, #6c757d);
    color: white;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
}

.blog-filters .btn.active {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.blog-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-article-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-article-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.blog-article-card.hidden {
    display: none;
}

.blog-article-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-article-source {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background-color: var(--source-color, #6c757d);
    color: white;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
}

.blog-article-source:hover {
    color: white;
    opacity: 0.9;
}

.blog-article-date {
    font-size: 0.75rem;
    color: #6c757d;
}

.blog-article-title {
    margin-bottom: 0.5rem;
}

.blog-article-title a {
    color: #212529;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-article-title a:hover {
    color: var(--bs-primary);
}

.blog-article-description {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-article-time {
    font-size: 0.75rem;
    color: #adb5bd;
}

.blog-loading {
    text-align: center;
    padding: 3rem;
}

.blog-empty {
    text-align: center;
    padding: 3rem;
}

@media (max-width: 768px) {
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-filters {
        justify-content: center;
    }

    .blog-article-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}
.portfolio-filters {
    position: sticky;
    top: 70px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
}

.portfolio-filters .btn.active {
    background-color: var(--bs-primary);
    color: white;
    border-color: var(--bs-primary);
}

.portfolio-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.portfolio-card .badge.bg-teko {
    background-color: #ff6600 !important;
}

.portfolio-card .card-title {
    color: #333;
}

.portfolio-item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-item.hidden {
    display: none;
}

@media (max-width: 768px) {
    .portfolio-filters {
        position: static;
    }

    .portfolio-filters .btn {
        margin-bottom: 0.5rem;
    }
}
/**
 * Shopping Page Styles
 */

:root {
    --teko-primary: #ff6600;
}

.shopping-section {
    margin-bottom: 3rem;
}

.shopping-section__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--bs-body-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shopping-section__title i {
    color: #ff6600;
}

.shopping-section__subtitle {
    font-size: 0.9rem;
    color: var(--bs-secondary);
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

/* Category Filter */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--bs-secondary-bg);
    border-radius: 0.5rem;
}

.category-filter__item {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    text-decoration: none;
    color: var(--bs-body-color);
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.category-filter__item:hover {
    border-color: #ff6600;
    color: #ff6600;
}

.category-filter__item.active {
    background: #ff6600;
    border-color: #ff6600;
    color: white;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

/* Product Card */
.product-card {
    position: relative;
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #ff6600;
}

.product-card--featured {
    border-color: #ff6600;
    border-width: 2px;
}

.product-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 10;
    background: #ff6600;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-card--featured .product-card__badge {
    background: linear-gradient(135deg, #ff6600, #e74c3c);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
}

.product-card__discount {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10;
    background: #27ae60;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.product-card__sponsor {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
}

.product-card__network {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
}

.product-card__network--hotmart {
    background: #ff6b35;
}

.product-card__network--monetizze {
    background: #2ecc71;
}

.product-card__network--amazon {
    background: #ff9900;
    color: #111;
}

.product-card__badge-sale {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    z-index: 10;
    background: #e74c3c;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
}

.product-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card__image-wrapper {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bs-secondary-bg);
    position: relative;
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card__image {
    transform: scale(1.05);
}

.product-card__content {
    padding: 1rem;
}

.product-card__title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--bs-body-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.product-card__instructor {
    font-size: 0.75rem;
    color: var(--bs-secondary);
    margin-bottom: 0.5rem;
}

.product-card__rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    color: #ff6600;
}

.product-card__rating i {
    width: 12px;
}

.product-card__reviews {
    color: var(--bs-secondary);
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

.product-card__students {
    color: var(--bs-secondary);
    font-size: 0.75rem;
    margin-left: 0.5rem;
    background: var(--bs-secondary-bg);
    padding: 0.1rem 0.4rem;
    border-radius: 0.25rem;
}

.product-card__price-wrapper {
    margin-bottom: 0.75rem;
}

.product-card__price-original {
    display: block;
    font-size: 0.8rem;
    color: var(--bs-secondary);
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.product-card__price-original--subtle {
    font-size: 0.8rem;
    color: var(--bs-secondary);
    opacity: 0.7;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    display: block;
}

.product-card__avista-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    background: var(--bs-secondary-bg);
    padding: 0.15rem 0.35rem;
    border-radius: 0.25rem;
    margin-right: 0.35rem;
    opacity: 0.7;
    display: inline-block;
    vertical-align: middle;
}

.product-card__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #27ae60;
}

.product-card__installments {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
    padding: 0.6rem 0.8rem;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 0.5rem;
    color: white;
    font-weight: 600;
}

.product-card__installments-text {
    font-size: 0.85rem;
    opacity: 0.95;
}

.product-card__installments-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
}

.product-card__installments-sufix {
    font-size: 0.75rem;
    opacity: 0.85;
}

.product-card__btn {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #ff6600, #e74c3c);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-card__btn:hover {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    transform: scale(1.02);
}

/* Sponsored Section */
.sponsored-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    border: 2px dashed #ff6600;
}

.sponsored-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.sponsored-section__title {
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sponsored-cta {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 0.75rem;
    border: 2px dashed var(--bs-border-color);
}

.sponsored-cta__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sponsored-cta__price {
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sponsored-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #ff6600;
    color: white;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease;
}

.sponsored-cta__btn:hover {
    background: #e67e22;
    color: white;
}

/* Digital Products Section */
.digital-products-section {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    color: white;
}

.digital-products-section .shopping-section__title {
    color: white;
}

.digital-products-section .shopping-section__title i {
    color: #ff6600;
}

.digital-products-section .category-filter {
    background: rgba(255, 255, 255, 0.1);
}

.digital-products-section .category-filter__item {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.digital-products-section .category-filter__item:hover,
.digital-products-section .category-filter__item.active {
    background: #ff6600;
    border-color: #ff6600;
    color: white;
}

/* Network Info Bar */
.network-info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--bs-secondary-bg);
    border-radius: 0.5rem;
}

.network-info-card {
    flex: 1;
    min-width: 150px;
    padding: 1rem;
    background: var(--bs-body-bg);
    border-radius: 0.5rem;
    border: 1px solid var(--bs-border-color);
    text-align: center;
}

.network-info-card__name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.network-info-card__commission {
    font-size: 0.875rem;
    color: #27ae60;
    margin-bottom: 0.25rem;
}

.network-info-card__count {
    font-size: 0.75rem;
    color: var(--bs-secondary);
}

/* Featured Products Carousel */
.featured-products {
    margin-bottom: 3rem;
}

.featured-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Horizontal Variant */
.product-card--horizontal {
    display: flex;
    flex-direction: row;
}

.product-card--horizontal .product-card__image-wrapper {
    width: 120px;
    flex-shrink: 0;
    aspect-ratio: 1;
}

.product-card--horizontal .product-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-card__title {
        font-size: 0.85rem;
    }

    .product-card__price {
        font-size: 1.1rem;
    }

    .sponsored-section__header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .category-filter {
        justify-content: center;
    }

    .network-info-bar {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card--horizontal {
        flex-direction: column;
    }

    .product-card--horizontal .product-card__image-wrapper {
        width: 100%;
    }
}

/* Loading State */
.product-card--loading {
    opacity: 0.6;
    pointer-events: none;
}

.product-card--loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
/**
 * Chatbot Styles
 */

:root {
    --teko-primary: #ff6600;
}

.chatbot-container {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 200px);
    min-height: 500px;
    max-height: 700px;
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    overflow: hidden;
}

/* Header */
.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
}

.chatbot-header__title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.chatbot-header__icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-header__actions {
    display: flex;
    gap: 0.5rem;
}

.chatbot-header__btn {
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 0.5rem;
    color: white;
    cursor: pointer;
    transition: background 0.2s ease;
}

.chatbot-header__btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Messages Area */
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--bs-secondary-bg);
}

.chatbot-messages::-webkit-scrollbar {
    width: 8px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: var(--bs-secondary-bg);
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: var(--bs-border-color);
    border-radius: 4px;
}

/* Message Bubbles */
.chatbot-message {
    display: flex;
    gap: 0.75rem;
    max-width: 85%;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-message--user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.chatbot-message--assistant {
    align-self: flex-start;
}

.chatbot-message__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.chatbot-message--user .chatbot-message__avatar {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.chatbot-message--assistant .chatbot-message__avatar {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: white;
}

.chatbot-message__bubble {
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.chatbot-message--user .chatbot-message__bubble {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-bottom-right-radius: 0.25rem;
}

.chatbot-message--assistant .chatbot-message__bubble {
    background: var(--bs-body-bg);
    color: var(--bs-body-color);
    border: 1px solid var(--bs-border-color);
    border-bottom-left-radius: 0.25rem;
}

.chatbot-message__bubble p {
    margin-bottom: 0.5rem;
}

.chatbot-message__bubble p:last-child {
    margin-bottom: 0;
}

.chatbot-message__bubble code {
    background: rgba(0, 0, 0, 0.1);
    padding: 0.1rem 0.3rem;
    border-radius: 0.25rem;
    font-size: 0.85em;
    font-family: 'Courier New', monospace;
}

.chatbot-message--user .chatbot-message__bubble code {
    background: rgba(255, 255, 255, 0.2);
}

.chatbot-message__bubble pre {
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 0.75rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 0.5rem 0;
}

.chatbot-message__bubble pre code {
    background: none;
    padding: 0;
}

/* Typing Indicator */
.chatbot-typing {
    display: flex;
    gap: 0.75rem;
    max-width: 85%;
    align-self: flex-start;
}

.chatbot-typing__avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #11998e, #38ef7d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.chatbot-typing__bubble {
    padding: 0.75rem 1rem;
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    border-bottom-left-radius: 0.25rem;
}

.chatbot-typing__dots {
    display: flex;
    gap: 4px;
}

.chatbot-typing__dot {
    width: 8px;
    height: 8px;
    background: var(--bs-secondary);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.chatbot-typing__dot:nth-child(1) {
    animation-delay: 0s;
}

.chatbot-typing__dot:nth-child(2) {
    animation-delay: 0.2s;
}

.chatbot-typing__dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-8px);
    }
}

/* Input Area */
.chatbot-input {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--bs-body-bg);
    border-top: 1px solid var(--bs-border-color);
}

.chatbot-input__field {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--bs-border-color);
    border-radius: 2rem;
    font-size: 0.95rem;
    background: var(--bs-secondary-bg);
    color: var(--bs-body-color);
    transition: border-color 0.2s ease;
}

.chatbot-input__field:focus {
    outline: none;
    border-color: #667eea;
}

.chatbot-input__field::placeholder {
    color: var(--bs-secondary);
}

.chatbot-input__btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-input__btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.chatbot-input__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Sidebar */
.chatbot-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: var(--bs-body-bg);
    border-right: 1px solid var(--bs-border-color);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.chatbot-sidebar.open {
    transform: translateX(0);
    display: flex;
    flex-direction: column;
}

.chatbot-sidebar__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.chatbot-sidebar__overlay.open {
    display: block;
}

.chatbot-sidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--bs-border-color);
}

.chatbot-sidebar__title {
    font-weight: 600;
}

.chatbot-sidebar__close {
    padding: 0.5rem;
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--bs-secondary);
}

.chatbot-sidebar__new {
    margin: 1rem;
    padding: 0.75rem;
    width: calc(100% - 2rem);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.chatbot-sidebar__list {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem;
}

.chatbot-sidebar__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.chatbot-sidebar__item:hover {
    background: var(--bs-secondary-bg);
}

.chatbot-sidebar__item.active {
    background: var(--bs-secondary-bg);
}

.chatbot-sidebar__item-icon {
    width: 32px;
    height: 32px;
    background: var(--bs-secondary-bg);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
}

.chatbot-sidebar__item-info {
    flex: 1;
    min-width: 0;
}

.chatbot-sidebar__item-title {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chatbot-sidebar__item-date {
    font-size: 0.75rem;
    color: var(--bs-secondary);
}

/* Welcome Screen */
.chatbot-welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 2rem;
}

.chatbot-welcome__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.chatbot-welcome__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.chatbot-welcome__subtitle {
    color: var(--bs-secondary);
    margin-bottom: 2rem;
}

.chatbot-welcome__suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    max-width: 400px;
}

.chatbot-welcome__suggestion {
    padding: 0.5rem 1rem;
    background: var(--bs-secondary-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 2rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chatbot-welcome__suggestion:hover {
    border-color: #667eea;
    color: #667eea;
}

/* Responsive */
@media (max-width: 768px) {
    .chatbot-container {
        height: calc(100vh - 100px);
        min-height: 400px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .chatbot-message {
        max-width: 90%;
    }

    .chatbot-welcome__suggestions {
        max-width: 100%;
    }
}
/**
 * Password Generator Styles
 */

.password-generator {
    max-width: 600px;
    margin: 0 auto;
}

.password-generator__card {
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.password-generator__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--bs-body-color);
}

/* Length Slider */
.password-generator__length {
    margin-bottom: 1.5rem;
}

.password-generator__length-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.password-generator__length-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f39c12;
}

.password-generator__length input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--bs-secondary-bg);
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.password-generator__length input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f39c12, #e74c3c);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.password-generator__length input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.password-generator__length input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f39c12, #e74c3c);
    cursor: pointer;
    border: none;
}

/* Character Options */
.password-generator__options {
    margin-bottom: 1.5rem;
}

.password-generator__option {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: var(--bs-secondary-bg);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.password-generator__option:hover {
    background: var(--bs-border-color);
}

.password-generator__option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    accent-color: #f39c12;
    cursor: pointer;
}

.password-generator__option-label {
    flex: 1;
    font-weight: 500;
}

.password-generator__option-count {
    font-size: 0.875rem;
    color: var(--bs-secondary);
    background: var(--bs-body-bg);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

/* Generate Button */
.password-generator__btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #f39c12, #e74c3c);
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.password-generator__btn:hover {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4);
}

.password-generator__btn:active {
    transform: translateY(0);
}

/* Result Display */
.password-generator__result {
    position: relative;
    margin-bottom: 1.5rem;
}

.password-generator__password {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.25rem;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    background: var(--bs-secondary-bg);
    border: 2px solid var(--bs-border-color);
    border-radius: 0.5rem;
    color: var(--bs-body-color);
    word-break: break-all;
}

.password-generator__actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.password-generator__action-btn {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--bs-border-color);
    border-radius: 0.5rem;
    background: var(--bs-body-bg);
    color: var(--bs-body-color);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.password-generator__action-btn:hover {
    border-color: #f39c12;
    color: #f39c12;
}

.password-generator__action-btn.copied {
    background: #27ae60;
    border-color: #27ae60;
    color: white;
}

/* Strength Meter */
.password-generator__strength {
    margin-bottom: 1.5rem;
}

.password-generator__strength-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.password-generator__strength-bar {
    height: 8px;
    background: var(--bs-secondary-bg);
    border-radius: 4px;
    overflow: hidden;
}

.password-generator__strength-fill {
    height: 100%;
    width: 0%;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.password-generator__strength-fill.weak {
    width: 25%;
    background: #e74c3c;
}

.password-generator__strength-fill.medium {
    width: 50%;
    background: #f39c12;
}

.password-generator__strength-fill.strong {
    width: 75%;
    background: #3498db;
}

.password-generator__strength-fill.very-strong {
    width: 100%;
    background: #27ae60;
}

/* Memorable Mode */
.password-generator__memorable {
    margin-bottom: 1.5rem;
}

.password-generator__memorable-label {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(231, 76, 60, 0.1));
    border: 1px solid rgba(243, 156, 18, 0.3);
    border-radius: 0.5rem;
    cursor: pointer;
}

.password-generator__memorable-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    accent-color: #f39c12;
}

.password-generator__memorable-info {
    font-size: 0.875rem;
    color: var(--bs-secondary);
    margin-top: 0.5rem;
    padding-left: 2.25rem;
}

/* Bulk Generation */
.password-generator__bulk {
    margin-bottom: 1.5rem;
}

.password-generator__bulk-btn {
    width: 100%;
    padding: 0.75rem;
    border: 1px dashed var(--bs-border-color);
    border-radius: 0.5rem;
    background: transparent;
    color: var(--bs-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.password-generator__bulk-btn:hover {
    border-color: #f39c12;
    color: #f39c12;
    background: rgba(243, 156, 18, 0.05);
}

.password-generator__bulk-results {
    margin-top: 1rem;
}

.password-generator__bulk-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    background: var(--bs-secondary-bg);
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
}

.password-generator__bulk-copy {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border: 1px solid var(--bs-border-color);
    border-radius: 0.25rem;
    background: var(--bs-body-bg);
    cursor: pointer;
}

/* History */
.password-generator__history {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bs-border-color);
}

.password-generator__history-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.password-generator__history-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.password-generator__history-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    background: var(--bs-secondary-bg);
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

.password-generator__history-copy {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border: 1px solid var(--bs-border-color);
    border-radius: 0.25rem;
    background: var(--bs-body-bg);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .password-generator__card {
        padding: 1.5rem;
    }

    .password-generator__result {
        margin-bottom: 1rem;
    }

    .password-generator__password {
        font-size: 1rem;
        padding: 1rem;
    }

    .password-generator__actions {
        flex-direction: column;
    }
}
