/**
 * Main Stylesheet - Bootstrap Override & Custom Styles
 *
 * @package XPND
 * @since 1.0.0
 */

/* ==========================================================================
   CSS Variables (Bootstrap Override)
   ========================================================================== */

:root {
    /* Brand Colors */
    --bs-primary: #2E7D32;
    --bs-primary-rgb: 46, 125, 50;
    --bs-secondary: #1565C0;
    --bs-secondary-rgb: 21, 101, 192;

    /* Custom Colors */
    --xpnd-green: #2E7D32;
    --xpnd-green-light: #4CAF50;
    --xpnd-green-dark: #1B5E20;
    --xpnd-blue: #1565C0;
    --xpnd-blue-light: #42A5F5;
    --xpnd-blue-dark: #0D47A1;

    /* Typography */
    --bs-font-sans-serif: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.6;
    --bs-body-color: #333;

    /* Spacing */
    --section-padding: 5rem;
    --section-padding-sm: 3rem;
}

/* ==========================================================================
   Global Overrides
   ========================================================================== */

body {
    font-family: var(--bs-font-sans-serif);
    overflow-x: hidden;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 700;
    color: #1a1a2e;
}

/* Links */
a {
    color: var(--xpnd-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--xpnd-green-dark);
}

/* ==========================================================================
   Bootstrap Component Overrides
   ========================================================================== */

/* Buttons */
.btn-primary {
    --bs-btn-bg: var(--xpnd-green);
    --bs-btn-border-color: var(--xpnd-green);
    --bs-btn-hover-bg: var(--xpnd-green-dark);
    --bs-btn-hover-border-color: var(--xpnd-green-dark);
    --bs-btn-active-bg: var(--xpnd-green-dark);
    --bs-btn-active-border-color: var(--xpnd-green-dark);
    --bs-btn-disabled-bg: var(--xpnd-green);
    --bs-btn-disabled-border-color: var(--xpnd-green);
}

.btn-secondary {
    --bs-btn-bg: var(--xpnd-blue);
    --bs-btn-border-color: var(--xpnd-blue);
    --bs-btn-hover-bg: var(--xpnd-blue-dark);
    --bs-btn-hover-border-color: var(--xpnd-blue-dark);
}

.btn-outline-primary {
    --bs-btn-color: var(--xpnd-green);
    --bs-btn-border-color: var(--xpnd-green);
    --bs-btn-hover-bg: var(--xpnd-green);
    --bs-btn-hover-border-color: var(--xpnd-green);
    --bs-btn-active-bg: var(--xpnd-green-dark);
    --bs-btn-active-border-color: var(--xpnd-green-dark);
}

.btn-outline-light:hover {
    color: var(--xpnd-green);
}

.btn {
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 45px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: var(--xpnd-green);
}

.navbar-light .navbar-nav .nav-link.active {
    color: var(--xpnd-green);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    padding: 0.5rem;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(46, 125, 50, 0.1);
    color: var(--xpnd-green);
}

/* Cards */
.card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Forms */
.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--xpnd-green);
    box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.15);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Badges */
.badge {
    font-weight: 500;
    padding: 0.5em 0.75em;
}

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

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

/* ==========================================================================
   Top Bar - Premium Enterprise Style
   ========================================================================== */

.top-bar {
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
    padding: 0.625rem 0;
    font-size: 0.8125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1040;
}

.top-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.3), transparent);
}

.top-bar-left {
    gap: 2rem !important;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.25s ease;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.top-bar-item:hover {
    color: #fff;
}

.top-bar-item i {
    font-size: 0.9375rem;
    color: var(--xpnd-green-light);
    opacity: 0.9;
}

.top-bar-item:hover i {
    opacity: 1;
}

.top-bar-social {
    gap: 0.5rem !important;
}

.top-bar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-social a:hover {
    background: var(--xpnd-green);
    border-color: var(--xpnd-green);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.top-bar .language-switcher {
    position: relative;
    z-index: 1050;
}

.top-bar .language-switcher .btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.top-bar .language-switcher .btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.top-bar .language-switcher .dropdown-menu {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    z-index: 1050;
}

.top-bar .language-switcher .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
}

.top-bar .language-switcher .dropdown-item:hover,
.top-bar .language-switcher .dropdown-item.active {
    background: rgba(46, 125, 50, 0.2);
    color: #fff;
}

/* ==========================================================================
   Main Header - Premium Enterprise Style
   ========================================================================== */

.site-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow:
        0 1px 0 rgba(0, 0, 0, 0.04),
        0 4px 20px rgba(0, 0, 0, 0.06);
    border-bottom-color: transparent;
}

.site-header .navbar {
    padding: 0.875rem 0;
    transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.site-header.scrolled .navbar {
    padding: 0.625rem 0;
}

/* Logo Styling - Premium */
.navbar-brand {
    padding: 0;
    margin-right: 2.5rem;
    display: flex;
    align-items: center;
}

.header-logo {
    height: 48px;
    width: auto;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .header-logo {
    height: 40px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name {
    font-size: 1.625rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.logo-tagline {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--xpnd-green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

/* Mobile Toggle - Premium Hamburger */
.navbar-toggler {
    border: none;
    padding: 0.625rem;
    background: transparent;
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    transition: background 0.25s ease;
}

.navbar-toggler:hover {
    background: rgba(0, 0, 0, 0.04);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #1e293b;
    margin: 5px auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Desktop Navigation - Hide mobile menu on desktop */
@media (min-width: 992px) {
    /* Hide mobile navigation container on desktop */
    #primaryNavigation {
        display: none !important;
    }

    /* Ensure desktop navigation is visible */
    .desktop-navigation {
        display: flex !important;
    }
}

/* Desktop Navigation Container */
.desktop-navigation {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

/* Main Navigation Container */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.navbar-nav.main-menu {
    gap: 0.125rem;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
    color: #1e293b;
    padding: 0.75rem 1.125rem !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 6px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--xpnd-green), var(--xpnd-green-light));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
    color: var(--xpnd-green);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 1.5rem);
}

/* Dropdown Menu - Premium Style */
.navbar-nav .dropdown-menu {
    border: none;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.04),
        0 4px 6px -1px rgba(0, 0, 0, 0.06),
        0 16px 32px -8px rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    padding: 0.625rem;
    min-width: 240px;
    margin-top: 10px;
    animation: dropdownFadeIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-nav .dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.navbar-nav .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--xpnd-green);
    border-radius: 3px;
    transition: height 0.2s ease;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
    background: rgba(46, 125, 50, 0.06);
    color: var(--xpnd-green);
    padding-left: 1.25rem;
}

.navbar-nav .dropdown-item:hover::before {
    height: 60%;
}

.navbar-nav .dropdown-item i {
    margin-right: 0.625rem;
    font-size: 1rem;
    opacity: 0.8;
}

/* Header CTA Buttons - Premium Style */
.header-cta {
    margin-left: 2rem;
    padding-left: 2rem;
    border-left: 1px solid #e2e8f0;
    gap: 0.75rem !important;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 0.6875rem 1.375rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-header i {
    font-size: 1rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-header:hover i {
    transform: translateX(2px);
}

.btn-header.btn-outline-primary {
    border-width: 1.5px;
    border-color: var(--xpnd-green);
    color: var(--xpnd-green);
    background: transparent;
}

.btn-header.btn-outline-primary:hover {
    background: var(--xpnd-green);
    border-color: var(--xpnd-green);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(46, 125, 50, 0.25);
}

.btn-header.btn-primary {
    background: linear-gradient(135deg, var(--xpnd-green) 0%, var(--xpnd-green-light) 100%);
    border: none;
    box-shadow: 0 4px 14px rgba(46, 125, 50, 0.25);
}

.btn-header.btn-primary:hover {
    background: linear-gradient(135deg, var(--xpnd-green-dark) 0%, var(--xpnd-green) 100%);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.35);
    transform: translateY(-2px);
}

/* ==========================================================================
   Max Mega Menu - Premium Enterprise Styling
   ========================================================================== */

/* Reset & Base */
#mega-menu-wrap-primary {
    background: transparent !important;
    position: static !important;
}

#mega-menu-wrap-primary .mega-menu-toggle,
#mega-menu-wrap-primary #mega-menu-primary {
    background: transparent !important;
}

#mega-menu-wrap-primary #mega-menu-primary {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    margin: 0;
    padding: 0;
}

/* Top Level Menu Items - Premium Style */
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {
    margin: 0;
    position: static;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
    color: #1e293b;
    padding: 0.75rem 1.125rem;
    border-radius: 6px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    line-height: 1.5;
    background: transparent;
    height: auto;
    display: flex;
    align-items: center;
    position: relative;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--xpnd-green), var(--xpnd-green-light));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:focus,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
    color: var(--xpnd-green);
    background: transparent;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover::before,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link::before,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link::before {
    width: calc(100% - 1.5rem);
}

/* Dropdown Arrow - Refined */
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
    margin-left: 0.375rem;
    font-size: 0.5rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item-has-children:hover > a.mega-menu-link > span.mega-indicator,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator {
    transform: rotate(180deg);
    opacity: 1;
}

/* ==========================================================================
   Mega Menu Panel - Services (Premium Design)
   ========================================================================== */

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
    background: #ffffff;
    border: none !important;
    border-radius: 20px;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.03),
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 20px 25px -5px rgba(0, 0, 0, 0.08),
        0 40px 60px -12px rgba(0, 0, 0, 0.12);
    padding: 0;
    margin-top: 12px;
    overflow: hidden;
    animation: megaMenuFadeIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top center;
}

@keyframes megaMenuFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mega Menu Row Container */
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row {
    display: flex;
    width: 100%;
}

/* Mega Menu Columns - Premium Cards */
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu {
    display: flex;
    width: 100%;
    padding: 0;
    margin: 0;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-column {
    flex: 1;
    padding: 2rem 1.75rem;
    border-right: 1px solid #f1f5f9;
    background: #ffffff;
    transition: background 0.3s ease;
    position: relative;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column:hover,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-column:hover {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column:last-child,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-column:last-child {
    border-right: none;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column:first-child,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-column:first-child {
    border-radius: 20px 0 0 20px;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column:last-child,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-column:last-child {
    border-radius: 0 20px 20px 0;
}

/* Column Headers - Premium Style */
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item:first-child > a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link[href*="services"],
#mega-menu-wrap-primary h4.mega-block-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--xpnd-green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0 0 1rem 0;
    margin-bottom: 0.75rem;
    border-bottom: none;
    background: transparent !important;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item:first-child > a.mega-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, var(--xpnd-green), var(--xpnd-green-light));
    border-radius: 3px;
}

/* Column Header Icon */
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item:first-child > a.mega-menu-link > span.mega-menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.12) 0%, rgba(76, 175, 80, 0.08) 100%);
    border-radius: 10px;
    margin-right: 0.25rem;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item:first-child > a.mega-menu-link > span.mega-menu-icon i,
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item:first-child > a.mega-menu-link > span.mega-menu-icon .bi {
    font-size: 1rem;
    color: var(--xpnd-green);
}

/* Column Description Text */
#mega-menu-wrap-primary .mega-menu-column .mega-menu-description,
#mega-menu-wrap-primary .mega-menu-column p {
    font-size: 0.8125rem;
    color: #64748b;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Submenu Items in Mega Menu - Premium Links */
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
    margin-top: 0.5rem;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item {
    margin: 0;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    padding: 0.625rem 0.875rem;
    margin: 0.125rem 0;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    display: flex;
    align-items: center;
    position: relative;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-radius: 4px;
    background: var(--xpnd-green);
    opacity: 0;
    transition: all 0.2s ease;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
    color: var(--xpnd-green);
    background: rgba(46, 125, 50, 0.06);
    padding-left: 1.25rem;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover::before {
    width: 4px;
    height: 4px;
    opacity: 1;
    left: 0.5rem;
}

/* Icons in Mega Menu */
#mega-menu-wrap-primary .mega-menu-link i,
#mega-menu-wrap-primary .mega-menu-link .bi {
    margin-right: 0.625rem;
    font-size: 1rem;
    color: var(--xpnd-green);
    opacity: 0.9;
}

/* ==========================================================================
   Flyout Submenus - Premium Style
   ========================================================================== */

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {
    background: #ffffff;
    border: none !important;
    border-radius: 14px;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.04),
        0 4px 6px -1px rgba(0, 0, 0, 0.06),
        0 16px 32px -8px rgba(0, 0, 0, 0.1);
    padding: 0.625rem;
    min-width: 240px;
    margin-top: 10px;
    animation: flyoutFadeIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes flyoutFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {
    margin: 0;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    display: flex;
    align-items: center;
    position: relative;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--xpnd-green);
    border-radius: 3px;
    transition: height 0.2s ease;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover {
    color: var(--xpnd-green);
    background: rgba(46, 125, 50, 0.06);
    padding-left: 1.25rem;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover::before {
    height: 60%;
}

/* Widget Styling in Mega Menu */
#mega-menu-wrap-primary .widget {
    margin-bottom: 0;
}

#mega-menu-wrap-primary .widget-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--xpnd-green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    border-bottom: none;
    position: relative;
}

#mega-menu-wrap-primary .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, var(--xpnd-green), var(--xpnd-green-light));
    border-radius: 3px;
}

#mega-menu-wrap-primary .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#mega-menu-wrap-primary .widget ul li {
    margin-bottom: 0.125rem;
}

#mega-menu-wrap-primary .widget ul li a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    padding: 0.625rem 0.875rem;
    border-radius: 8px;
    display: block;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

#mega-menu-wrap-primary .widget ul li a:hover {
    color: var(--xpnd-green);
    background: rgba(46, 125, 50, 0.06);
    padding-left: 1.25rem;
}

/* CTA Button in Mega Menu */
#mega-menu-wrap-primary .mega-menu-cta,
#mega-menu-wrap-primary .mega-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--xpnd-green) 0%, var(--xpnd-green-light) 100%);
    color: #fff !important;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(46, 125, 50, 0.25);
}

#mega-menu-wrap-primary .mega-menu-cta:hover,
#mega-menu-wrap-primary .mega-cta-btn:hover {
    background: linear-gradient(135deg, var(--xpnd-green-dark) 0%, var(--xpnd-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.35);
}

/* Mobile Menu Toggle - Hide default, use custom */
#mega-menu-wrap-primary .mega-menu-toggle {
    display: none !important;
}

/* ==========================================================================
   Mobile Responsive - Premium Mobile Experience
   ========================================================================== */

/* Note: Mega Menu mobile styles removed - using separate simple menu for mobile */
@media (max-width: 991.98px) {
    /* Desktop navigation hidden on mobile via Bootstrap d-none d-lg-flex */
    .desktop-navigation {
        display: none !important;
    }
}

/* Language Switcher in Header - Premium */
.language-switcher .dropdown-toggle::after {
    display: none;
}

.language-switcher .btn {
    padding: 0.4375rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 8px;
    letter-spacing: 0.02em;
    border: 1px solid #e2e8f0;
    color: #475569;
    background: #f8fafc;
    transition: all 0.25s ease;
}

.language-switcher .btn:hover {
    border-color: var(--xpnd-green);
    color: var(--xpnd-green);
    background: rgba(46, 125, 50, 0.04);
}

.language-switcher .dropdown-menu {
    border: none;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.04),
        0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 0.5rem;
    min-width: 140px;
}

.language-switcher .dropdown-item {
    padding: 0.5rem 0.875rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.language-switcher .dropdown-item:hover,
.language-switcher .dropdown-item.active {
    background: rgba(46, 125, 50, 0.08);
    color: var(--xpnd-green);
}

/* ==========================================================================
   Responsive Header - Premium Mobile Experience
   ========================================================================== */

@media (max-width: 991.98px) {
    .top-bar {
        display: none !important;
    }

    .navbar-brand {
        margin-right: auto;
    }

    .navbar-collapse {
        background: #ffffff;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 0;
        box-shadow:
            0 10px 40px rgba(0, 0, 0, 0.08),
            0 2px 10px rgba(0, 0, 0, 0.04);
        border-radius: 0 0 20px 20px;
        border-top: 1px solid #f1f5f9;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 1050;
    }

    .navbar-collapse.collapse:not(.show) {
        display: none;
    }

    .navbar-collapse.collapsing {
        height: 0;
        overflow: hidden;
        transition: height 0.35s ease;
    }

    .navbar-collapse.collapse.show {
        display: block;
        padding: 1.25rem;
    }

    /* Mobile Navigation Container */
    .mobile-navigation {
        display: block;
        width: 100%;
    }

    .navbar-nav.mobile-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0.25rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu .nav-item {
        width: 100%;
    }

    .mobile-menu .nav-link {
        display: block;
        padding: 0.875rem 1rem;
        border-radius: 10px;
        font-size: 0.9375rem;
        font-weight: 600;
        color: #1e293b;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .mobile-menu .nav-link:hover {
        background: rgba(46, 125, 50, 0.06);
        color: var(--xpnd-green);
    }

    /* Mobile Dropdown */
    .mobile-menu .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0.5rem 0 0.5rem 1rem;
        margin: 0;
        background: transparent;
        display: none;
    }

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

    .mobile-menu .dropdown-item {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        color: #64748b;
        font-size: 0.875rem;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .mobile-menu .dropdown-item.active, .mobile-menu .dropdown-item:active {
        color: var(--bs-dropdown-link-active-color);
        text-decoration: none;
        background-color: var(--xpnd-green);
    }

    .mobile-menu .dropdown-item:hover,
    .mobile-menu .dropdown-item:focus {
        background: rgba(46, 125, 50, 0.06);
        color: var(--xpnd-green);
    }

    .mobile-menu .dropdown-toggle::after {
        float: right;
        margin-top: 0.5rem;
        transition: transform 0.2s ease;
    }

    /* Nested Dropdown (Level 3+) */
    .mobile-menu .dropdown-menu .dropdown-menu,
    .mobile-menu .dropdown-submenu {
        position: static;
        width: 100%;
        padding: 0.25rem 0 0.25rem 0.75rem;
        margin: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        display: none;
    }

    .mobile-menu .dropdown-menu .dropdown-menu.show,
    .mobile-menu .dropdown-submenu.show {
        display: block;
    }

    .mobile-menu .dropdown .dropdown-menu {
        display: none;
    }

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

    .mobile-menu .dropdown-menu .dropdown-item.dropdown-toggle::after {
        float: right;
        margin-top: 0.35rem;
    }

    .mobile-menu .dropdown-menu .dropdown-menu .dropdown-item {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
        color: #64748b;
        border-left: 2px solid #e2e8f0;
        margin-left: 0.5rem;
        border-radius: 0 8px 8px 0;
    }

    .mobile-menu .dropdown-menu .dropdown-menu .dropdown-item:hover {
        border-left-color: var(--xpnd-green);
        color: var(--xpnd-green);
        background: rgba(46, 125, 50, 0.04);
    }

    /* Mobile CTA */
    .mobile-cta {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.25rem;
        padding-top: 1.25rem;
        border-top: 1px solid #f1f5f9;
    }

    .mobile-cta .btn-header {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .navbar-nav .dropdown-toggle::after {
        margin-left: auto;
    }

    .header-cta {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 1.25rem;
        padding-top: 1.25rem;
        border-top: 1px solid #f1f5f9;
        justify-content: center;
        width: 100%;
        flex-direction: column;
        gap: 0.75rem !important;
    }

    .header-cta .btn-header {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }

    /* Show CTA buttons on mobile when menu is open */
    .header-cta .btn-header.d-none {
        display: inline-flex !important;
    }
}

@media (max-width: 575.98px) {
    .site-header .navbar {
        padding: 0.75rem 0;
    }

    .header-logo {
        height: 40px;
    }

    .site-header.scrolled .header-logo {
        height: 36px;
    }

    .navbar-collapse {
        border-radius: 0 0 16px 16px;
    }

    .navbar-collapse.collapse.show {
        padding: 1rem;
    }
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

.section {
    padding: var(--section-padding) 0;
}

.section-sm {
    padding: var(--section-padding-sm) 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6c757d;
    max-width: 600px;
}

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

/* Background Variants */
.bg-light-green {
    background-color: rgba(46, 125, 50, 0.05);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--xpnd-green) 0%, var(--xpnd-green-light) 100%);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--xpnd-blue) 0%, var(--xpnd-blue-light) 100%);
}

/* ==========================================================================
   Hero Section - Premium Enterprise Design
   ========================================================================== */

.hero-section {
    max-height: 1000px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Background */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(248, 250, 252, 1) 0%,
        rgba(248, 250, 252, 0.95) 30%,
        rgba(248, 250, 252, 0.7) 50%,
        rgba(248, 250, 252, 0.3) 70%,
        transparent 100%
    );
}

/* Hero Row */
.hero-row {
    min-height: calc(100vh - 160px);
    position: relative;
    z-index: 2;
}

/* Hero Content */
.hero-content {
    padding: 2rem 0;
}

/* Tagline */
.hero-tagline {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--xpnd-green);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    padding: 0.5rem 1rem;
    background: rgba(46, 125, 50, 0.08);
    border-radius: 4px;
    border-left: 3px solid var(--xpnd-green);
}

/* Title */
.hero-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

/* Description */
.hero-description {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 520px;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 1.75rem;
    background: linear-gradient(135deg, var(--xpnd-green) 0%, var(--xpnd-green-light) 100%);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(46, 125, 50, 0.3);
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, var(--xpnd-green-dark) 0%, var(--xpnd-green) 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

.btn-hero-primary i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    background: #ffffff;
    color: #1e293b;
    font-size: 0.9375rem;
    font-weight: 600;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-hero-secondary:hover {
    color: var(--xpnd-green);
    border-color: var(--xpnd-green);
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Stats Row */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--xpnd-green);
    line-height: 1;
    margin-bottom: 0.375rem;
}

.hero-stat-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748b;
}

/* Hero Responsive */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: clamp(2rem, 4vw, 2.75rem);
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-stat-number {
        font-size: 1.75rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        height: auto;
        max-height: none;
    }

    .hero-bg-overlay {
        background: linear-gradient(
            180deg,
            rgba(248, 250, 252, 0.95) 0%,
            rgba(248, 250, 252, 0.9) 50%,
            rgba(248, 250, 252, 0.85) 100%
        );
    }

    .hero-row {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .hero-stat {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .hero-row {
        padding: 15px 0 20px;
    }

    .hero-tagline {
        font-size: 0.6875rem;
        padding: 0.375rem 0.75rem;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .hero-stat {
        flex: 1;
        min-width: 80px;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.625rem;
    }

    .hero-stats {
        gap: 1rem;
    }
}

/* ==========================================================================
   Services Section - Premium Design
   ========================================================================== */

.services-section {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
}

/* Section Header */
.section-header {
    margin-bottom: 4rem;
}

.section-tagline {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--xpnd-green);
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(46, 125, 50, 0.08);
    border-radius: 50px;
}

.section-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

/* Service Card */
.service-card {
    position: relative;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--xpnd-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 20px 40px -8px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Color Variants */
.service-card[data-color="green"]::before { background: linear-gradient(90deg, #2E7D32, #4CAF50); }
.service-card[data-color="blue"]::before { background: linear-gradient(90deg, #1565C0, #42A5F5); }
.service-card[data-color="purple"]::before { background: linear-gradient(90deg, #7B1FA2, #AB47BC); }
.service-card[data-color="orange"]::before { background: linear-gradient(90deg, #E65100, #FF9800); }

.service-card[data-color="green"] .service-icon { background: rgba(46, 125, 50, 0.08); color: #2E7D32; }
.service-card[data-color="blue"] .service-icon { background: rgba(21, 101, 192, 0.08); color: #1565C0; }
.service-card[data-color="purple"] .service-icon { background: rgba(123, 31, 162, 0.08); color: #7B1FA2; }
.service-card[data-color="orange"] .service-icon { background: rgba(230, 81, 0, 0.08); color: #E65100; }

.service-card-inner {
    padding: 2rem;
}

/* Service Icon */
.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 1.5rem;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

/* Service Content */
.service-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 1.25rem;
}

/* Service Features */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #475569;
    border-bottom: 1px solid #f8fafc;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    font-size: 0.875rem;
    color: var(--xpnd-green);
    flex-shrink: 0;
}

/* Service Link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--xpnd-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--xpnd-green-dark);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* Services Stats */
.services-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--xpnd-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, #cbd5e1, transparent);
}

/* Services Responsive */
@media (max-width: 1199.98px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-stats {
        gap: 2rem;
        padding: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .services-section {
        padding: 4rem 0;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-card-inner {
        padding: 1.5rem;
    }

    .services-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .stat-item {
        flex: 1;
        min-width: 120px;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.8125rem;
    }
}

/* ==========================================================================
   About Section - Premium Design
   ========================================================================== */

.about-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Image Column */
.about-image-col {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.about-image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder i {
    font-size: 4rem;
    color: #94a3b8;
}

/* Decorations */
.about-decoration {
    position: absolute;
    border-radius: 20px;
    z-index: -1;
}

.about-decoration-1 {
    width: 100%;
    height: 100%;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--xpnd-green) 0%, var(--xpnd-green-light) 100%);
    opacity: 0.15;
}

.about-decoration-2 {
    width: 60%;
    height: 60%;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--xpnd-green-light) 0%, var(--xpnd-green) 100%);
    opacity: 0.1;
}

/* Experience Badge */
.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: #ffffff;
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 20px 40px -8px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 10;
}

.about-experience-badge .badge-number {
    display: block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--xpnd-green);
    line-height: 1;
}

.about-experience-badge .badge-text {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748b;
}

/* Content Column */
.about-content-col {
    padding-left: 1rem;
}

.about-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.about-lead {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 1rem;
}

.about-text {
    font-size: 1rem;
    line-height: 1.75;
    color: #64748b;
    margin-bottom: 2rem;
}

/* About Features */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.about-feature:hover {
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 125, 50, 0.08);
    border-radius: 12px;
    color: var(--xpnd-green);
}

.about-feature-icon i {
    font-size: 1.25rem;
}

.about-feature-content h4 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.about-feature-content p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* About CTA */
.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 1.75rem;
    background: linear-gradient(135deg, var(--xpnd-green) 0%, var(--xpnd-green-light) 100%);
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(46, 125, 50, 0.3);
}

.about-cta:hover {
    background: linear-gradient(135deg, var(--xpnd-green-dark) 0%, var(--xpnd-green) 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

.about-cta i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.about-cta:hover i {
    transform: translateX(4px);
}

/* About Responsive */
@media (max-width: 991.98px) {
    .about-section {
        padding: 4rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content-col {
        padding-left: 0;
        text-align: center;
    }

    .about-features {
        text-align: left;
    }

    .about-cta {
        display: flex;
        justify-content: center;
    }

    .about-experience-badge {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 767.98px) {
    .about-grid {
        gap: 2.5rem;
    }

    .about-decoration-1 {
        top: 10px;
        left: 10px;
    }

    .about-experience-badge {
        padding: 1rem 1.25rem;
        bottom: -15px;
    }

    .about-experience-badge .badge-number {
        font-size: 2rem;
    }

    .about-feature {
        padding: 0.875rem;
    }

    .about-feature-icon {
        width: 42px;
        height: 42px;
    }
}

/* ==========================================================================
   Values Section
   ========================================================================== */

.values-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8faf8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(46, 125, 50, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(46, 125, 50, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.values-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    position: relative;
}

.values-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0.75rem 0 1.25rem;
    line-height: 1.2;
}

.values-subtitle {
    font-size: 1.125rem;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

/* Value Card */
.value-card {
    position: relative;
    padding: 0rem !important;
}

.value-card-inner {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.value-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover .value-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.value-card:hover .value-card-inner::before {
    transform: scaleX(1);
}

/* Color Variants */
.value-card-blue .value-card-inner { color: #2563eb; }
.value-card-gray .value-card-inner { color: #64748b; }
.value-card-green-light .value-card-inner { color: #22c55e; }
.value-card-green .value-card-inner { color: var(--xpnd-green); }

/* Value Letter */
.value-letter-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.value-letter {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
    font-weight: 800;
    color: inherit;
    transition: all 0.4s ease;
}

.value-letter-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: currentColor;
    opacity: 0.1;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.value-card:hover .value-letter-bg {
    border-radius: 50%;
    transform: scale(1.1);
    opacity: 0.15;
}

/* Value Content */
.value-content {
    position: relative;
}

.value-card .value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.75rem;
}

.value-description {
    font-size: 0.9375rem;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* Value Number */
.value-number {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: currentColor;
    opacity: 0.08;
    line-height: 1;
    transition: all 0.4s ease;
}

.value-card:hover .value-number {
    opacity: 0.12;
    transform: scale(1.1);
}

/* Values Footer */
.values-footer {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.values-brand {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.brand-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.brand-letter:hover {
    transform: translateY(-4px);
}

.brand-x {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.brand-p {
    background: rgba(100, 116, 139, 0.1);
    color: #64748b;
}

.brand-n {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.brand-d {
    background: rgba(46, 125, 50, 0.1);
    color: var(--xpnd-green);
}

.values-tagline {
    font-size: 1.0625rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Values Section Responsive */
@media (max-width: 1199.98px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 991.98px) {
    .values-section {
        padding: 5rem 0;
    }

    .values-title {
        font-size: 2.25rem;
    }

    .values-header {
        margin-bottom: 3rem;
    }

    .values-grid {
        margin-bottom: 3rem;
    }
}

@media (max-width: 767.98px) {
    .values-section {
        padding: 4rem 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-card-inner {
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .value-letter-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .value-letter {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .value-letter-bg {
        width: 60px;
        height: 60px;
        border-radius: 14px;
    }

    .value-content {
        flex: 1;
    }

    .value-number {
        display: none;
    }

    .values-footer {
        padding-top: 2rem;
    }

    .brand-letter {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        border-radius: 10px;
    }
}

/* ==========================================================================
   Locations Section
   ========================================================================== */

.locations-section {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
}

.locations-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.locations-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0.75rem 0 1.25rem;
    line-height: 1.2;
}

.locations-subtitle {
    font-size: 1.125rem;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* Locations Content */
.locations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

/* Map Wrapper */
.locations-map-wrapper {
    position: sticky;
    top: 100px;
}

.locations-map-inner {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.locations-map-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.locations-map-inner:hover .locations-map-image {
    transform: scale(1.02);
}

.indonesia-map {
    width: 100%;
    height: auto;
    display: block;
}

/* Map Markers */
.map-marker {
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-marker:hover {
    transform: scale(1.1);
}

.marker-pulse {
    animation: markerPulse 2.5s ease-out infinite;
}

.map-marker-hq .marker-pulse {
    animation-duration: 2s;
}

@keyframes markerPulse {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.1;
        transform: scale(1.3);
    }
    100% {
        opacity: 0.4;
        transform: scale(1);
    }
}

.marker-label-hq {
    font-size: 11px;
    font-weight: 700;
    fill: #2E7D32;
    letter-spacing: 0.5px;
}

/* Map Legend */
.map-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-top: 1.25rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--xpnd-green);
}

.legend-hq .legend-dot {
    width: 16px;
    height: 16px;
    position: relative;
}

.legend-hq .legend-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
}

.legend-text {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}

/* Location Cards */
.locations-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: rgba(46, 125, 50, 0.2);
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.08);
}

.location-card-hq {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.04) 0%, rgba(46, 125, 50, 0.02) 100%);
    border-color: rgba(46, 125, 50, 0.15);
}

.location-card-hq:hover {
    border-color: rgba(46, 125, 50, 0.3);
}

.location-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.location-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(46, 125, 50, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon i {
    font-size: 1.25rem;
    color: var(--xpnd-green);
}

.location-card-hq .location-icon {
    background: var(--xpnd-green);
}

.location-card-hq .location-icon i {
    color: #ffffff;
}

.location-info {
    flex: 1;
}

.location-city {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background: var(--xpnd-green);
    color: #ffffff;
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-address {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    padding-left: 3.5rem;
}

/* Locations CTA */
.locations-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.locations-cta .cta-text {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

.locations-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--xpnd-green);
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.locations-cta .cta-button:hover {
    background: var(--xpnd-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.locations-cta .cta-button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.locations-cta .cta-button:hover i {
    transform: translateX(4px);
}

/* Locations Section Responsive */
@media (max-width: 1199.98px) {
    .locations-content {
        gap: 2rem;
    }
}

@media (max-width: 991.98px) {
    .locations-section {
        padding: 5rem 0;
    }

    .locations-title {
        font-size: 2.25rem;
    }

    .locations-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .locations-map-wrapper {
        position: relative;
        top: 0;
    }

    .locations-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .location-address {
        padding-left: 0;
        margin-top: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .locations-section {
        padding: 4rem 0;
    }

    .locations-header {
        margin-bottom: 3rem;
    }

    .locations-cards {
        grid-template-columns: 1fr;
    }

    .locations-cta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .map-legend {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* ==========================================================================
   Clients Section
   ========================================================================== */

.clients-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8faf8 0%, #ffffff 100%);
    position: relative;
}

.clients-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.clients-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0.75rem 0 1.25rem;
    line-height: 1.2;
}

.clients-subtitle {
    font-size: 1.125rem;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* Client Logo Grid */
.clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.client-logo-item {
    position: relative;
}

.client-logo-inner {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-logo-inner:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(46, 125, 50, 0.15);
}

.client-logo-inner img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.client-logo-inner:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Placeholder for missing logos */
.client-logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 0.5rem;
}

.client-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(46, 125, 50, 0.05) 100%);
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--xpnd-green);
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.client-logo-inner:hover .client-initials {
    background: var(--xpnd-green);
    color: #ffffff;
    transform: scale(1.05);
}

.client-name-full {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
    line-height: 1.3;
    max-width: 140px;
    transition: all 0.3s ease;
}

.client-logo-inner:hover .client-name-full {
    color: #1a1a2e;
}

/* Bottom Note */
.clients-note {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.clients-note p {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
    font-style: italic;
}

/* Clients Section Responsive */
@media (max-width: 1199.98px) {
    .clients-logo-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 991.98px) {
    .clients-section {
        padding: 5rem 0;
    }

    .clients-title {
        font-size: 2.25rem;
    }

    .clients-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) {
    .clients-section {
        padding: 4rem 0;
    }

    .clients-header {
        margin-bottom: 3rem;
    }

    .clients-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .client-logo-inner {
        height: 100px;
        padding: 1.5rem 1rem;
    }

    .client-logo-inner img {
        max-height: 45px;
    }

    .client-initials {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .client-name-full {
        font-size: 0.6875rem;
    }
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a472a 0%, #2E7D32 50%, #1b5e20 100%);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.15) 100%);
}

/* CTA Content */
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-badge i {
    font-size: 1rem;
    color: #ffffff;
}

.cta-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0 0 2.5rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: #ffffff;
    color: var(--xpnd-green);
}

.cta-btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary i {
    transition: transform 0.3s ease;
}

.cta-btn-primary:hover i {
    transform: translateX(4px);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.cta-btn-secondary i {
    font-size: 1.125rem;
}

/* CTA Contact */
.cta-contact {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-contact-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 1rem;
}

.cta-contact-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-contact-item:hover {
    color: #ffffff;
}

.cta-contact-item i {
    font-size: 1rem;
    opacity: 0.8;
}

/* CTA Decorations */
.cta-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-decoration-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    top: -200px;
    left: -150px;
}

.cta-decoration-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
}

/* CTA Section Responsive */
@media (max-width: 991.98px) {
    .cta-section {
        padding: 5rem 0;
    }

    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .cta-section {
        padding: 4rem 0;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }

    .cta-contact-items {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ==========================================================================
   Page Templates - Shared Styles
   ========================================================================== */

/* Page Hero */
.page-hero {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #1a472a 0%, #2E7D32 100%);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 1rem 0;
    line-height: 1.2;
}

.page-hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 600px;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #ffffff;
}

.breadcrumbs .separator {
    opacity: 0.5;
}

.breadcrumbs .current {
    color: #ffffff;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--xpnd-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* Page Section Padding */
.section {
    padding: 5rem 0;
}

.section-light {
    background: #f8faf8;
}

/* Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.team-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.team-card-image {
    margin-bottom: 1.5rem;
}

.team-card-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 0.5rem;
}

.team-card-role {
    font-size: 0.9375rem;
    color: var(--xpnd-green);
    font-weight: 500;
    margin: 0 0 0.75rem;
}

.team-card-bio {
    font-size: 0.9375rem;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.value-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
    font-weight: 800;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.value-letter.blue {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.value-letter.gray {
    background: rgba(100, 116, 139, 0.1);
    color: #64748b;
}

.value-letter.green-light {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.value-letter.green {
    background: rgba(46, 125, 50, 0.1);
    color: var(--xpnd-green);
}

.value-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 0.5rem;
}

.value-text {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Locations Grid (Page) */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.location-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: rgba(46, 125, 50, 0.2);
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.08);
}

.location-card.main-office {
    border-color: rgba(46, 125, 50, 0.15);
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.03) 0%, #ffffff 100%);
}

/* Career Cards */
.career-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.career-card:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.career-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.career-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 0.25rem;
}

.career-card-department {
    font-size: 0.875rem;
    color: var(--xpnd-green);
}

.career-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.career-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6c757d;
}

.career-meta-item svg {
    width: 16px;
    height: 16px;
}

.career-card-excerpt {
    font-size: 0.9375rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: var(--xpnd-green);
    color: #ffffff;
}

/* Page Templates Responsive */
@media (max-width: 991.98px) {
    .page-hero {
        padding: 6rem 0 3rem;
    }

    .page-hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 767.98px) {
    .page-hero {
        padding: 5rem 0 2.5rem;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero-description {
        font-size: 1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */

.site-footer {
    background: #1a1a2e;
    color: rgba(255, 255, 255, 0.8);
    padding-top: 4rem;
}

.site-footer h5,
.footer-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.7);
}

.site-footer a:hover {
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--xpnd-green-light);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--xpnd-green);
    transform: translateY(-3px);
}

/* ==========================================================================
   WhatsApp Button
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1040;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* Pulse Animation */
.whatsapp-float a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ==========================================================================
   Page Header
   ========================================================================== */

.page-header {
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, var(--xpnd-green) 0%, var(--xpnd-blue) 100%);
    color: #fff;
    text-align: center;
}

.page-header .page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}

.page-header .breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.page-header .breadcrumb-item.active {
    color: #fff;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Animations
   ========================================================================== */

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

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

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-gradient {
    background: linear-gradient(135deg, var(--xpnd-green) 0%, var(--xpnd-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    font-size: 1.5rem;
}

.icon-box-sm {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
}

.icon-box-lg {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.icon-box-primary {
    background: rgba(46, 125, 50, 0.1);
    color: var(--xpnd-green);
}

.icon-box-secondary {
    background: rgba(21, 101, 192, 0.1);
    color: var(--xpnd-blue);
}

/* Hover lift effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--xpnd-green);
    color: #fff;
    padding: 1rem;
    z-index: 9999;
}

.skip-link:focus {
    top: 0;
}

/* ==========================================================================
   WordPress Specific
   ========================================================================== */

/* Sticky posts */
.sticky .card {
    border-left: 4px solid var(--xpnd-green);
}

/* Alignments */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Captions */
.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: #6c757d;
    text-align: center;
    padding: 0.5rem;
}

/* Galleries */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.gallery-item {
    margin: 0;
}

.gallery-item img {
    border-radius: 0.5rem;
}

/* Screen reader text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}
