/*
Theme Name: Payroll
Theme URI: http://payroll.com/themes/payroll/
Author: payroll
Author URI: http://payroll.com/
Description: Payroll is a startup theme for Advanced user who want to build professional WordPress theme based on Bootstrap
Version: 0.1
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Tags: blue, black, white, light, one-column, two-columns, right-sidebar, fluid-layout, responsive-layout, custom-header, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, translation-ready
Text Domain: payroll

This theme is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Basic Structure
 * 2.0 - Media Queries
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Basic Structure
 * ----------------------------------------------------------------------------
 */

html :where(.wp-block) {
	max-width: 100% !important;
}

/* ============================================
   Payroll - REFINED DESIGN SYSTEM
   ============================================ */

:root {
    --primary: #E8792B;
    --primary-light: #F5A623;
    --primary-dark: #C4611E;
    --primary-rgb: 232, 121, 43;
    --accent: #1A2744;
    --accent-light: #243556;
    --dark: #0F1724;
    --text-dark: #1A1F2E;
    --text-body: #4A5568;
    --text-muted: #8896AB;
    --border-light: #E8EDF4;
    --bg-subtle: #F7F9FC;
    --bg-warm: #FFF8F2;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(15, 23, 36, 0.04);
    --shadow-md: 0 4px 20px rgba(15, 23, 36, 0.06);
    --shadow-lg: 0 8px 40px rgba(15, 23, 36, 0.08);
    --shadow-xl: 0 16px 60px rgba(15, 23, 36, 0.12);
    --shadow-primary: 0 8px 30px rgba(232, 121, 43, 0.2);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    --bs-primary: #E8792B;
    --bs-primary-rgb: 232, 121, 43;
    --bs-body-font-family: 'Inter', sans-serif;
    --bs-link-color: #E8792B;
    --bs-link-hover-color: #C4611E;
}

/* ============================================
   BASE & TYPOGRAPHY
   ============================================ */

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--bs-body-font-family);
    overflow-x: hidden;
    color: var(--text-body);
    line-height: 1.7;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 { letter-spacing: -0.03em; }

p { line-height: 1.8; }

::selection {
    background-color: rgba(var(--primary-rgb), 0.15);
    color: var(--text-dark);
}

/* ============================================
   CUSTOM UTILITIES
   ============================================ */

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    box-shadow: var(--shadow-primary);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(var(--primary-rgb), 0.35);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border: none;
}
.btn-primary:active {
    transform: translateY(0);
}
.btn-primary span,
.btn-primary { position: relative; z-index: 1; }

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    transition: all var(--transition-base);
}
.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* Badge */
.badge-custom {
    background: var(--bg-warm);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.6rem 1.4rem;
    border-radius: 50rem;
    letter-spacing: 0.03em;
    border: 1px solid rgba(var(--primary-rgb), 0.12);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.badge-custom::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
}

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    font-size: 0.82rem;
    letter-spacing: 0.01em;
}
.top-bar a {
    transition: opacity var(--transition-fast);
}
.top-bar a:hover {
    opacity: 1 !important;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
    padding: 0.8rem 0 !important;
}

.navbar-brand-box {
    width: 42px;
    height: 42px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.15rem;
    transition: transform var(--transition-base);
}
.navbar-brand:hover .navbar-brand-box {
    transform: scale(1.05);
}

/* Logo Images */
.navbar-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-base);
}
.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}
.navbar-nav a:hover {
  text-decoration: none !important;
}
.footer-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity var(--transition-fast);
}
.footer-logo:hover {
    opacity: 1;
}

.nav-link {
    font-weight: 500;
    color: var(--text-body);
    font-size: 0.92rem;
    padding: 0.5rem 0 !important;
    position: relative;
    transition: color var(--transition-fast);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width var(--transition-base);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    margin-top: 0.5rem;
    animation: dropdownFade 0.25s ease;
}
@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
    transition: all var(--transition-fast);
}
.dropdown-item:hover {
    background: var(--bg-warm);
    color: var(--primary);
}

/* ============================================
   HERO FULLSCREEN CAROUSEL
   ============================================ */

.hero-fullscreen {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}
.hero-fullscreen .carousel,
.hero-fullscreen .carousel-inner,
.hero-fullscreen .carousel-item {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-slide-bg {
    transform: scale(1.05);
    transition: transform 8s ease-out;
}
.carousel-item.active .hero-slide-bg {
    transform: scale(1);
}

.hero-slide-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 36, 0.92) 0%, rgba(26, 39, 68, 0.7) 50%, rgba(15, 23, 36, 0.55) 100%);
}
.hero-slide-overlay--warm {
    background: linear-gradient(135deg, rgba(15, 23, 36, 0.9) 0%, rgba(var(--primary-rgb), 0.25) 50%, rgba(15, 23, 36, 0.6) 100%);
}
.hero-slide-overlay--deep {
    background: linear-gradient(160deg, rgba(26, 39, 68, 0.95) 0%, rgba(15, 23, 36, 0.65) 60%, rgba(var(--primary-rgb), 0.15) 100%);
}

.hero-slide-overlay::after {
    content: '';
    position: absolute;
    top: -15%;
    right: -5%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-slide-content {
    height: 100%;
    padding-top: 2rem;
    padding-bottom: 6rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.55rem 1.4rem;
    border-radius: 50rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}
.hero-badge i {
    color: var(--primary);
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    max-width: 700px;
    letter-spacing: -0.03em;
}
.hero-title-accent {
    color: var(--primary);
    position: relative;
}
.hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    border-radius: 4px;
    opacity: 0.4;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 2rem;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.hero-cta-group .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(4px);
}
.hero-cta-group .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.75rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    max-width: fit-content;
}
.hero-trust-item {
    display: flex;
    flex-direction: column;
}
.hero-trust-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}
.hero-trust-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    letter-spacing: 0.02em;
}
.hero-trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
}

.hero-features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.hero-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.5rem 1.1rem;
    border-radius: 50rem;
}
.hero-feature-pill i {
    color: var(--primary);
    font-size: 0.9rem;
}

.hero-nav-btn {
    width: 56px;
    height: 56px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all var(--transition-base);
}
.hero-fullscreen:hover .hero-nav-btn {
    opacity: 1;
}
.hero-nav-btn.carousel-control-prev { left: 24px; }
.hero-nav-btn.carousel-control-next { right: 24px; }
.hero-nav-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    transition: all var(--transition-base);
}
.hero-nav-btn:hover .hero-nav-icon {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.08);
}

.hero-indicators-bar {
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
    z-index: 20;
}
.hero-progress-track {
    display: flex;
    gap: 8px;
    flex: 1;
    max-width: 200px;
}
.hero-progress-btn {
    flex: 1;
    height: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}
.hero-progress-btn.active {
    background: rgba(255, 255, 255, 0.25);
}
.hero-progress-btn.active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
    animation: heroProgress 6s linear forwards;
}
@keyframes heroProgress {
    from { width: 0; }
    to { width: 100%; }
}
.hero-slide-counter {
    font-size: 0.85rem;
    min-width: 20px;
    text-align: center;
    letter-spacing: 0.05em;
}

.hero-scroll-down {
    position: absolute;
    bottom: 28px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 20;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

.carousel-item.active .hero-badge {
    animation: heroSlideUp 0.7s 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.carousel-item.active .hero-title {
    animation: heroSlideUp 0.7s 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.carousel-item.active .hero-description {
    animation: heroSlideUp 0.7s 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.carousel-item.active .hero-cta-group {
    animation: heroSlideUp 0.7s 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.carousel-item.active .hero-trust-bar,
.carousel-item.active .hero-features-row {
    animation: heroSlideUp 0.7s 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes heroSlideUp {
    from { opacity: 0; transform: translateY(35px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   PAGE HERO (Inner Pages: About, Services, etc.)
   Also covers legacy .hero-section/.hero-bg etc.
   ============================================ */

.page-hero,
.hero-section {
    position: relative;
    height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-slide-bg,
.page-hero-bg,
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-slide-overlay,
.page-hero-overlay,
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.page-hero-overlay,
.hero-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 36, 0.88) 0%, rgba(15, 23, 36, 0.5) 50%, rgba(15, 23, 36, 0.2) 100%);
    pointer-events: none;
}
.hero-slide-content,
.page-hero-content,
.hero-content {
    position: relative;
    z-index: 10;
}
.page-hero-content,
.hero-content {
    width: 100%;
}
.page-hero-content h1,
.hero-content h1,
.hero-content h2 {
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}
.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
}
.page-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.page-hero-breadcrumb a:hover {
    color: var(--primary);
}
.page-hero-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.35);
}
.page-hero-breadcrumb .current {
    color: var(--primary);
    font-weight: 600;
}

/* ============================================
   FEATURES GRID
   ============================================ */

.feature-card {
    transition: all var(--transition-smooth);
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}
.feature-icon-box {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: all var(--transition-base);
}
.feature-card:hover .feature-icon-box {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

/* ============================================
   TABS SECTION
   ============================================ */

.nav-tabs {
    border-bottom: 2px solid var(--border-light);
    margin-bottom: 2.5rem;
    gap: 0.5rem;
}
.nav-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-muted);
    padding: 1rem 1.8rem;
    margin-bottom: -2px;
    font-weight: 600;
    font-size: 0.92rem;
    background: transparent !important;
    transition: all var(--transition-base);
    border-radius: 0;
}
.nav-tabs .nav-link:hover {
    color: var(--text-dark);
}
.nav-tabs .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Tab Content Card */
.tab-content .card {
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
}

/* ============================================
   STEPS SECTION
   ============================================ */

.steps-section {
    background-color: var(--accent);
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
}
.step-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}
.step-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 39, 68, 0.92) 0%, rgba(15, 23, 36, 0.88) 100%);
    z-index: 1;
}

.step-card {
    display: flex;
    height: 100%;
    position: relative;
    z-index: 2;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-smooth);
}
.step-card:hover {
    transform: translateY(-4px);
}
.step-icon-box {
    width: 35%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.step-content-box {
    width: 65%;
    padding: 2rem 1.5rem;
    background-color: var(--white);
    color: var(--text-dark);
}
.step-icon-circle {
    width: 55px;
    height: 55px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   SERVICE CARDS (About Page)
   ============================================ */

.service-card-wrapper {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.service-card-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card-wrapper:hover img {
    transform: scale(1.08);
}
.service-card-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    z-index: 3;
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.service-card-wrapper:hover .service-card-arrow {
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(-45deg);
}
.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(to top, rgba(15, 23, 36, 0.85) 0%, transparent 100%);
    color: white;
    z-index: 2;
    text-align: left;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--transition-smooth);
    height: 100%;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(var(--primary-rgb), 0.15);
}
.team-card-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}
.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.team-card:hover .team-card-img img {
    transform: scale(1.06);
}
.team-card-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(to top, rgba(15, 23, 36, 0.7) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform var(--transition-base);
}
.team-card:hover .team-card-social {
    transform: translateY(0);
}
.team-card-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}
.team-card-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}
.team-card-body {
    padding: 1.5rem;
    text-align: center;
}
.team-card-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}
.team-card-role {
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0;
}

/* Team Carousel */
.team-carousel {
    overflow: hidden;
    position: relative;
}
.team-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.team-carousel-slide {
    flex: 0 0 calc(25% - 1.125rem);
    min-width: 0;
}
.team-carousel-btn {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    background: var(--white);
    color: var(--text-dark);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-base);
}
.team-carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}
.team-carousel-btn:disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* About Stats Bar */
.about-stats-bar {
    background: linear-gradient(135deg, var(--accent) 0%, var(--dark) 100%);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    margin-top: -60px;
    position: relative;
    z-index: 20;
    box-shadow: var(--shadow-xl);
}
.about-stat-item {
    text-align: center;
    padding: 0.5rem 1rem;
}
.about-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 0.35rem;
}
.about-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* About Value Cards */
.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-light);
    transition: all var(--transition-smooth);
    height: 100%;
    text-align: center;
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--primary-rgb), 0.15);
}
.value-card-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    border-radius: var(--radius-md);
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all var(--transition-base);
}
.value-card:hover .value-card-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

/* ============================================
   ABOUT PAGE TYPOGRAPHY
   ============================================ */

.title-black {
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 1rem;
}
.giant-grey-text {
    font-size: 3rem;
    font-weight: 800;
    color: var(--border-light);
    line-height: 1.1;
    letter-spacing: -0.03em;
}
.huge-number {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

/* ============================================
   INFO SECTION DECORATION
   ============================================ */

.info-img-wrapper {
    position: relative;
    padding-top: 20px;
    padding-left: 20px;
}
.info-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    z-index: 0;
}
.info-img-wrapper img {
    position: relative;
    z-index: 10;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   WHY WORK WITH US
   ============================================ */

.check-list-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    align-items: flex-start;
}
.check-list-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    border-radius: 50%;
    color: var(--primary);
    font-weight: bold;
    flex-shrink: 0;
    font-size: 0.85rem;
    margin-top: 0.15rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark);
    color: #8896AB;
    padding-top: 5rem;
    padding-bottom: 2rem;
}
.footer a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all var(--transition-fast);
}
.footer a:hover {
    color: var(--white);
    padding-left: 4px;
}
.footer-social-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-social-icon:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
}
.footer-divider {
    border-color: rgba(255, 255, 255, 0.06);
}

/* ============================================
   UTILITIES
   ============================================ */

.h-full-img {
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.font-display {
    font-family: 'Montserrat', sans-serif;
}
.tracking-widest {
    letter-spacing: 0.2em;
}

/* Service Cards (White) */
.service-card {
    transition: all var(--transition-smooth);
    border: 1px solid var(--border-light) !important;
    height: 100%;
    background-color: var(--white);
    border-radius: var(--radius-lg) !important;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(var(--primary-rgb), 0.15) !important;
}
.icon-container {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--bg-warm);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    margin-bottom: 1.5rem;
}
.service-card:hover .icon-container {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: var(--shadow-primary);
}

/* Process Steps */
.process-step-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.15rem;
    box-shadow: var(--shadow-primary);
    flex-shrink: 0;
}

/* Experience Badge */
.badge-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 1.75rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    color: var(--text-dark);
}

/* Case Study */
.case-study {
    background: var(--dark);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

/* ============================================
   SINGLE SERVICE PAGE
   ============================================ */

.dark-service-section {
    position: relative;
    background: linear-gradient(135deg, var(--accent) 0%, var(--dark) 100%);
    padding: 7rem 0;
    color: white;
    overflow: hidden;
}
.dark-service-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}
.dark-service-content {
    position: relative;
    z-index: 2;
}

/* Orange Service Cards */
.orange-service-card {
    position: relative;
    background-color: transparent;
    color: white;
    padding: 2.5rem;
    height: 100%;
    transition: transform var(--transition-smooth);
    border: none;
    overflow: hidden;
    z-index: 1;
    border-radius: var(--radius-lg);
}
.orange-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.orange-service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    z-index: -1;
    transition: all 0.5s ease;
}
.orange-service-card:hover {
    transform: translateY(-6px);
}
.orange-service-card:hover::before {
    opacity: 1;
}
.orange-service-card:hover::after {
    background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.15) 0%, rgba(var(--primary-rgb), 0.92) 100%);
}
.orange-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    opacity: 0.9;
}

/* ============================================
   ACCORDION
   ============================================ */

.accordion-custom .accordion-item {
    border: none;
    border-bottom: 1px solid var(--border-light);
    background: transparent;
}
.accordion-custom .accordion-button {
    background-color: transparent;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1.5rem 0;
    box-shadow: none;
    transition: color var(--transition-fast);
}
.accordion-custom .accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: transparent;
    box-shadow: none;
}
.accordion-custom .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234A5568'%3e%3cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3e%3c/svg%3e");
    background-size: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    transition: transform var(--transition-fast);
}
.accordion-custom .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E8792B'%3e%3cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
    transform: none;
}
.accordion-custom .accordion-body {
    padding: 0 0 1.5rem 0;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ============================================
   SECTION DIVIDER
   ============================================ */

.section-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    border-radius: 3px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991.98px) {
    .hero-fullscreen { height: 85vh; min-height: 550px; }
    .hero-title { font-size: 2.2rem; }
    .hero-trust-bar { gap: 1rem; padding: 1rem 1.25rem; }
    .hero-trust-number { font-size: 1.15rem; }
    .hero-nav-btn { display: none; }
    .hero-scroll-down { display: none; }
    .page-hero, .hero-section { height: 400px; }
    .about-stats-bar { margin-top: -40px; padding: 2rem 1.5rem; }
    .about-stat-number { font-size: 2rem; }
    .team-card-img { height: 250px; }
    .team-carousel-slide { flex: 0 0 calc(33.333% - 1rem); }
    .giant-grey-text { font-size: 2.2rem; }
    .huge-number { font-size: 4rem; }
    .nav-link::after { display: none; }
}

@media (max-width: 767.98px) {
    .hero-fullscreen { height: 100vh; min-height: 500px; }
    .hero-title { font-size: 1.75rem; }
    .hero-description { font-size: 0.92rem; }
    .hero-cta-group { flex-direction: column; }
    .hero-cta-group .btn { width: 100%; text-align: center; }
    .hero-trust-bar { flex-direction: row; gap: 0.75rem; padding: 0.9rem 1rem; }
    .hero-trust-number { font-size: 1rem; }
    .hero-trust-label { font-size: 0.65rem; }
    .hero-features-row { gap: 0.5rem; }
    .hero-feature-pill { font-size: 0.75rem; padding: 0.4rem 0.85rem; }
    .page-hero, .hero-section { height: 350px; }
    .team-carousel-slide { flex: 0 0 calc(50% - 0.75rem); }
    .about-stats-bar { margin-top: -30px; padding: 1.5rem 1rem; }
    .about-stat-number { font-size: 1.5rem; }
    .about-stat-label { font-size: 0.7rem; }
    .steps-section { padding: 4rem 0; }
    .dark-service-section { padding: 4rem 0; }
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */

/* Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(var(--primary-rgb), 0.12);
}
.blog-card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    display: block;
}
.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-card:hover .blog-card-img {
    transform: scale(1.06);
}
.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 50rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}
.blog-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}
.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}
.blog-card-title a:hover {
    color: var(--primary);
}
.blog-card-excerpt {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex: 1;
}
.blog-card-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: all var(--transition-fast);
}
.blog-card-link:hover {
    color: var(--primary-dark);
    gap: 4px;
}

/* Author Avatars */
.blog-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.blog-author-avatar-sm {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* Blog Filter Buttons */
.blog-filter-btn {
    background: var(--white);
    border: 1px solid var(--border-light);
    color: var(--text-body);
    transition: all var(--transition-fast);
}
.blog-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-warm);
}

/* Pagination */
.blog-page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    background: var(--white);
}
.blog-page-link:hover,
.blog-page-link.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

/* Newsletter */
.blog-newsletter {
    background: linear-gradient(135deg, var(--accent) 0%, var(--dark) 100%);
    border-radius: var(--radius-xl);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.blog-newsletter::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.blog-newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50rem;
    font-size: 0.9rem;
}
.blog-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.blog-newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2);
    color: white;
}

/* ============================================
   SINGLE BLOG PAGE STYLES
   ============================================ */

/* Share Buttons (Small) */
.share-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    transition: all var(--transition-base);
    text-decoration: none;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    background: var(--white);
    cursor: pointer;
    padding: 0;
}
.share-btn:hover { transform: translateY(-2px); }
.share-btn-facebook:hover { background: #1877F2; color: white; border-color: #1877F2; }
.share-btn-twitter:hover { background: #0F1419; color: white; border-color: #0F1419; }
.share-btn-linkedin:hover { background: #0A66C2; color: white; border-color: #0A66C2; }
.share-btn-copy:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* Share Buttons (Large - bottom) */
.share-btn-lg {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.1rem;
    border-radius: 50rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    border: 1px solid var(--border-light);
    color: var(--text-body);
    background: var(--white);
}
.share-btn-lg:hover { transform: translateY(-2px); }
.share-btn-lg.share-btn-facebook:hover { background: #1877F2; color: white; border-color: #1877F2; }
.share-btn-lg.share-btn-twitter:hover { background: #0F1419; color: white; border-color: #0F1419; }
.share-btn-lg.share-btn-linkedin:hover { background: #0A66C2; color: white; border-color: #0A66C2; }

/* Sticky Sidebar */
.blog-share-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Article Content */
.blog-article-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.blog-article-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}
.blog-article-content p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

/* Blog Quote */
.blog-quote {
    border-left: 4px solid var(--primary);
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: var(--bg-warm);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.blog-quote p {
    font-size: 1.05rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}
.blog-quote cite {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    font-style: normal;
}

/* Blog Figure */
.blog-figure {
    margin: 2rem 0;
}
.blog-figure img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.blog-figure figcaption {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    font-style: italic;
}

/* Highlight Box */
.blog-highlight-box {
    background: var(--bg-subtle);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2rem 0;
}
.blog-highlight-box h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.blog-highlight-box ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}
.blog-highlight-box li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
}
.blog-highlight-box li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* Blog Tags */
.blog-tag {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    background: var(--bg-subtle);
    border: 1px solid var(--border-light);
    border-radius: 50rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-body);
    text-decoration: none;
    transition: all var(--transition-fast);
}
.blog-tag:hover {
    background: var(--bg-warm);
    border-color: rgba(var(--primary-rgb), 0.2);
    color: var(--primary);
}

/* Share Bottom Bar */
.blog-share-bottom {
    background: var(--bg-subtle);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    margin-top: 2.5rem;
}

/* Author Box */
.blog-author-box {
    background: var(--bg-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid var(--border-light);
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}
.blog-sidebar-widget {
    margin-bottom: 2.5rem;
}
.blog-sidebar-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-light);
}
.blog-search-input {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 0.7rem 1rem 0.7rem 2.5rem;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}
.blog-search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}
.blog-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.85rem;
}
.blog-sidebar-link {
    display: flex;
    padding: 0.6rem 0;
    text-decoration: none;
    color: var(--text-body);
    font-size: 0.88rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition-fast);
}
.blog-sidebar-link:hover {
    color: var(--primary);
    padding-left: 4px;
}
.blog-sidebar-count {
    background: var(--bg-subtle);
    color: var(--text-muted);
    font-size: 0.75rem;
    padding: 0.1rem 0.6rem;
    border-radius: 50rem;
    font-weight: 600;
}
.blog-sidebar-post {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}
.blog-sidebar-post:hover {
    transform: translateX(4px);
}
.blog-sidebar-post-img {
    width: 70px;
    height: 55px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.blog-sidebar-post-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    display: block;
    margin-bottom: 0.25rem;
    transition: color var(--transition-fast);
}
.blog-sidebar-post:hover .blog-sidebar-post-title {
    color: var(--primary);
}
.blog-sidebar-post-date {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ============================================
   CAREER PAGE STYLES
   ============================================ */

/* Career Stats */
.career-stat {
    padding: 1rem;
}
.career-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}
.career-stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Career Filter Dropdown */
.career-filter-dropdown {
    position: relative;
    min-width: 280px;
    z-index: 50;
}
.career-filter-toggle {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.75rem 1.25rem;
    background: var(--dark);
    border: 2px solid var(--dark);
    border-radius: 50rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}
.career-filter-toggle:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}
.career-filter-dropdown.open .career-filter-toggle {
    background: var(--accent);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2), var(--shadow-lg);
}
.career-filter-toggle .bi-funnel {
    color: var(--primary);
}
.career-filter-chevron {
    margin-left: auto;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    transition: transform var(--transition-fast);
}
.career-filter-dropdown.open .career-filter-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}
.career-filter-count {
    background: var(--primary);
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    border-radius: 50rem;
    margin-left: 0.5rem;
    line-height: 1.4;
}
.career-filter-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 48px rgba(15, 23, 36, 0.18);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.career-filter-dropdown.open .career-filter-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.career-filter-search-wrapper {
    position: relative;
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-subtle);
}
.career-filter-search-icon {
    position: absolute;
    left: 1.35rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.8rem;
}
.career-filter-search {
    width: 100%;
    padding: 0.6rem 0.75rem 0.6rem 2.1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: var(--text-dark);
    outline: none;
    transition: all var(--transition-fast);
    background: var(--white);
}
.career-filter-search:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}
.career-filter-search::placeholder {
    color: var(--text-muted);
}
.career-filter-options {
    max-height: 260px;
    overflow-y: auto;
    padding: 0.4rem;
}
.career-filter-options::-webkit-scrollbar {
    width: 4px;
}
.career-filter-options::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 4px;
}
.career-filter-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.7rem 0.9rem;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-body);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: left;
}
.career-filter-option:hover {
    background: var(--bg-subtle);
    color: var(--text-dark);
}
.career-filter-option.active {
    background: var(--bg-warm);
    color: var(--primary);
    font-weight: 600;
}
.career-filter-option.active::before {
    content: '';
    display: none;
}
.career-filter-option-label {
    display: flex;
    align-items: center;
}
.career-filter-option-label i {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.career-filter-option.active .career-filter-option-label i {
    color: var(--primary);
}
.career-filter-option-count {
    background: var(--bg-subtle);
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    border-radius: 50rem;
    min-width: 24px;
    text-align: center;
}
.career-filter-option.active .career-filter-option-count {
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary);
}
.career-filter-no-match {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}

/* Career Cards */
.career-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--border-light);
    transition: all var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.career-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(var(--primary-rgb), 0.15);
}
.career-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.career-card-dept {
    background: var(--bg-warm);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 50rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.career-card-type {
    background: var(--bg-subtle);
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 50rem;
}
.career-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}
.career-card-excerpt {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex: 1;
}
.career-card-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-light);
}
.career-card-details span {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}
.career-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.career-card-salary {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* ============================================
   SINGLE CAREER PAGE STYLES
   ============================================ */

/* Career Detail Sections */
.career-detail-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-light);
}
.career-detail-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 1rem;
}
.career-detail-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: calc(100% - 4px);
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
    border-radius: 4px;
}

/* Career Detail List */
.career-detail-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}
.career-detail-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.7;
}
.career-detail-list li::before {
    content: '\F272';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-size: 0.85rem;
}

/* Career Benefits */
.career-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-subtle);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition-fast);
}
.career-benefit-card:hover {
    border-color: rgba(var(--primary-rgb), 0.15);
    background: var(--bg-warm);
}

/* Career Process */
.career-process {
    position: relative;
    padding-left: 2rem;
}
.career-process::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: var(--border-light);
}
.career-process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    position: relative;
}
.career-process-step:last-child {
    margin-bottom: 0;
}
.career-process-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: var(--shadow-primary);
    position: relative;
    z-index: 1;
}

/* Career Sidebar */
.career-sidebar {
    position: sticky;
    top: 100px;
}
.career-sidebar-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
}
.career-sidebar-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-light);
}
.career-sidebar-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}
.career-sidebar-item i {
    font-size: 1.1rem;
    margin-top: 0.15rem;
}
.career-sidebar-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin-bottom: 0.15rem;
}
.career-sidebar-value {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Career Apply Icon */
.career-apply-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-warm);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Info Cards */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-smooth);
    height: 100%;
}
.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(var(--primary-rgb), 0.15);
}
.contact-info-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-warm);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    transition: all var(--transition-base);
}
.contact-info-card:hover .contact-info-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

/* Contact Form Inputs */
.contact-input {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 0.8rem 1.15rem;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    background: var(--white);
}
.contact-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}
.contact-input::placeholder {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Contact Form Check */
.contact-form .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}
.contact-form .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
    border-color: var(--primary);
}

/* Contact Map */
.contact-map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

/* Contact Sidebar */
.contact-sidebar-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.contact-sidebar-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.contact-sidebar-item:last-of-type {
    margin-bottom: 0;
}
.contact-sidebar-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: var(--bg-warm);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    transition: all var(--transition-base);
}
.contact-sidebar-item:hover .contact-sidebar-icon {
    background: var(--primary);
    color: white;
}

/* Contact Social Links */
.contact-social-link {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-subtle);
    color: var(--text-muted);
    font-size: 1rem;
    transition: all var(--transition-base);
    text-decoration: none;
    border: 1px solid var(--border-light);
}
.contact-social-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Contact Success Card */
.contact-success-card {
    padding: 4rem 2rem;
    background: var(--bg-subtle);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
}
.contact-success-icon {
    font-size: 4rem;
    color: #10B981;
}
.contact-success-icon i {
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
}


/**
 * 2.0 Media Queries
 * ----------------------------------------------------------------------------
 */

/* WordPress Media Queries */
@media (max-width: 600.98px) {
}
@media (min-width: 601px) and (max-width: 782.98px) {
}
@media (min-width: 783px) {
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
	.site-content > *:not(div) {
		max-width: calc(100% - 24px);
	}
}

@media (min-width: 576px) {
	.site-content > *:not(div) {
		max-width: 540px;
	}
}

/* Small devices (landscape phones, 576px, up to 768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
}

@media (min-width: 576px) and (max-width: 991.98px) {
}

@media (min-width: 768px) {
	.site-content > *:not(div) {
		max-width: 720px;
	}
}

/* Medium devices (tablets, 768px, up to 992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
}

@media (max-width: 991.98px) {
}

@media (min-width: 992px) {
	.site-content > *:not(div) {
		max-width: 960px;
	}
}

/* Large devices (desktops, 992px, up to 1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
}

@media (max-width: 1199.98px) {
}

@media (min-width: 1200px) {
	.site-content > *:not(div) {
		max-width: 1140px;
	}
}

/* X-Large devices (large desktops, 1200px, up to 1400px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
}

/* Career CV Upload */
.career-cv-upload { display: block; cursor: pointer; }
.career-cv-box {
    border: 2px dashed var(--border-light);
    border-radius: var(--radius-md, 12px);
    padding: 16px;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.career-cv-box:hover {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.03);
}
.career-detail-list-wrap ul { list-style: none; padding: 0; margin: 0; }
.career-detail-list-wrap ul li {
    position: relative;
    padding: 8px 0 8px 28px;
    color: var(--text-secondary, #6b7280);
    line-height: 1.7;
    font-size: 0.95rem;
}
.career-detail-list-wrap ul li::before {
    content: '\F26A';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--primary);
    font-size: 0.85rem;
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
	.site-content > *:not(div) {
		max-width: 1320px;
	}
}
