/* ===== CSS VARIABLES & GLOBAL STYLES ===== */
:root {
    --primary: #082c4f;
    --primary-dark: hsl(213, 76%, 18%);
    --primary-light: #2C75B5;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --max-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 2rem;
    --border-radius: 8px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-800);
    background-color: var(--gray-50);
    line-height: 1.6;
    font-size: 14px;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: scroll;
}

body.no-scroll {
    overflow-y: hidden;
}

body.mega-menu-open {
    overflow-y: hidden !important;
    overflow: hidden !important;
    height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ===== UTILITIES ===== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-spacing {
    padding: var(--spacing-2xl) 0;
}

.section-title {
    font-family: 'Bodoni Moda', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.highlight-accent {
    color: var(--primary-light);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--spacing-sm);
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 0.65rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.75rem;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    margin-top: 0.5rem;
}

.btn-primary {
    background: var(--primary-light);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(44, 117, 181, 0.3);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(44, 117, 181, 0.4);
    transform: translateY(-3px);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 117, 181, 0.3);
}

.btn-large {
    padding: 1rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    border-radius: 50px !important;
}

.section-header-cta {
    margin-top: 2rem;
    text-align: center;
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-light);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #ffffff;
    font-size: 0.9rem;
    padding: 0.8rem 0;
    box-shadow: 0 4px 12px rgba(10, 35, 66, 0.15);
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50% 0 0 50% / 100% 0 0 100%;
    pointer-events: none;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    gap: 2rem;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.top-left span {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
    font-weight: 500;
    transition: all 0.3s ease;
}

.top-left span i {
    font-size: 0.95rem;
    opacity: 0.9;
}

.top-left span:hover {
    transform: translateX(3px);
    opacity: 0.95;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.top-right a {
    color: #ffffff;
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.top-right a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ===== WORLDWIDE BANNER ===== */
.worldwide-banner {
    background: var(--gray-100);
    color: var(--gray-800);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.worldwide-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.worldwide-text {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: var(--gray-800);
}

.worldwide-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--gray-800) !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.worldwide-phone:hover {
    gap: 0.8rem;
    color: var(--primary) !important;
}

.worldwide-phone i {
    font-size: 14px;
}

@media (max-width: 768px) {
    .worldwide-content {
        flex-direction: row;
        gap: 0.8rem;
    }

    .worldwide-text,
    .worldwide-phone {
        font-size: 12px;
    }
}
.top-right a i {
    transition: transform 0.3s ease;
}

.top-right a:hover i {
    transform: scale(1.1);
}

.btn-top {
    width: auto !important;
    height: 25px !important;
    border-radius: var(--border-radius) !important;
    padding: 0.6rem 1rem !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

.btn-top:hover {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2) !important;
}

.top-tagline {
    font-size: 0.85rem;
    color: var(--white);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.top-tagline p {
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .top-bar {
        padding: 0.6rem 0;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .top-left {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        justify-content: center;
    }

    .top-left span {
        font-size: 0.85rem;
    }

    .top-right {
        justify-content: center;
        gap: 1rem;
    }
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.logo-img {
    height: 100px;
    width: 100%;
    max-width: 100%;
}

.logo-text h1 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 0.125rem;
}

.logo-text p {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    list-style: none;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-800);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-bottom: 2px solid transparent;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* ===== DROPDOWN MENU ===== */
.nav-item {
    position: relative;
}

.nav-item.has-dropdown {
    position: relative;
}

.nav-item .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--gray-800);
    font-weight: 500;
    font-size: 14px;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-bottom: 2px solid transparent;
}

/* Hire Today Button */
.nav-hire-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    background: var(--primary) !important;
    font-weight: 600;
    font-size: 13px;
    padding: 0.6rem 1.2rem !important;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-hire-btn:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 44, 79, 0.3);
    color: var(--white) !important;
}

.nav-item .chevron {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transform: none;
    min-width: 220px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    display: none;
    visibility: hidden;
    z-index: 60;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overflow-x: hidden;
    margin-top: 0.5rem;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1rem;
    font-size: 14px;
    white-space: nowrap;
    color: var(--gray-800);
    border: none;
    border-bottom: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    color: var(--primary-light);
    text-decoration: underline;
    background: transparent;
}

.dropdown-section {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.dropdown-section:last-child {
    border-bottom: none;
}

.dropdown-section-title {
    font-family: 'Bodoni Moda', Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: 0.5px;
    color: var(--primary);
    padding: 0.5rem 1rem 0.25rem;
    margin: 0;
}

.dropdown-section a {
    display: block;
    padding: 0.5rem 1rem;
}

/* ===== GRID DROPDOWN STYLES ===== */
.dropdown-grid {
    width: auto;
    max-width: none;
    max-height: calc(100vh - 100px);
    padding: 1.5rem;
    overflow-y: auto;
    overflow-x: hidden;
    display: none !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.dropdown-grid-container {
    display: block;
}

.container-grid {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.dropdown-category-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dropdown-category-title {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--primary);
}

.dropdown-category-title a {
    color: var(--primary);
    display: block;
}

.dropdown-category-title a:hover {
    color: var(--primary-dark);
}

.dropdown-subcategories {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.dropdown-subcategories a {
    color: var(--gray-700);
    font-size: 0.85rem;
    padding: 0.35rem 0;
    transition: all 0.3s ease;
    display: block;
}

.dropdown-subcategories a:hover {
    color: var(--primary);
    background-color: transparent !important;
    text-decoration: underline;
    padding-left: 0.5rem;
}

.dropdown-services-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.dropdown-services-sidebar .dropdown-section-title {
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.dropdown-services-sidebar a {
    color: var(--gray-700);
    font-size: 0.85rem;
    padding: 0.4rem 0;
    border-bottom: none;
    transition: all 0.3s ease;
    display: block;
}

.dropdown-services-sidebar a:hover {
    color: var(--primary);
    text-decoration: underline;
    padding-left: 0;
}

/* ===== GRID DROPDOWN RESPONSIVE ===== */
@media (max-width: 1200px) {
    .dropdown-grid {
        min-width: 1200px;
        max-width: 1200px;
        max-height: calc(100vh - 100px);
    }
}

@media (max-width: 1024px) {
    .dropdown-grid {
        min-width: 1000px;
        max-width: 1000px;
        max-height: calc(100vh - 100px);
    }
}

@media (max-width: 768px) {
    .dropdown-grid {
        min-width: auto;
        width: 100%;
        max-width: 100%;
        padding: 0.5rem 0;
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .dropdown-category-group {
        padding: 0.8rem 1rem;
        background: var(--gray-50);
        border-radius: 4px;
    }

    .dropdown-services-sidebar {
        padding: 0.8rem 1rem;
        background: var(--gray-50);
        border-radius: 4px;
        flex-direction: column;
    }

    .dropdown-services-sidebar a {
        display: block;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* ===== JOB SEEKERS DROPDOWN STYLES ===== */
.dropdown-job-seekers {
    min-width: 220px;
    padding: 1.5rem;
}

.dropdown-job-seekers .job-seekers-grid {
    display: block;
}

.dropdown-job-seekers .job-seeker-section a:not(.job-seeker-button) {
    color: var(--primary-dark) !important;
    font-size: 0.9rem;
    padding: 0.4rem 0;
    transition: all 0.3s ease;
    display: block;
}

.dropdown-job-seekers .job-seeker-section a:not(.job-seeker-button):hover {
    text-decoration: underline;
}

/* Job Seeker Dropdown Styling */
.job-seeker-button {
    color: var(--white) !important;
    font-weight: 600;
    display: block;
}
.job-seeker-button:hover {
    text-decoration: underline;
    padding-left: 0;
    color: var(--white) !important;
}
.job-seeker-section-divider {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.job-seeker-section-title {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--gray-800);
}

.job-seeker-phone-link {
    color: var(--primary-light) !important;
    text-decoration: none !important;
    font-size: 0.9rem;
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.job-seeker-link {
    color: var(--primary-dark) !important;
    display: block !important;
}

.job-seeker-cta {
    display: inline-block !important;
    color: var(--primary-light) !important;
    font-weight: 600;
    text-decoration: none !important;
    font-size: 0.9rem;
}

.job-seeker-section a:hover {
    color: var(--primary);
    text-decoration: underline;
    padding-left: 0;
}

.job-seeker-button {
    background: var(--primary-light) !important;
    color: white !important;
    padding: 12px 20px !important;
    border-radius: 6px;
    font-weight: 600 !important;
    text-align: center;
    display: block !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.job-seeker-button:hover {
    background: var(--primary) !important;
    padding-left: 20px !important;
    transform: translateX(4px);
}

/* ===== JOB SEEKERS RESPONSIVE ===== */
@media (max-width: 1024px) {
    .job-seekers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .dropdown-job-seekers {
        min-width: auto;
        width: 100%;
        padding: 0.5rem 0;
    }

    .job-seekers-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .job-seeker-section {
        padding: 0.8rem 1rem;
        background: var(--gray-50);
        border-radius: 4px;
    }

    .job-seeker-section-title {
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }

    .job-seeker-section a {
        font-size: 0.85rem;
    }
}

/* Desktop: open on hover or click */
@media (min-width: 769px) {
    .nav-item {
        position: relative;
    }
    
    .nav-item.has-dropdown:hover .dropdown-menu,
    .nav-item.has-dropdown.open .dropdown-menu {
        display: block !important;
        visibility: visible !important;
        position: absolute !important;
        top: 100% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: auto !important;
        margin-top: 0.5rem !important;
    }
    
    /* Full width for mega menu only */
    .nav-item.has-dropdown:hover .dropdown-grid,
    .nav-item.has-dropdown.open .dropdown-grid {
        display: grid !important;
        visibility: visible !important;
        position: fixed !important;
        top: 190px !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 1.5rem 5% !important;
        max-height: 400px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }
}

/* Mobile: dropdown becomes inline, toggled by click */
@media (max-width: 768px) {
    .nav-item.has-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 8px;
        margin-top: 0.3rem;
        padding: 0.3rem 0;
        display: none;
    }

    .nav-item.has-dropdown.open .dropdown-menu {
        display: block !important;
        visibility: visible !important;
    }
    
    .nav-item.has-dropdown.open .dropdown-grid {
        display: grid !important;
        visibility: visible !important;
    }

    .nav-item.has-dropdown.open .chevron {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

.header-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    font-size: 0.9rem;
}

.header-contact a {
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-contact a:hover {
    color: var(--primary);
}

.search-box {
    display: flex;
    background: var(--gray-100);
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
    gap: 0.5rem;
}

.search-box input {
    background: none;
    border: none;
    outline: none;
    width: 150px;
    font-family: inherit;
}

.search-box button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-600);
}

/* ===== FORM STYLES ===== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--gray-200);
    border-left: 3px solid var(--primary-light);
    border-radius: 0;
    font-size: 0.9rem;
    font-family: inherit;
    background: var(--gray-50);
    color: var(--gray-800);
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    border-left-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(44, 117, 181, 0.1);
}

textarea {
    resize: vertical;
    min-height: 140px;
}

label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.4rem;
}

button,
input[type="submit"],
input[type="button"] {
    background: var(--primary-light);
    color: var(--white);
    border: none;
    border-left: 3px solid var(--primary);
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 44, 79, 0.2);
}

/* Exclude FAQ buttons from global hover */
.faq-question:hover {
    background: transparent !important;
    transform: none !important;
    box-shadow: none !important;
}

button:active,
input[type="submit"]:active,
input[type="button"]:active {
    transform: translateY(0);
}

/* ===== FORM GRID ===== */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-800);
}

@media (max-width: 768px) {
    .header-contact {
        display: none;
    }

    .search-box {
        display: none;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--white);
        border-top: 1px solid var(--gray-200);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: var(--spacing-sm) var(--spacing-md);
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-toggle {
        display: block;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    margin-top: var(--spacing-xl);
}

/* CTA Section */
.footer-cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 3rem var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta-content {
    text-align: center;
}

.footer-cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.footer-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.footer-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.footer-cta-buttons .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-cta-buttons .btn-primary {
    background: var(--primary-light);
    color: var(--white);
    border: none;
}

.footer-cta-buttons .btn-primary:hover {
    background: #1e5fa8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 117, 181, 0.3);
}

.footer-cta-buttons .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.footer-cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.footer-cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Main Footer */
.footer-main {
    padding: 3rem var(--spacing-lg) 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--primary-light);
}

.footer-col-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    max-width: 200px;
}

/* Contact Info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-item i {
    color: var(--primary-light);
    min-width: 20px;
    margin-top: 0.1rem;
    font-size: 0.95rem;
}

.contact-item p {
    margin: 0;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Social Links */
.footer-socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-socials a:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-links a,
.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-cta-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-col-logo {
        grid-column: 1 / -1;
    }
    
    .footer-cta-section {
        padding: 2rem var(--spacing-lg);
    }
    
    .footer-cta-content h2 {
        font-size: 1.3rem;
    }
    
    .footer-cta-buttons {
        flex-direction: column;
    }
    
    .footer-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-main {
        padding: 2rem var(--spacing-lg) 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-col h4 {
        font-size: 0.95rem;
    }
    
    .footer-cta-content h2 {
        font-size: 1.1rem;
    }
    
    .footer-cta-content p {
        font-size: 0.95rem;
    }
    
    .footer-cta-buttons .btn {
        font-size: 0.9rem;
        padding: 0.65rem 1.2rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-spacing {
        padding: var(--spacing-xl) 0;
    }
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: #fff;
    padding: 0px;
    margin-bottom: 0px;
    border-bottom: 1px solid var(--gray-200);
}

.process-section .section-header {
    margin-bottom: 0rem;
}

.process-section .section-header .section-title {
    font-size: 3.5rem !important;
    text-align: center !important;
    padding: 1rem 70px !important;
}

.process-container {
    background: var(--gray-100);
    width: 100%;
    padding: 1.5rem 1rem;
    margin-top: 0px !important;
}

.process-container .section-title{
    font-family: 'Bodoni Moda', Georgia, serif;
    font-size: 2rem !important;
    text-align: left !important;
    padding: 0px !important;
}

.process-container h6{
    font-family: 'Bodoni Moda', Georgia, serif;
    font-size: 1rem !important;
    text-align: left !important;
    padding: .5rem 0px !important;
    text-transform: uppercase;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
}

.grid-two {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
    flex-wrap: wrap;
    align-items: flex-start;
}


.process-grid.grid-two .section-header-cta {
    margin: 1rem 1rem;
    text-align: start;
}

.process-grid.grid-two .section-header-cta  a {
    text-align: start;
}

.process-card {
    background: none;
    border-radius: 0;
    text-align: left;
    transition: all 0.3s ease;
    border: none;
    overflow: visible;
    padding: 0;
}

.process-card:hover {
    transform: none;
    box-shadow: none;
}

.process-card-image {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.grid-two .process-card-image {
    width: 100%;
    height: 160px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

/* Style for right-card (smaller category cards with image on top) */
.process-card.right-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 240px;
    height: 270px;
    flex-shrink: 0;
}

.grid-two > .left-card {
    flex: 0 0 auto;
    min-width: 280px;
}

.process-card.right-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.process-card.right-card .process-card-image {
    width: 100%;
    height: 200px;
    margin-bottom: 0;
    border-radius: 0;
    background: var(--gray-200);
}

.process-card.right-card .process-title {
    padding: 0.7rem 0.5rem;
    text-align: center;
    margin: 0;
    font-size: 0.85rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.process-card.right-card .process-title a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.process-card.right-card .process-title a:hover {
    color: var(--primary);
}

.process-card > h3,
.process-card > p {
    padding: 0;
}

.process-card > h3:first-of-type {
    padding-top: 0;
}

.process-title {
    font-family: 'Bodoni Moda', Georgia, serif;
    font-style: italic;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.8rem;
    margin-top: 0;
    text-align: left;
}

.process-description {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
    margin-top: 10px !important;
}

.process-cta {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.process-cta-text {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-header-cta {
    margin-top: 2rem;
    text-align: center;
}

.why-household-link {
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.why-household-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.why-household-image {
    width: 100vw;
    height: 100%;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 2rem;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

@media (max-width: 768px) {
    .why-household-image {
        height: 250px;
    }
}

/* ===== SERVICES HIGHLIGHTS SECTION ===== */
.services-highlights {
    background: var(--white);
    padding: 4rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.services-highlights .section-header {
    margin-bottom: 3rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.highlight-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    border: none;
    border-left: 3px solid var(--primary);
    text-align: left;
}

.highlight-card:hover {
    box-shadow: var(--shadow-md);
    transform: none;
    border-left-width: 5px;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.highlight-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.8rem;
}

.highlight-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .services-highlights {
        padding: 2.5rem 0;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlight-card {
        padding: 1.5rem;
    }
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.highlight-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.8rem;
}

.highlight-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .process-section,
    .services-highlights {
        padding: 2.5rem 0;
    }

    .process-grid,
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-card,
    .highlight-card {
        padding: 1.5rem;
    }
}

/* ===== CEO QUOTE SECTION ===== */
.ceo-quote {
    background: var(--gray-50);
    padding: 4rem 0;
}

.ceo-quote .section-title {
    margin-bottom: 3rem;
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quote-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quote-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-size: 1.2rem;
    color: var(--gray-800);
    line-height: 1.8;
    font-weight: 500;
    position: relative;
    padding-left: 0;
}

.quote-image-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.quote-image-wrapper {
    width: 280px;
    height: 350px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--gray-200);
    border-radius: 12px;
}

.quote-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
}

.ceo-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.ceo-title {
    font-size: 0.9rem;
    color: var(--primary-light);
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.quote-footer {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    max-width: 300px;
}

@media (max-width: 768px) {
    .ceo-quote {
        padding: 2.5rem 0;
    }

    .quote-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .quote-text {
        font-size: 1rem;
        padding-left: 1.5rem;
    }

    .quote-image-wrapper {
        width: 200px;
        height: 200px;
    }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    background: transparent;
    color: var(--primary-dark);
    position: relative;
    overflow: hidden;
    min-height: auto;
    padding: 3rem 0;
}

.hero-slider::before {
    display: none;
}

.hero-slider .container-fluid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 50% 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    height: 100%;
    padding: 0 var(--spacing-md);
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-intro {
    display: contents;
}

.hero-intro .container-fluid {
    display: contents;
}

.hero-intro-content {
    position: relative;
    z-index: 1;
    padding: 0% var(--spacing-md);
}

.hero-super-title {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(44, 117, 181, 0.1);
    border-radius: 50px;
}

.hero-main-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0;
    line-height: 1.2;
    color: var(--primary-dark);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    opacity: 0.95;
    color: var(--primary-dark) !important;
}

.hero-description {
    font-size: 0.95rem;
    margin: 1rem 0;
    max-width: 100%;
    line-height: 1.8;
    opacity: 0.9;
    color: var(--gray-700);
}

/* Hero Steps Section */
.hero-steps {
    margin-top: 1.5rem;
    background: rgba(30, 64, 175, 0.08);
    border-radius: 12px;
    padding: 1.2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    font-size: 0.9rem;
    border: 1px solid rgba(30, 64, 175, 0.15);
}

.hero-step-group-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    margin-bottom: 0.6rem;
    opacity: 0.8;
    color: var(--primary-dark);
}

.hero-step-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.hero-step {
    padding: 0.35rem 0.7rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(30, 64, 175, 0.3);
    color: var(--primary-dark);
    text-decoration: none;
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-step:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}

.hero-step-arrow {
    font-size: 0.8rem;
    opacity: 0.7;
    color: var(--gray-600);
    margin: 0 0.25rem;
}

.hero-motto {
    margin-top: 1rem;
    font-size: 0.8rem;
    opacity: 0.85;
    color: var(--primary-dark);
}

.hero-motto strong {
    font-weight: 600;
    margin-right: 0.35rem;
}

/* Action Flows Section */
.action-flows {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(224, 231, 255, 0.3) 100%);
    border-top: 1px solid rgba(30, 64, 175, 0.1);
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
}

.action-flows-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.action-flow-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(30, 64, 175, 0.15);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.08);
    transition: all 0.3s ease;
}

.action-flow-card:hover {
    border-color: rgba(30, 64, 175, 0.3);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.15);
    transform: translateY(-3px);
}

.action-flow-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.action-flow-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
}

.action-step {
    padding: 0.4rem 0.85rem;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--primary-light), rgba(224, 231, 255, 0.8));
    border: 1px solid rgba(30, 64, 175, 0.25);
    color: var(--primary-dark);
    text-decoration: none;
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.action-step:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.3);
}

.action-step-divider {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.65;
    color: var(--gray-600);
    margin: 0 0.3rem;
}

.action-motto {
    padding-top: 15px;
    border-top: 1px solid rgba(30, 64, 175, 0.1);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.action-motto strong {
    font-weight: 700;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .action-flows-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .action-flow-card {
        padding: 1.2rem;
    }

    .action-step {
        font-size: 0.8rem;
        padding: 0.35rem 0.7rem;
    }

    .hero-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .hero-step {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    .hero-slider .container-fluid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .hero-main-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }
}

/* Slider Container */
.hero-slider-wrapper {
    position: relative;
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: hidden;
}

.slide.active {
    display: block;
    animation: slideIn 0.5s ease-in-out;
}

@keyframes slideIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    /* background: linear-gradient(to top, var(--gray-200), var(--gray-200) 60%, transparent 100%); */
    width: 100%;
    padding: var(--spacing-lg);
    text-align: left;
}

.slide h2 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.slide p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.95;
    line-height: 1.5;
}

.slide-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.indicator.active {
    background: var(--white);
    width: 24px;
    border-radius: 5px;
    border-color: var(--white);
}

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.slide-nav:hover {
    background: rgba(255, 255, 255, 0.35);
}

.slide-prev {
    left: 10px;
}

.slide-next {
    right: 10px;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: var(--spacing-2xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FLASH BANNER ===== */
.flash-banner {
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
    background: var(--gray-50);
}

.flash-content {
    position: relative;
    z-index: 2;
}

.flash-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--white);
    padding: var(--spacing-2xl) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
}

.about-text p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--white);
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0;
    box-shadow: none;
    border: none;
    text-align: left;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: none;
    border-left-color: var(--primary);
    border-left-width: 5px;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== PILL ROW ===== */
.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.pill {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: var(--gray-100);
    color: var(--primary);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pill:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .services {
        padding: 2.5rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .pill-row {
        gap: 0.8rem;
    }

    .pill {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
}

/* ===== WHY GTL SECTION STYLES ===== */
.why-gtl {
    background: var(--white);
    padding: 4rem 0;
}

.why-gtl-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.why-gtl-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.why-gtl-content .section-title {
    text-align: left;
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-gtl-content .section-subtitle {
    text-align: left;
    margin: 0;
    max-width: 100%;
}

.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    color: var(--gray-800);
    line-height: 1.6;
}

.check-list li i {
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.mini-metrics {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
}

.mini-metric {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 0;
    border-left: 3px solid var(--primary);
}
    border-left: 4px solid var(--primary);
}

.mini-metric strong {
    display: block;
    font-size: 1rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.mini-metric p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: var(--gray-50);
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: 50% 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--primary);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    color: var(--gray-700);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-style: normal;
    max-height: 70px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 0.95rem;
}

.testimonial-text.expanded {
    max-height: none;
}

.testimonial-text.collapsed::after {
    content: '...';
}

.read-more-btn {
    display: inline-block;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.read-more-btn.hide {
    display: none;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 0.95rem;
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin: 0;
}

/* ===== BADGE VERTICAL (AGENCY PROMISE) ===== */
.badge-vertical {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-left: 3px solid var(--primary);
    border-radius: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 2rem;
    box-shadow: var(--shadow-sm);
}

.badge-vertical > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: var(--gray-100);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    width: fit-content;
    border: 1px solid var(--gray-300);
}

.badge-vertical h3 {
    font-size: 1.2rem;
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.badge-vertical > div:first-child > p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.badge-graphic {
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.badge-graphic img {
    width: 100%;
    height: auto;
    display: block;
}

.badge-foot {
    background: var(--white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
    font-size: 0.95rem;
    color: var(--gray-800);
    font-weight: 500;
}

.badge-foot i {
    font-size: 1rem;
    color: var(--primary);
}

/* ===== ENTRY POINTS SECTION ===== */
.entry-points {
    background: var(--white);
}

.split-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.split-card {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(224, 231, 255, 0.4) 100%);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    border: 1px solid rgba(30, 64, 175, 0.15);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.split-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.split-card p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.split-card ul {
    list-style: none;
    padding: 0;
    margin: var(--spacing-sm) 0 0 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.split-card li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    color: var(--gray-800);
    font-size: 0.95rem;
    line-height: 1.5;
}

.split-card li i {
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.split-card .btn {
    margin-top: var(--spacing-sm);
    align-self: flex-start;
}

.cta-strip {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.cta-strip > div {
    flex: 1;
}

.cta-strip h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.cta-strip p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-strip .btn {
    white-space: nowrap;
    flex-shrink: 0;
}

/* ===== VACANCIES SECTION ===== */
.vacancies {
    background: var(--white);
}

.vacancies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.vacancy-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.vacancy-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.vacancy-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
}

.vacancy-card p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.vacancy-btn {
    display: inline-block;
    margin-top: var(--spacing-md);
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background: var(--gray-50);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2.5rem;
}

/* ===== VACANCY MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.modal-overlay.show {
    display: flex;
}

.modal-dialog {
    width: 100%;
    max-width: 640px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.5);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #f9fafb;
    padding: 1rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.modal-header h3 {
    font-size: 1rem;
    margin: 0;
}

.modal-header p {
    font-size: 0.8rem;
    opacity: 0.9;
    margin: 0.25rem 0 0 0;
}

.modal-close {
    border: none;
    background: rgba(15, 23, 42, 0.25);
    color: #e5e7eb;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(15, 23, 42, 0.4);
    color: #ffffff;
}

.modal-body {
    padding: 1.3rem 1.4rem 1.5rem;
    background: #f9fafb;
}

.modal-search {
    margin-bottom: 1rem;
}

.modal-search label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.modal-search input {
    width: 100%;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    background: #ffffff;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.modal-search input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(20, 89, 166, 0.3);
}

.vacancy-list {
    max-height: 300px;
    overflow-y: auto;
    display: grid;
    gap: 0.75rem;
}

.modal-vacancy-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    font-size: 0.9rem;
}

.vacancy-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex: 1;
}

.vacancy-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.vacancy-title {
    font-weight: 700;
    color: var(--primary-dark);
}

.vacancy-tag {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

.vacancy-status {
    font-size: 0.78rem;
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    border: none;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.vacancy-status:hover {
    background: var(--primary-dark);
}

.vacancy-empty {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 0.6rem;
    display: none;
    text-align: center;
    padding: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .services-grid,
    .testimonials-grid,
    .vacancies-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .split-grid {
        grid-template-columns: 1fr;
    }

    .cta-strip {
        flex-direction: column;
        text-align: center;
    }

    .cta-strip .btn,
    .split-card .btn {
        width: 100%;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    .why-gtl-wrapper {
        grid-template-columns: 1fr;
    }

    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }

    .badge-vertical {
        position: static;
    }

    .pill-row {
        gap: 0.6rem;
        margin-top: var(--spacing-xl);
    }

    .pill {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== ABOUT PAGE STYLES ===== */

/* About Hero Section */
/* ===== ABOUT PAGE - REDESIGNED SECTIONS ===== */

/* Hero Banner */
.about-hero-banner {
    background: linear-gradient(135deg, rgba(8, 44, 79, 0.75) 0%, rgba(44, 117, 181, 0.75) 100%), url('../img/banner-image.jpeg') center/cover no-repeat;
    color: #ffffff;
    padding: 6rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(8, 44, 79, 0.3) 0%, rgba(8, 44, 79, 0.5) 50%, rgba(8, 44, 79, 0.3) 100%);
    pointer-events: none;
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-banner-kicker {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    display: inline-block;
}

.hero-banner-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-banner-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
}

/* About Description Section */
.about-description-section {
    background: #ffffff;
    padding: 4rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.description-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: flex-start;
}

.description-col:first-child h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin: 0;
}

.description-text {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.description-text:last-child {
    margin-bottom: 0;
}



/* Stats Section */
.about-stats-section {
    background: #ffffff;
    padding: 3rem 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.stat-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: #f9fafb;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(8, 44, 79, 0.1);
    transform: translateY(-4px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: #ffffff;
    font-size: 1.75rem;
}

.stat-content {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 600;
}

/* Promise Section */
.about-promise-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0f7 100%);
    padding: 4rem 0;
}

.promise-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.promise-header {
    text-align: center;
    margin-bottom: 3rem;
}

.promise-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.promise-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.promise-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(8, 44, 79, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-light);
}

.promise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(8, 44, 79, 0.15);
}

.promise-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(44, 117, 181, 0.15) 0%, rgba(8, 44, 79, 0.08) 100%);
    color: var(--primary-light);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.promise-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.promise-card p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

/* Responsive - About First Section */
@media (max-width: 1024px) {
    .hero-banner-title {
        font-size: 2.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .promise-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .description-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero-banner {
        padding: 4rem 0 2rem;
    }

    .hero-banner-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-banner-tagline {
        font-size: 1.2rem;
    }

    .about-description-section {
        padding: 2.5rem 0;
    }

    .description-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .description-col:first-child h2 {
        font-size: 1.6rem;
    }

    .description-text {
        font-size: 1rem;
    }

    .about-stats-section {
        padding: 2.5rem 0;
    }

    .stat-card {
        gap: 1rem;
        padding: 1.25rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .about-promise-section {
        padding: 3rem 0;
    }

    .promise-header h2 {
        font-size: 1.8rem;
    }

    .promise-header p {
        font-size: 1rem;
    }

    .promise-card {
        padding: 1.75rem;
    }

    .promise-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .promise-card h3 {
        font-size: 1.1rem;
    }

    .promise-card p {
        font-size: 0.9rem;
    }
}



/* Mission, Vision & Values Section */
.two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.card-soft {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.8rem;
    box-shadow: var(--shadow-md);
    font-size: 0.95rem;
    color: var(--gray-600);
    border-left: 3px solid var(--primary-light);
}

.card-soft h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.card-soft p {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.value-list {
    list-style: none;
    display: grid;
    gap: 1rem;
    margin-top: 0.8rem;
}

.value-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.9rem;
}

.value-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 117, 181, 0.1);
    color: var(--primary-light);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.value-list strong {
    color: var(--primary);
    display: block;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

/* Story Section */
.story-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-top: 2rem;
    border-left: 3px solid var(--primary-light);
}

.story-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.story-card p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    padding: var(--spacing-2xl) 0;
    background: var(--gray-50);
}

.team-section .section-title {
    margin-bottom: var(--spacing-lg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.8rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-light);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.team-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.team-role {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-bio {
    font-size: 0.85rem;
    color: var(--gray-600);
    text-align: center;
    margin-top: 0.5rem;
    line-height: 1.6;
}

.bio-short,
.bio-full {
    display: inline;
}

.bio-full {
    display: none;
}

.bio-toggle {
    display: inline-block;
    margin-top: 0.8rem;
    background: none;
    border: none;
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    transition: all 0.2s ease;
}

.bio-toggle:hover {
    color: var(--primary);
}

/* Why GTL / Trust Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.trust-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    font-size: 0.9rem;
    color: var(--gray-600);
    border-left: 3px solid var(--primary-light);
    transition: all 0.3s ease;
}

.trust-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.trust-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.trust-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.trust-card ul li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.trust-card ul li i {
    color: var(--primary-light);
    font-size: 0.85rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

/* CTA Strip */
.cta-strip {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 15px 35px rgba(8, 44, 79, 0.2);
    margin-top: 3rem;
}

.cta-strip h3 {
    font-family: 'Bodoni Moda', Georgia, serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cta-strip p {
    font-size: 0.95rem;
    opacity: 0.95;
    margin: 0;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-strip .btn {
    box-shadow: none;
    white-space: nowrap;
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
}

.cta-strip .btn:hover {
    background: transparent;
    color: var(--white);
}

/* Responsive - About Page */
@media (max-width: 1024px) {
    .about-hero-inner {
        grid-template-columns: 1fr;
    }

    .about-hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .promise-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .cta-strip {
        flex-direction: column;
        text-align: center;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .about-hero-banner {
        padding: 3.5rem 0 2rem;
    }

    .hero-banner-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-banner-description {
        font-size: 1rem;
    }

    .about-stats-section {
        padding: 2.5rem 0;
    }

    .stat-card {
        gap: 1rem;
        padding: 1.25rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .about-promise-section {
        padding: 3rem 0;
    }

    .promise-header h2 {
        font-size: 1.8rem;
    }

    .promise-header p {
        font-size: 1rem;
    }

    .promise-card {
        padding: 1.75rem;
    }

    .promise-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .promise-card h3 {
        font-size: 1.1rem;
    }

    .promise-card p {
        font-size: 0.9rem;
    }

    .about-hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .about-hero-text {
        font-size: 0.95rem;
    }

    .about-hero-card {
        padding: 2rem;
        margin-top: 2rem;
    }

    .hero-card-header {
        margin-bottom: 1.25rem;
    }

    .about-hero-list {
        gap: 0.75rem;
    }

    .about-hero-text {
        font-size: 0.9rem;
    }

    .about-hero-meta {
        flex-direction: column;
        gap: 0.8rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .cta-strip {
        padding: 1.5rem;
        gap: 1rem;
    }

    .cta-strip h3 {
        font-size: 1.2rem;
    }

    .cta-strip .btn {
        width: 100%;
    }
}

/* ========================================
   PROFESSIONAL ABOUT PAGE REDESIGN STYLES
   ======================================== */

/* Hero Section Enhancements */
.about-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.about-hero-content {
  color: white;
}

.about-hero-kicker {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.about-hero-title {
  font-size: 3.5rem;
  font-family: 'Bodoni Moda', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: white;
}

.about-hero-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
}

/* Stats Section */
.about-hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero Card */
.about-hero-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  height: fit-content;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-card-header i {
  font-size: 1.5rem;
  color: var(--primary);
}

.hero-card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.about-hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.about-hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.about-hero-list i {
  color: var(--primary);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.about-hero-list span {
  flex: 1;
}

.hero-card-footer {
  font-size: 0.875rem;
  color: var(--gray-600);
  font-style: italic;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

/* Section Header Styling */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-kicker {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.75rem;
  font-family: 'Bodoni Moda', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin: 0 0 1rem 0;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Mission, Vision & Values Grid */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.mvv-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  border: 3px solid transparent;
  border-left-color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.mvv-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.mvv-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 1rem 0;
}

.mvv-card p {
  color: var(--gray-600);
  line-height: 1.8;
  margin: 0;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.values-list li {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
  font-size: 0.95rem;
}

.values-list strong {
  color: var(--gray-900);
  display: block;
  margin-bottom: 0.25rem;
}

/* Story Section */
.story-section {
  background: var(--gray-50);
}

.story-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-content .section-header {
  text-align: left;
  margin-bottom: 2rem;
}

.story-content .section-header .section-title {
  text-align: left;
}

.story-text {
  margin-bottom: 2rem;
}

.story-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin: 0 0 1.5rem 0;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.highlight-item i {
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.highlight-item span {
  color: var(--gray-900);
  font-weight: 500;
}

.story-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 4rem;
}

/* Team Section */
.team-section {
  background: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.team-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.team-card-image {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-light), rgba(44, 117, 181, 0.2));
}

.team-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s ease;
}

.team-card:hover .team-card-image img {
  transform: scale(1.05);
}

.team-avatar-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 3rem;
  background: linear-gradient(135deg, var(--primary-light), rgba(44, 117, 181, 0.2));
}

.team-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 44, 79, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-card-overlay {
  opacity: 1;
}

.team-bio-preview {
  text-align: center;
  color: white;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.team-card-content {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 0.5rem 0;
}

.team-role {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.team-read-more {
  margin-top: auto;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.team-read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(8, 44, 79, 0.3);
}

.empty-state {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--gray-600);
}

.empty-state i {
  font-size: 3rem;
  color: var(--gray-200);
  display: block;
  margin-bottom: 1rem;
}

/* Team Modal */
.team-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
}

.team-modal {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-600);
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--gray-900);
}

.team-modal h4 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 0.5rem 0;
}

.modal-role {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
  margin: 0 0 1.5rem 0;
}

.modal-bio {
  color: var(--gray-600);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Why GTL Section */
.why-gtl-section {
  background: var(--gray-50);
}

.why-gtl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.gtl-benefit-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  border-left: 4px solid var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.gtl-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.benefit-icon.employers {
  background: linear-gradient(135deg, #2C75B5, #1a4a7a);
}

.benefit-icon.candidates {
  background: linear-gradient(135deg, #7cb342, #558b2f);
}

.gtl-benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 1.25rem 0;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem 0;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.benefit-list i {
  color: var(--primary);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-link:hover {
  gap: 1rem;
  color: var(--gray-900);
}

/* Process Flow */
.process-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 180px;
  background: white;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  line-height: 60px;
  text-align: center;
}

.process-step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 0.75rem 0;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin: 0 1rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.cta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-family: 'Bodoni Moda', serif;
  font-weight: 700;
  color: white;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border-color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: var(--primary);
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-outline:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px);
}

/* About Section Spacing */
.about-section {
  padding: 4rem 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 0;
  }

  .about-hero-title {
    font-size: 2.5rem;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .story-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .why-gtl-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-flow {
    gap: 1rem;
  }

  .process-arrow {
    transform: rotate(90deg);
    margin: 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-hero-inner {
    padding: 2.5rem 0;
  }

  .about-hero-title {
    font-size: 1.75rem;
  }

  .about-hero-text {
    font-size: 1rem;
  }

  .about-section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .story-highlights {
    gap: 1rem;
  }

  .mvv-card {
    padding: 2rem 1.5rem;
  }

  .gtl-benefit-card {
    padding: 2rem 1.5rem;
  }

  .process-step {
    min-width: 150px;
    padding: 1.5rem 1rem;
  }

  .cta-content h2 {
    font-size: 1.75rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .team-modal {
    padding: 2rem;
  }

  .about-hero-card {
    padding: 2rem;
  }
}

/* ========================================
   PROFESSIONAL BLOGS PAGE STYLES
   ======================================== */

/* Blogs Hero Section */
.blogs-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.blogs-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.blogs-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.blogs-hero-content {
  color: white;
}

.blogs-hero-kicker {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.blogs-hero-title {
  font-size: 3.5rem;
  font-family: 'Bodoni Moda', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: white;
}

.blogs-hero-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
}

.blogs-hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
}

.feature-item i {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.blogs-hero-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  height: fit-content;
}

.blogs-hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blogs-hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.blogs-hero-list i {
  color: var(--primary);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.blogs-hero-list span {
  flex: 1;
}

/* Blogs Section */
.blogs-section {
  background: var(--gray-50);
  padding: 4rem 0;
}

.blogs-layout {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

/* Blogs Grid */
.blogs-main {
  width: 100%;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
  position: relative;
  width: 100%;
  padding-bottom: 66.666%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-light), rgba(44, 117, 181, 0.2));
}

.blog-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-image-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 3rem;
  background: linear-gradient(135deg, var(--primary-light), rgba(44, 117, 181, 0.2));
}

.blog-card-overlay {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
}

.read-time {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(8, 44, 79, 0.9);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.blog-card-content {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
}

.blog-category {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-weight: 600;
}

.blog-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-600);
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 1rem 0;
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--gray-600);
  line-height: 1.7;
  flex-grow: 1;
  margin: 0 0 1.5rem 0;
  font-size: 0.95rem;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-read-more:hover {
  gap: 1rem;
  color: var(--gray-900);
}

/* Pagination */
.blogs-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.pagination-btn,
.pagination-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid var(--gray-200);
  background: white;
  color: var(--gray-600);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pagination-num.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-color: var(--primary);
}

.pagination-btn:hover,
.pagination-num:hover:not(.active) {
  border-color: var(--primary);
  color: var(--primary);
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 12px;
}

.empty-state i {
  font-size: 4rem;
  color: var(--gray-200);
  display: block;
  margin-bottom: 1rem;
}

.empty-state h3 {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin: 0 0 0.5rem 0;
}

.empty-state p {
  color: var(--gray-600);
  margin: 0;
}

/* Sidebar */
.blogs-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: white;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 1.25rem 0;
}

.categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.categories-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: var(--gray-50);
  color: var(--gray-600);
  text-decoration: none;
  transition: all 0.3s ease;
}

.categories-list a:hover,
.categories-list a.active {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
}

.categories-list span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.categories-list small {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Topics Cloud */
.topics-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.topic-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--gray-600);
  transition: all 0.3s ease;
  cursor: pointer;
}

.topic-tag:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-color: var(--primary);
}

/* CTA Card */
.cta-card {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  text-align: center;
}

.cta-card .sidebar-title {
  color: white;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem 0;
  line-height: 1.7;
}

.sidebar-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  color: var(--primary);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sidebar-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Blogs CTA Section */
.blogs-cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 4rem 0;
}

.blogs-cta-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}

.blogs-cta-content h2 {
  font-size: 2.5rem;
  font-family: 'Bodoni Moda', serif;
  font-weight: 700;
  color: white;
  margin: 0 0 1rem 0;
}

.blogs-cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}

.blogs-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .blogs-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 0;
  }

  .blogs-hero-title {
    font-size: 2.5rem;
  }

  .blogs-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .blogs-cta-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .blogs-hero-inner {
    padding: 2.5rem 0;
  }

  .blogs-hero-title {
    font-size: 1.75rem;
  }

  .blogs-hero-text {
    font-size: 1rem;
  }

  .blogs-grid {
    grid-template-columns: 1fr;
  }

  .blogs-pagination {
    gap: 0.5rem;
  }

  .pagination-btn,
  .pagination-num {
    width: 35px;
    height: 35px;
    font-size: 0.875rem;
  }

  .blogs-cta-content h2 {
    font-size: 1.75rem;
  }

  .blogs-cta-buttons {
    flex-direction: column;
  }

  .sidebar-card {
    padding: 1.5rem;
  }

  .sidebar-title {
    font-size: 1rem;
  }

  .blogs-hero-card {
    padding: 2rem;
  }
}

/* ===== VIDEOS SECTION ===== */
.videos-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: white;
  padding: 3rem 0 2rem;
}

.videos-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.videos-hero p {
  font-size: 1rem;
  opacity: 0.95;
}

.videos-grid-section {
  padding: 3rem 0;
  background: var(--gray-100);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.video-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.video-thumbnail {
  width: 100%;
  height: 200px;
  background: #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-button {
  position: absolute;
  font-size: 3rem;
  color: white;
  opacity: 0.8;
}

.video-thumbnail-placeholder {
  color: white;
  font-size: 1rem;
}

.video-card-content {
  padding: 1rem;
}

.video-card-title {
  color: var(--primary-dark);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.video-card-description {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.video-card-link {
  color: var(--primary-light);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.video-card-link:hover {
  transform: translateX(4px);
}

.video-empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 3rem;
}

.video-empty-icon {
  font-size: 3rem;
  color: #ddd;
  margin-bottom: 1rem;
  display: block;
}

.video-empty-text {
  color: var(--gray-600);
  font-size: 1rem;
}

/* ================================ */
/* Gallery Page Styles */
/* ================================ */

.gallery-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: white;
  padding: 3rem 0 2rem;
}

.gallery-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.gallery-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 600px;
}

.gallery-filter-section {
  background: var(--gray-100);
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.gallery-filter-label {
  color: var(--gray-600);
  font-weight: 600;
  font-size: 0.95rem;
}

.gallery-filter-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.gallery-filter-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-light);
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.gallery-filter-btn.active {
  background: var(--primary-light);
  color: white;
}

.gallery-filter-btn:not(.active) {
  background: white;
  color: var(--primary-light);
}

.gallery-filter-btn:hover {
  background: var(--primary-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(44, 117, 181, 0.3);
}

.gallery-grid-section {
  padding: 3rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.gallery-card-image {
  width: 100%;
  height: 220px;
  background: #f3f4f6;
  overflow: hidden;
  position: relative;
}

.gallery-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-card-image img {
  transform: scale(1.08);
}

.gallery-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 44, 79, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-view-btn {
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.gallery-view-btn:hover {
  background: white;
  color: var(--primary-light);
  transform: scale(1.1);
}

.gallery-card-content {
  padding: 1.2rem;
}

.gallery-card-category {
  color: var(--primary-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
  display: block;
}

.gallery-card-title {
  color: var(--primary-dark);
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
  line-height: 1.4;
}

.gallery-card-description {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.5;
}

.gallery-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.gallery-page-btn {
  padding: 0.7rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  min-width: 44px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-page-btn.active {
  background: var(--primary-light);
  color: white;
  border-color: var(--primary-light);
}

.gallery-page-btn:not(.active) {
  background: white;
  color: var(--primary-light);
}

.gallery-page-btn:not(.active):hover {
  background: #f3f4f6;
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.gallery-empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 5rem 2rem;
}

.gallery-empty-icon {
  font-size: 5rem;
  color: #d1d5db;
  margin-bottom: 1.5rem;
  display: block;
}

.gallery-empty-text {
  color: var(--grey);
  font-size: 1.05rem;
  font-weight: 500;
  max-width: 400px;
  margin: 0 auto;
}

/* Responsive Gallery */
@media (max-width: 1024px) {
  .gallery-hero h1 {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .gallery-filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .gallery-hero {
    padding: 2rem 0 1.5rem;
  }

  .gallery-hero h1 {
    font-size: 1.75rem;
  }

  .gallery-hero p {
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }

  .gallery-card-image {
    height: 180px;
  }

  .gallery-card-content {
    padding: 0.8rem;
  }

  .gallery-card-title {
    font-size: 0.95rem;
  }

  .gallery-card-description {
    font-size: 0.8rem;
  }

  .gallery-filter-buttons {
    gap: 0.5rem;
  }

  .gallery-filter-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }

  .gallery-grid-section {
    padding: 2rem 0;
  }

  .gallery-pagination {
    gap: 0.5rem;
  }

  .gallery-page-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    min-width: 40px;
  }

  .gallery-empty-state {
    padding: 3rem 1rem;
  }

  .gallery-empty-icon {
    font-size: 3.5rem;
  }
}

/* ================================ */
/* Resources Page Styles */
/* ================================ */

.resources-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: white;
  padding: 3rem 0 2rem;
}

.resources-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.resources-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 600px;
}

.resources-filter-section {
  background: var(--gray-100);
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.resources-filter-label {
  color: var(--gray-600);
  font-weight: 600;
  font-size: 0.95rem;
}

.resources-filter-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.resources-filter-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-light);
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.resources-filter-btn.active {
  background: var(--primary-light);
  color: white;
}

.resources-filter-btn:not(.active) {
  background: white;
  color: var(--primary-light);
}

.resources-filter-btn:hover {
  background: var(--primary-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(44, 117, 181, 0.3);
}

.resources-grid-section {
  padding: 3rem 0;
  background: var(--gray-50);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.8rem;
}

.resource-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border-left: 4px solid var(--primary-light);
}

.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.resource-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.resource-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.resource-card-title {
  color: var(--primary-dark);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.resource-card-content {
  flex-grow: 1;
  margin-bottom: 1rem;
}

.resource-card-description {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.resource-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.resource-tag {
  display: inline-block;
  background: var(--primary-light);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.resource-actions {
  display: flex;
  gap: 0.5rem;
}

.resource-btn {
  width: 36px;
  height: 36px;
  background: var(--primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.resource-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.resources-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.resources-page-btn {
  padding: 0.7rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  min-width: 44px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resources-page-btn.active {
  background: var(--primary-light);
  color: white;
  border-color: var(--primary-light);
}

.resources-page-btn:not(.active) {
  background: white;
  color: var(--primary-light);
}

.resources-page-btn:not(.active):hover {
  background: #f3f4f6;
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.resources-empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 5rem 2rem;
}

.resources-empty-icon {
  font-size: 5rem;
  color: #d1d5db;
  margin-bottom: 1.5rem;
  display: block;
}

.resources-empty-text {
  color: var(--gray-600);
  font-size: 1.05rem;
  font-weight: 500;
  max-width: 400px;
  margin: 0 auto;
}

/* Responsive Resources */
@media (max-width: 1024px) {
  .resources-hero h1 {
    font-size: 2rem;
  }

  .resources-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .resources-filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .resources-hero {
    padding: 2rem 0 1.5rem;
  }

  .resources-hero h1 {
    font-size: 1.75rem;
  }

  .resources-hero p {
    font-size: 1rem;
  }

  .resources-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .resource-card {
    padding: 1rem;
  }

  .resource-card-header {
    gap: 0.75rem;
  }

  .resource-card-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .resource-card-title {
    font-size: 0.95rem;
  }

  .resource-card-description {
    font-size: 0.85rem;
  }

  .resources-filter-buttons {
    gap: 0.5rem;
  }

  .resources-filter-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }

  .resources-grid-section {
    padding: 2rem 0;
  }

  .resources-pagination {
    gap: 0.5rem;
  }

  .resources-page-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    min-width: 40px;
  }

  .resources-empty-state {
    padding: 3rem 1rem;
  }

  .resources-empty-icon {
    font-size: 3.5rem;
  }
}

/* ================================ */
/* Gallery Lightbox Styles */
/* ================================ */

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.lightbox.open {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.lightbox-close:hover {
  transform: rotate(90deg);
  color: var(--primary-light);
}

.lightbox-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lightbox-main img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-info {
  color: white;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.lightbox-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-light);
}

.lightbox-info p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.lightbox-counter {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.lightbox-nav {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
  flex-shrink: 0;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
  .lightbox-content {
    flex-direction: column;
    width: 95%;
    gap: 1.5rem;
  }

  .lightbox-main img {
    max-height: 60vh;
  }

  .lightbox-nav {
    position: absolute;
    bottom: -70px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .lightbox-prev {
    left: 0;
  }

  .lightbox-next {
    right: 0;
  }

  .lightbox-close {
    top: -35px;
    right: -10px;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }

  .lightbox-info {
    padding: 1rem;
  }

  .lightbox-info h3 {
    font-size: 1.1rem;
  }

  .lightbox-info p {
    font-size: 0.95rem;
  }
}

/* ================================ */
/* Publications Page Styles */
/* ================================ */

.publications-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: white;
  padding: 3rem 0 2rem;
}

.publications-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.publications-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 600px;
}

.publications-filter-section {
  background: var(--gray-100);
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.publications-filter-label {
  color: var(--gray-600);
  font-weight: 600;
  font-size: 0.95rem;
}

.publications-filter-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.publications-filter-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-light);
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.publications-filter-btn.active {
  background: var(--primary-light);
  color: white;
}

.publications-filter-btn:not(.active) {
  background: white;
  color: var(--primary-light);
}

.publications-filter-btn:hover {
  background: var(--primary-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(44, 117, 181, 0.3);
}

.publications-grid-section {
  padding: 3rem 0;
  background: var(--gray-50);
}

.publications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.publication-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.publication-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.publication-card-icon {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3.5rem;
}

.publication-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.publication-card-title {
  color: var(--primary-dark);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.publication-card-year {
  color: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
}

.publication-card-description {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.publication-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-top: 1px solid #e5e7eb;
  margin-top: auto;
}

.publication-tag {
  display: inline-block;
  background: var(--primary-light);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.publication-download-btn {
  width: 36px;
  height: 36px;
  background: var(--primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.publication-download-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.publications-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.publications-page-btn {
  padding: 0.7rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  min-width: 44px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.publications-page-btn.active {
  background: var(--primary-light);
  color: white;
  border-color: var(--primary-light);
}

.publications-page-btn:not(.active) {
  background: white;
  color: var(--primary-light);
}

.publications-page-btn:not(.active):hover {
  background: #f3f4f6;
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.publications-empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 5rem 2rem;
}

.publications-empty-icon {
  font-size: 5rem;
  color: #d1d5db;
  margin-bottom: 1.5rem;
  display: block;
}

.publications-empty-text {
  color: var(--gray-600);
  font-size: 1.05rem;
  font-weight: 500;
  max-width: 400px;
  margin: 0 auto;
}

/* Responsive Publications */
@media (max-width: 1024px) {
  .publications-hero h1 {
    font-size: 2rem;
  }

  .publications-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .publications-filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .publications-hero {
    padding: 2rem 0 1.5rem;
  }

  .publications-hero h1 {
    font-size: 1.75rem;
  }

  .publications-hero p {
    font-size: 1rem;
  }

  .publications-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }

  .publication-card-icon {
    height: 140px;
    font-size: 2.5rem;
  }

  .publication-card-content {
    padding: 1rem;
  }

  .publication-card-title {
    font-size: 0.95rem;
  }

  .publication-card-description {
    font-size: 0.8rem;
  }

  .publications-filter-buttons {
    gap: 0.5rem;
  }

  .publications-filter-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }

  .publications-grid-section {
    padding: 2rem 0;
  }

  .publications-pagination {
    gap: 0.5rem;
  }

  .publications-page-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    min-width: 40px;
  }

  .publications-empty-state {
    padding: 3rem 1rem;
  }

  .publications-empty-icon {
    font-size: 3.5rem;
  }
}

/* ===== FIND TALENT PAGE - PROFESSIONAL REDESIGN ===== */

/* Hero Section */
.hero-find-talent {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.hero-find-talent::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(100px, -100px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-section {
  position: relative;
  padding: 6rem 0;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 500px;
  margin: 0 auto;
}

.section-header-light h2 {
  color: var(--white);
}

.section-header-light p {
  color: rgba(255, 255, 255, 0.85);
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.category-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.category-card:hover {
  box-shadow: var(--shadow-md);
  border-left-color: var(--primary);
}

.category-icon {
  font-size: 2.5rem;
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.category-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.category-list {
  list-style: none;
}

.category-list li {
  padding: 0.5rem 0;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.category-list i {
  color: var(--success);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Timeline Process */
.process-timeline {
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-light), var(--primary-light), transparent);
  top: 0;
}

.timeline-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-step:nth-child(even) {
  grid-template-columns: 1fr 60px;
  text-align: right;
}

.timeline-step:nth-child(even) .timeline-body {
  text-align: right;
}

.timeline-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.timeline-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(44, 117, 181, 0.3);
}

.timeline-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.timeline-body p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Form Container */
.employer-request-form .container-fluid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}

.form-container {
  background: var(--white);
  border-radius: 12px;
  padding: 3rem;
  max-width: 800px;
  margin: 0;
}

.employer-request-form .hero-right-subcategory {
  position: sticky;
  top: 2rem;
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 300px;
}

.professional-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Form Intro Box */
.form-intro-box {
  background: linear-gradient(135deg, rgba(44, 117, 181, 0.1), rgba(8, 44, 79, 0.1));
  padding: 1.5rem;
  border-left: 4px solid var(--primary-light);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.form-intro-box p {
  color: var(--gray-800);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.form-intro-box p strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.form-intro-box p:last-child {
  margin-bottom: 0;
}

.form-required-note {
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-top: 0.75rem;
}

.form-required-note strong {
  color: var(--danger);
  font-weight: 700;
}

/* Form Sections */
.form-section {
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-200);
}

.form-section:last-of-type {
  border-bottom: none;
}

.form-section legend {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

/* Form Grid */
.form-grid {
  display: grid;
  gap: 1.5rem;
}

.form-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Form Groups */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  color: var(--gray-800);
  font-size: 0.95rem;
}

.required {
  color: var(--danger);
  font-weight: 700;
}

.form-input,
.form-textarea {
  padding: 0.875rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--gray-800);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(44, 117, 181, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-400);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Checkbox Group */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 500;
  color: var(--gray-800);
  transition: color 0.2s ease;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary-light);
}

.checkbox-label:hover {
  color: var(--primary-light);
}

/* Form Hints */
.form-hint {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 0.5rem;
}

/* Form Actions */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
  align-items: center;
}

.btn-block {
  width: auto;
  min-width: 300px;
  max-width: 400px;
}

.form-actions .btn-primary {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 6px;
}

.form-footer-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-600);
  margin: 0;
}

.form-footer-note i {
  margin-right: 0.5rem;
}

/* CTA Section */
.bg-gradient {
  background: linear-gradient(135deg, #082c4f, #2C75B5);
  color: var(--white);
}

.bg-dark-accent {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

/* Section Padding */
.section-padding {
  padding: 4rem 0;
}

.talent-categories-section {
  padding-top: 1rem !important;
}

.bg-light {
  background-color: var(--gray-50);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .form-container {
    padding: 1.5rem;
  }

  .process-timeline::before {
    left: 20px;
  }

  .timeline-step {
    grid-template-columns: 60px 1fr !important;
    text-align: left;
  }

  .timeline-step:nth-child(even) .timeline-body {
    text-align: left;
  }

  .cta-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

/* ===== ENHANCED PROCESS SECTION ===== */

/* Process Card Grid */
.process-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
}

.process-card-wrapper {
  position: relative;
}

.process-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  text-align: center;
  border-top: 4px solid var(--primary-light);
  position: relative;
  height: 100%;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--primary);
}

.process-card-icon {
  font-size: 3rem;
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.process-card-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.25rem;
}

.process-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}

.process-card p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.process-card-meta {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.meta-badge {
  display: inline-block;
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.meta-badge i {
  margin-right: 0.3rem;
}

.process-connector {
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 2.5rem;
  background: linear-gradient(180deg, var(--primary-light), transparent);
}

.process-card-wrapper:last-child .process-connector {
  display: none;
}

/* Process Details Section */
.process-details-section {
  margin-bottom: 3rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(44, 117, 181, 0.05), rgba(8, 44, 79, 0.05));
  border-radius: 12px;
  border-left: 4px solid var(--primary-light);
}

.process-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.process-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.detail-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.5rem;
}

.detail-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.detail-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.detail-item ul {
  list-style: none;
}

.detail-item li {
  padding: 0.4rem 0;
  color: var(--gray-600);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-item li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--primary-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Process Features Section */
.process-features-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--gray-200);
}

.feature-highlight {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary-light);
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 117, 181, 0.1);
  border-radius: 8px;
}

.feature-highlight h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
}

.feature-highlight p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Responsive Process Design */
@media (max-width: 1024px) {
  .process-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }

  .process-card {
    padding: 2rem 1.5rem;
  }

    .process-card .right-card {
    padding: 1.5rem !important;
  }

  .process-connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-card-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    padding: 2rem;
  }

  .process-card-icon {
    font-size: 2.5rem;
  }

  .process-card h3 {
    font-size: 1.1rem;
  }

  .process-details-grid {
    grid-template-columns: 1fr;
  }

  .process-features-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .detail-item {
    gap: 1rem;
  }

  .process-details-section {
    padding: 2rem 1.5rem;
  }
}

/* ===== SUBMIT CV PAGE STYLES ===== */

.hero-submit-cv {
  background: #ffffff;
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 0;
}

.hero-submit-cv .hero-overlay {
  display: none;
}

.hero-submit-cv .hero-content {
  text-align: left;
  margin: 0;
  max-width: none;
}

.hero-submit-cv .hero-badge {
  color: var(--primary);
  background: transparent;
  border: none;
  display: inline-block;
  margin-bottom: 1rem;
}

.hero-submit-cv .hero-title {
  color: var(--primary-dark);
  font-size: 2.5rem;
  font-family: 'Bohemio', serif;
  margin-bottom: 0;
}

.hero-submit-cv .hero-subtitle {
  color: var(--gray-700);
}

/* Two Column Hero Layout */
.hero-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  justify-content: flex-start;
  text-align: left;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 1rem;
  text-align: left;
  padding: 0 2rem;
  margin: 0;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

@media (max-width: 768px) {
  .hero-two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-right {
    justify-content: flex-start;
  }
}

/* File Upload Area */
.file-upload-area {
  border: 2px dashed var(--primary-light);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(44, 117, 181, 0.05), rgba(8, 44, 79, 0.05));
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.file-upload-area:hover {
  background: linear-gradient(135deg, rgba(44, 117, 181, 0.1), rgba(8, 44, 79, 0.1));
  border-color: var(--primary);
}

.file-upload-input {
  display: none;
}

.file-upload-content {
  pointer-events: none;
}

.file-upload-content i {
  font-size: 3rem;
  color: var(--primary-light);
  margin-bottom: 1rem;
  display: block;
}

.file-upload-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.file-upload-content p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.file-upload-success {
  padding: 1rem;
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid var(--success);
  border-radius: 6px;
  color: var(--success);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.file-upload-success i {
  font-size: 1.25rem;
}

/* Success Banner */
.bg-success-light {
  background: rgba(16, 185, 129, 0.05);
}

.success-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--success);
  box-shadow: var(--shadow-md);
}

.success-icon {
  font-size: 3rem;
  color: var(--success);
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-banner h2 {
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.success-banner p {
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.success-banner p:last-child {
  margin-bottom: 0;
}

.success-note {
  background: rgba(244, 63, 94, 0.1) !important;
  color: #f43f5e !important;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
}

.success-note i {
  margin-right: 0.5rem;
}

/* Agreement Section */
.form-section-agreement {
  border-bottom: none;
}

.agreement-checkbox {
  padding: 1.5rem;
  background: rgba(44, 117, 181, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--primary-light);
}

.checkbox-label.large {
  font-size: 1rem;
  color: var(--gray-800);
  gap: 1rem;
}

.checkbox-label.large span {
  line-height: 1.6;
}

.checkbox-label.large a {
  color: var(--primary-light);
  font-weight: 600;
  text-decoration: none;
}

.checkbox-label.large a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .success-banner {
    grid-template-columns: 1fr;
  }

  .success-icon {
    width: 60px;
    font-size: 2.5rem;
  }

  .success-banner h2 {
    font-size: 1.25rem;
  }

  .file-upload-area {
    padding: 2rem 1.5rem;
  }

  .file-upload-content i {
    font-size: 2.5rem;
  }

  .agreement-checkbox {
    padding: 1rem;
  }
}

/* ===== TALENT FORM PAGE STYLES ===== */

.talent-form-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 4rem var(--spacing-md);
  color: white;
}

.talent-form-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.talent-form-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.9);
}

.talent-form-section {
  background: #f9fafb;
  padding: 3rem var(--spacing-md);
  min-height: 60vh;
}

.talent-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.talent-form-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.talent-form-success-alert {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  color: #155724;
}

.talent-form-success-alert i {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.talent-form-success-alert p {
  margin: 0;
  font-weight: 500;
}

/* Radio Group Styling */
.radio-group {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--gray-700);
  font-size: 0.95rem;
  user-select: none;
}

.radio-label input[type="radio"] {
  cursor: pointer;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.radio-label:hover {
  color: var(--primary-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
  .talent-form-hero h1 {
    font-size: 1.8rem;
  }

  .talent-form-hero p {
    font-size: 1rem;
  }

  .talent-form-card {
    padding: 1.5rem;
  }

  .talent-form-section {
    padding: 2rem var(--spacing-md);
  }

  .radio-group {
    gap: 1.5rem;
  }
}

/* ===========================
   FAQ / Common Questions Section
   =========================== */

/* FAQ Section Header - Left Aligned */
.faq-section-header {
  text-align: left;
  margin-bottom: 1rem;
}

.faq-section-header h2 {
  font-style: italic;
  font-family: 'Bohemio', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.faq-section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: none;
  margin: 0;
}

.faq-grid-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-300);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-dark);
  transition: none;
}

.faq-question i {
  font-size: 1rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  order: -1;
}

.faq-item.active .faq-question i::before {
  content: "\f068";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0 0 2.5rem;
  background: transparent;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 0 1rem 2.5rem;
}

.faq-answer p {
  color: var(--gray-700);
  line-height: 1.7;
  margin: 0;
}

.faq-cta {
  position: sticky;
  top: 2rem;
  background: linear-gradient(135deg, rgba(44, 117, 181, 0.05), rgba(8, 44, 79, 0.05));
  border-radius: 8px;
  padding: 2rem;
  min-width: 320px;
  max-width: 380px;
}

.faq-cta-content {
  margin-bottom: 1.5rem;
}

.faq-cta p {
  font-size: 1.1rem;
  color: var(--gray-800);
  margin-bottom: 0;
}

.faq-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-cta-buttons .btn {
  width: 100%;
  justify-content: center;
}

/* Responsive FAQ */
@media (max-width: 992px) {
  .faq-grid-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-cta {
    position: relative;
    top: 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .faq-question {
    padding: 0.875rem 0;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 0 0 2rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 0 0.875rem 2rem;
  }

  .faq-cta {
    padding: 1.5rem;
    min-width: auto;
  }

  .faq-cta-content {
    text-align: center;
  }
}

/* Specific styles for find-talent-hero */
#find-talent-hero {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    align-items: center !important;
    height: auto !important;
    min-height: auto !important;
}

#find-talent-hero .hero-content-subcategory {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

#find-talent-hero .hero-container-subcategory {
    align-items: center !important;
    padding: 1rem 3rem !important;
}

#find-talent-hero .hero-left-subcategory {
    justify-content: center !important;
    align-items: flex-start !important;
    padding-bottom: 0 !important;
}

#find-talent-hero .hero-left-subcategory h1 {
    padding: 0 !important;
    margin: 0 !important;
}

#find-talent-hero .hero-left-subcategory h2 {
    padding: 0 !important;
    margin: 1rem 0 1.5rem 0 !important;
}

#find-talent-hero .hero-left-subcategory hr {
    margin: 0.5rem 0 !important;
}

/* ===== BLOG SECTION ===== */
.blog-section {
    background: #f9fafb;
    padding: 80px 0;
}

.blog-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: start;
}

.blog-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-section-title {
    font-family: 'Bodoni Moda', serif;
    font-size: 2.75rem;
    font-weight: 700;
    font-style: italic;
    color: var(--primary);
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.blog-card-small {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.blog-card-small:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-small-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 4px;
}

.blog-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-small-content {
    flex: 1;
}

.blog-small-content h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.25rem 0;
    line-height: 1.4;
}

.blog-date {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-style: italic;
    margin: 0.25rem 0 0.5rem 0;
    display: block;
}

.blog-read-more {
    color: var(--primary-light);
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: var(--primary);
}

.blog-featured {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.blog-featured-image {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: white;
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-featured-content {
    padding: 2.5rem;
}

.blog-featured-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.blog-featured-content > p {
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    font-size: 0.95rem;
}

.blog-featured-content .blog-read-more {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: block;
}

.blog-featured-content .blog-date {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--gray-500);
}

@media (max-width: 968px) {
    .blog-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .blog-left {
        order: 2;
    }

    .blog-featured {
        order: 1;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }

    .blog-section-title {
        font-size: 2rem;
    }

    .blog-featured-image {
        height: 280px;
    }

    .blog-featured-content {
        padding: 1.5rem;
    }

    .blog-featured-content h3 {
        font-size: 1.35rem;
    }

    .blog-card-small {
        gap: 0.75rem;
    }

    .blog-small-image {
        width: 70px;
        height: 70px;
    }
}

        height: 100px;
    }
}
