/* ============================================
   CHOMP THEME SYSTEM
   Primary:    --theme-dark     (#0B0B0B)
   Secondary:  --theme-light    (#F3E8D6)
   Accent:     --theme-accent   (#FF8A17)

   To change the theme, update these three variables.

   Examples:
   Blue Professional Theme
   --theme-dark: #1a365d;
   --theme-light: #f7fafc;
   --theme-accent: #3182ce;

   Green Nature Theme
   --theme-dark: #1a4731;
   --theme-light: #f0fff4;
   --theme-accent: #38a169;

   Purple Creative Theme
   --theme-dark: #2d3748;
   --theme-light: #faf5ff;
   --theme-accent: #805ad5;
   ============================================ */

:root {
    /* Core Theme Colors */
    --theme-dark: #0B0B0B;
    --theme-light: #F3E8D6;
    --theme-accent: #FF8A17;

    /* Derived Colors */
    --theme-dark-rgb: 11, 11, 11;
    --theme-light-rgb: 243, 232, 214;
    --theme-accent-rgb: 255, 138, 23;

    /* Shades */
    --theme-dark-hover: #1a1a1a;
    --theme-light-hover: #e8dcc8;
    --theme-accent-hover: #e67a10;
    --theme-accent-light: rgba(255, 138, 23, 0.1);
    --theme-accent-lighter: rgba(255, 138, 23, 0.05);

    /* Text Colors */
    --text-primary: var(--theme-dark);
    --text-secondary: #555555;
    --text-muted: #777777;
    --text-on-dark: var(--theme-light);
    --text-on-accent: #ffffff;

    /* Backgrounds */
    --bg-body: #ffffff;
    --bg-light: var(--theme-light);
    --bg-dark: var(--theme-dark);
    --bg-card: #ffffff;

    /* Borders */
    --border-color: rgba(11, 11, 11, 0.1);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(11, 11, 11, 0.06);
    --shadow-md: 0 4px 20px rgba(11, 11, 11, 0.08);
    --shadow-lg: 0 8px 40px rgba(11, 11, 11, 0.12);
    --shadow-accent: 0 4px 20px rgba(255, 138, 23, 0.3);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Spacing */
    --section-padding: 100px;
    --container-padding: 20px;
}

/* ============================================
   BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    color: var(--theme-accent);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--theme-accent-hover);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.section-padding {
    padding: var(--section-padding) 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--theme-accent);
    margin-top: 15px;
    border-radius: 2px;
}

.section-title.text-center::after {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
}

.section-subtitle.text-center {
    margin-left: auto;
    margin-right: auto;
}

.text-accent {
    color: var(--theme-accent) !important;
}

.bg-theme-dark {
    background-color: var(--bg-dark) !important;
    color: var(--text-on-dark);
}

.bg-theme-light {
    background-color: var(--bg-light) !important;
}

.bg-theme-accent {
    background-color: var(--theme-accent) !important;
    color: var(--text-on-accent);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-base);
    border: 2px solid transparent;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.btn-primary-custom {
    background-color: var(--theme-accent);
    color: var(--text-on-accent);
    border-color: var(--theme-accent);
}

.btn-primary-custom:hover {
    background-color: var(--theme-accent-hover);
    border-color: var(--theme-accent-hover);
    color: var(--text-on-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-dark-custom {
    background-color: var(--theme-dark);
    color: var(--text-on-dark);
    border-color: var(--theme-dark);
}

.btn-dark-custom:hover {
    background-color: var(--theme-dark-hover);
    border-color: var(--theme-dark-hover);
    color: var(--text-on-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--theme-dark);
    border-color: var(--theme-dark);
}

.btn-outline-custom:hover {
    background-color: var(--theme-dark);
    color: var(--text-on-dark);
    transform: translateY(-2px);
}

.btn-outline-light-custom {
    background-color: transparent;
    color: var(--theme-light);
    border-color: var(--theme-light);
}

.btn-outline-light-custom:hover {
    background-color: var(--theme-light);
    color: var(--theme-dark);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar-custom {
    background-color: var(--bg-dark);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition-base);
}

.navbar-custom.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar-custom .navbar-brand {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--theme-light) !important;
    letter-spacing: -0.5px;
}

.navbar-custom .navbar-brand span {
    color: var(--theme-accent);
}

.navbar-custom .nav-link {
    color: rgba(243, 232, 214, 0.8) !important;
    font-weight: 500;
    padding: 10px 20px !important;
    margin: 0 2px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--theme-light) !important;
    background-color: rgba(255, 138, 23, 0.15);
}

.navbar-custom .nav-link.active {
    color: var(--theme-accent) !important;
}

.navbar-toggler {
    border: none;
    padding: 10px;
}

.navbar-toggler-icon {
    background-color: var(--theme-accent);

    -webkit-mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") center/contain no-repeat;

    mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") center/contain no-repeat;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='[w3.org](http://www.w3.org/2000/svg)' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(243, 232, 214, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-cta {
    background-color: var(--theme-accent) !important;
    color: var(--text-on-accent) !important;
    margin-left: 10px;
}

.nav-cta:hover {
    background-color: var(--theme-accent-hover) !important;
}

.nav-logo {
    width: 150px;
    height: 42px;
    object-fit: contain;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--theme-dark) 0%, #1a1a1a 100%);
    color: var(--text-on-dark);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 138, 23, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 138, 23, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.hero h1 {
    color: var(--theme-light);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero h1 span {
    color: var(--theme-accent);
}

.hero p {
    color: rgba(243, 232, 214, 0.85);
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Page Hero (smaller) */
.page-hero {
    background: linear-gradient(135deg, var(--theme-dark) 0%, #1a1a1a 100%);
    color: var(--text-on-dark);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 138, 23, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero h1 {
    color: var(--theme-light);
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(243, 232, 214, 0.8);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb-custom {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
    justify-content: center;
}

.breadcrumb-custom .breadcrumb-item {
    color: rgba(243, 232, 214, 0.6);
    font-size: 0.9rem;
}

.breadcrumb-custom .breadcrumb-item a {
    color: rgba(243, 232, 214, 0.6);
}

.breadcrumb-custom .breadcrumb-item a:hover {
    color: var(--theme-accent);
}

.breadcrumb-custom .breadcrumb-item.active {
    color: var(--theme-accent);
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(243, 232, 214, 0.4);
}

/* ============================================
   CARDS
   ============================================ */

.card {
    border: none;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    background: var(--bg-card);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    border-color: var(--theme-accent);
}

.service-card .card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0;
}

.service-card .text-muted {
    flex-grow: 1;
}

.badge-custom {
    display: inline-block;
    background-color: var(--theme-accent-light);
    color: var(--theme-accent);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Feature Card */
.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.feature-card:hover {
    border-color: var(--theme-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--theme-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--theme-accent);
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: var(--theme-accent);
    color: var(--text-on-accent);
}

/* Team Card */
.team-card {
    text-align: center;
    padding: 30px;
}

.team-card .team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--theme-accent-light);
    transition: var(--transition-base);
}

.team-card:hover .team-img {
    border-color: var(--theme-accent);
}

.team-card h5 {
    margin-bottom: 5px;
}

.team-card .role {
    color: var(--theme-accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-secondary);
    margin: 0 5px;
    transition: var(--transition-fast);
}

.team-socials a:hover {
    background: var(--theme-accent);
    color: var(--text-on-accent);
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    background: var(--bg-dark);
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--theme-accent);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(243, 232, 214, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 6rem;
    color: var(--theme-accent-light);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 25px;
    padding-top: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h6 {
    margin-bottom: 3px;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   FORMS
   ============================================ */

.form-control, .form-select {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    transition: var(--transition-fast);
    background-color: var(--bg-card);
}

.form-control:focus, .form-select:focus {
    border-color: var(--theme-accent);
    box-shadow: 0 0 0 4px var(--theme-accent-light);
    background-color: var(--bg-card);
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--bg-dark);
    color: var(--text-on-dark);
    padding: 80px 0 30px;
}

.footer-brand {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--theme-light);
    margin-bottom: 15px;
    display: inline-block;
}

.footer-brand span {
    color: var(--theme-accent);
}

.footer-text {
    color: rgba(243, 232, 214, 0.7);
    max-width: 300px;
    line-height: 1.7;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--theme-light);
    margin-bottom: 25px;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(243, 232, 214, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--theme-accent);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(243, 232, 214, 0.1);
    color: var(--theme-light);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--theme-accent);
    color: var(--text-on-accent);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(243, 232, 214, 0.1);
    padding-top: 30px;
    margin-top: 60px;
}

.footer-bottom p {
    color: rgba(243, 232, 214, 0.5);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(243, 232, 214, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--theme-accent);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--theme-accent) 0%, #e67a10 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--text-on-accent);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* ============================================
   DASHBOARD STYLES
   ============================================ */

.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
    padding-top: 70px;
}

.sidebar {
    width: 280px;
    background: var(--bg-dark);
    padding: 30px 20px;
    position: fixed;
    top: 70px;
    left: 0;
    height: calc(100vh - 70px);
    overflow-y: auto;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 5px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: rgba(243, 232, 214, 0.7);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    font-weight: 500;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: rgba(255, 138, 23, 0.15);
    color: var(--theme-accent);
}

.sidebar-menu a.active {
    background: var(--theme-accent);
    color: var(--text-on-accent);
}

.sidebar-divider {
    border-top: 1px solid rgba(243, 232, 214, 0.1);
    margin: 20px 0;
}

.sidebar-title {
    color: rgba(243, 232, 214, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 18px;
    margin-bottom: 10px;
}

.dashboard-content {
    flex: 1;
    margin-left: 280px;
    padding: 30px;
    background: var(--bg-light);
    min-height: calc(100vh - 70px);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.dashboard-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.dashboard-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dashboard-stat {
    padding: 30px;
}

.dashboard-stat .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.dashboard-stat .stat-icon.primary {
    background: var(--theme-accent-light);
    color: var(--theme-accent);
}

.dashboard-stat .stat-icon.success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.dashboard-stat .stat-icon.info {
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
}

.dashboard-stat .stat-icon.warning {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.dashboard-stat h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.dashboard-stat p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.progress-custom {
    height: 8px;
    border-radius: 4px;
    background: var(--bg-light);
}

.progress-custom .progress-bar {
    background: var(--theme-accent);
    border-radius: 4px;
}

/* ============================================
   TABLES
   ============================================ */

.table-custom {
    background: var(--bg-card);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.table-custom thead {
    background: var(--bg-light);
}

.table-custom thead th {
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
    padding: 16px 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-custom tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.table-custom tbody tr:last-child td {
    border-bottom: none;
}

.table-custom tbody tr:hover {
    background: var(--theme-accent-lighter);
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.active {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.status-badge.pending {
    background: rgba(255, 193, 7, 0.1);
    color: #d39e00;
}

.status-badge.inactive {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

/* ============================================
   TIMELINE
   ============================================ */

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--theme-accent);
    border: 3px solid var(--bg-card);
}

.timeline-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.timeline-title {
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================
   JOB LISTINGS (Careers Page)
   ============================================ */

.job-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    transition: var(--transition-base);
}

.job-card:hover {
    border-color: var(--theme-accent);
    box-shadow: var(--shadow-md);
}

.job-card .job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
    flex-wrap: wrap;
}

.job-card h4 {
    margin-bottom: 5px;
}

.job-card .job-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.job-card .job-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.job-tag {
    background: var(--bg-light);
    color: var(--text-secondary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    text-align: center;
    transition: var(--transition-base);
    height: 100%;
}

.contact-info-card:hover {
    border-color: var(--theme-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-info-card .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--theme-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--theme-accent);
}

.contact-info-card h5 {
    margin-bottom: 10px;
}

.contact-info-card p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.contact-info-card a {
    color: var(--theme-accent);
    font-weight: 600;
}

.map-container {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ============================================
   VALUES SECTION
   ============================================ */

.value-card {
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition-base);
    height: 100%;
}

.value-card:hover {
    border-color: var(--theme-accent);
    transform: translateY(-5px);
}

.value-card .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--theme-accent);
    line-height: 1;
    margin-bottom: 15px;
}

.value-card h4 {
    margin-bottom: 15px;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.accordion-custom .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md) !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-custom .accordion-button {
    font-weight: 600;
    padding: 20px 25px;
    background: var(--bg-card);
    color: var(--text-primary);
    box-shadow: none;
}

.accordion-custom .accordion-button:not(.collapsed) {
    background: var(--theme-accent-light);
    color: var(--theme-accent);
}

.accordion-custom .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.accordion-custom .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='[w3.org](http://www.w3.org/2000/svg)' viewBox='0 0 16 16' fill='%23FF8A17'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-custom .accordion-body {
    padding: 20px 25px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 991px) {
    .sidebar {
        transform: translateX(-100%);
        transition: var(--transition-base);
        z-index: 999;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .dashboard-content {
        margin-left: 0;
    }

    .hero {
        padding: 150px 0 100px;
    }

    .page-hero {
        padding: 140px 0 60px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .footer {
        padding: 60px 0 25px;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 130px 0 80px;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-card .job-header {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .section-padding {
        padding: 50px 0;
    }

    .service-card {
        padding: 25px;
    }

    .dashboard-content {
        padding: 20px 15px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-pulse {
    animation: pulse 2s ease infinite;
}

.map-container {
    position: relative;
    z-index: 1;
}

.dashboard-card {
    position: relative;
    z-index: 2;
}