/* ==========================================
   TECH TALENT GLOBAL - Main Stylesheet
   Font: Montserrat
   Colors: Charcoal (#2B2B2B, #4A4A4A, #6B6B6B)
   CTA: Deep Blue (#0066CC)
   Background: White
   ========================================== */

/* ==========================================
   RESET & BASE
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --charcoal-dark: #2B2B2B;
    --charcoal-mid: #4A4A4A;
    --charcoal-light: #6B6B6B;
    --cta-blue: #0066CC;
    --cta-blue-hover: #0052A3;
    --white: #FFFFFF;
    --light-grey: #F5F5F5;
    --border-grey: #E0E0E0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--charcoal-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    color: var(--charcoal-dark);
}

h2 {
    font-size: 2.5rem;
    color: var(--charcoal-dark);
}

h3 {
    font-size: 2rem;
    color: var(--charcoal-dark);
}

h4 {
    font-size: 1.5rem;
    color: var(--charcoal-mid);
}

p {
    margin-bottom: 1rem;
    color: var(--charcoal-mid);
    font-size: 1.125rem;
}

a {
    color: var(--cta-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--cta-blue-hover);
}

/* Ensure buttons maintain their colors */
a.btn,
button.btn {
    transition: all 0.3s ease;
}

a.btn:hover,
button.btn:hover {
    text-decoration: none;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    background-color: var(--charcoal-dark);
    padding: 0;
    position: sticky;
    top: 1rem;
    margin: 1rem 2rem 0 2rem;
    border-radius: 12px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    line-height: 1;
}

.logo img {
    display: block;
}

.logo:hover {
    color: var(--white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li a {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--cta-blue);
}

.nav-menu li a.active {
    color: var(--cta-blue);
}

.nav-cta {
    background-color: var(--cta-blue);
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-cta:hover {
    background-color: var(--cta-blue-hover);
    color: var(--white) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: 0.3s;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--cta-blue);
    color: var(--white) !important;
}

.btn-primary:hover {
    background-color: var(--cta-blue-hover);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--charcoal-dark) !important;
    border: 2px solid var(--charcoal-dark);
}

.btn-secondary:hover {
    background-color: var(--charcoal-dark);
    color: var(--white) !important;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

/* ==========================================
   LAYOUT CONTAINERS
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.section-grey {
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
}

.section-white {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    padding: 3rem 0 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero .subheadline {
    font-size: 1.5rem;
    color: var(--charcoal-mid);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   GRID LAYOUTS
   ========================================== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: start;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Pricing specific grid styling */
.pricing-grid {
    gap: 1.75rem;
}

@media (max-width: 1200px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .pricing-grid {
        gap: 2rem;
    }
}

/* ==========================================
   CARDS
   ========================================== */
.card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card h3 {
    margin-bottom: 1rem;
}

.card h4 {
    margin-bottom: 0.75rem;
}

.card p {
    color: var(--charcoal-mid);
}

/* Glass Card Variant */
.card-glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    padding: 2.5rem;
    border-radius: 12px;
}

.card-glass:hover {
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.2);
}

/* ==========================================
   PRICING SPECIFIC STYLES
   ========================================== */

/* Pricing Cards */
.pricing-card {
    padding: 2rem 1.5rem;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-card h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.pricing-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    margin-top: 1rem;
}

.pricing-card .checkmark-list li {
    font-size: 0.9rem;
    margin-bottom: 0.65rem;
    line-height: 1.4;
}

.pricing-card .glass-container {
    padding: 1rem;
    margin-top: 1rem;
}

.pricing-card .glass-container p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Pricing Card Badges */
.pricing-badge {
    color: white;
    padding: 0.5rem 1rem;
    margin: -2rem -1.5rem 1.5rem -1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 10px 10px 0 0;
}

.pricing-badge-blue {
    background-color: var(--cta-blue);
}

.pricing-badge-dark {
    background-color: var(--charcoal-dark);
    font-size: 0.8rem;
}

.pricing-badge-gradient {
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-mid) 100%);
}

/* Pricing Amount */
.pricing-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--charcoal-dark);
    margin-bottom: 1rem;
}

.pricing-amount-large {
    font-size: 1.75rem;
}

.pricing-amount-medium {
    font-size: 1.5rem;
}

.pricing-amount .pricing-unit {
    font-size: 0.95rem;
    font-weight: 400;
}

.pricing-subtext {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.pricing-commission {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--cta-blue);
    font-size: 0.85rem;
}

.hidden {
    display: none;
}

/* Pricing Card Variants */
.pricing-card-popular {
    border: 3px solid var(--cta-blue);
}

.pricing-card-enterprise {
    border: 2px solid var(--charcoal-mid);
}

.pricing-title-blue {
    color: var(--cta-blue);
    margin-bottom: 0.5rem;
}

/* Info sections inside pricing cards */
.pricing-info-box {
    margin-top: 1rem;
}

.pricing-info-box-sm {
    margin-top: 0.75rem;
}

.pricing-info-title {
    font-weight: 600;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
}

.pricing-info-text {
    font-size: 0.85rem;
    margin: 0;
}

.pricing-info-title-muted {
    font-weight: 600;
    color: var(--charcoal-mid);
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
}

/* Structure list for equity tier */
.pricing-structure-list {
    list-style: none;
    padding: 0;
    font-size: 0.85rem;
    line-height: 1.6;
}

.pricing-structure-list li {
    padding-left: 0;
}

.pricing-structure-list li:before {
    content: none;
}

/* CTA Button sizing for pricing cards */
.pricing-cta {
    width: 100%;
    margin-top: 1.25rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Pricing card hover states */
.pricing-grid .pricing-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 1200px) {
    .pricing-grid .pricing-card:hover {
        transform: translateY(-5px);
    }
}

/* Billing Toggle */
.billing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.billing-toggle-compact {
    margin-bottom: 1rem;
}

.billing-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal-mid);
}

.billing-label-sm {
    font-size: 0.85rem;
}

.save-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.25rem;
}

.billing-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.billing-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--charcoal-light);
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.billing-toggle input:checked + .toggle-slider {
    background-color: var(--cta-blue);
}

.billing-toggle input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

/* Feature Toggle Button */
.feature-toggle {
    background: none;
    border: none;
    color: var(--cta-blue);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.feature-toggle:hover {
    color: var(--cta-blue-hover);
}

.feature-list-extended {
    list-style: none;
    padding: 0;
}

.feature-list-extended li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    color: var(--charcoal-mid);
}

.feature-list-extended li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--cta-blue);
    font-weight: 700;
    font-size: 1.25rem;
}

/* Glass containers inside extended features */
.feature-list-extended .glass-container {
    padding-left: 0;
    margin-left: 0;
}

.feature-list-extended .glass-container:before {
    content: none;
}

/* ==========================================
   IMAGES & MEDIA
   ========================================== */
.image-container {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--light-grey) 0%, var(--border-grey) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--charcoal-light);
    font-size: 1rem;
    font-weight: 500;
}

.image-placeholder-small {
    height: 250px;
}

.image-placeholder-large {
    height: 500px;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

/* Hero Image */
.hero-image {
    margin-top: 3rem;
}

/* Split Layout with Image */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ==========================================
   GLASS EFFECTS
   ========================================== */
.glass-section {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

.glass-container {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(31, 38, 135, 0.08);
}

/* ==========================================
   FEATURE BOXES
   ========================================== */
.feature-box {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--cta-blue);
}

/* ==========================================
   STATS & METRICS
   ========================================== */
.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--cta-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--charcoal-mid);
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--charcoal-dark);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: var(--charcoal-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--charcoal-light);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--cta-blue);
}

.footer-bottom {
    border-top: 1px solid var(--charcoal-mid);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--charcoal-light);
    font-size: 0.95rem;
}

/* Footer Active Link Styling */
.footer-section ul li a.active {
    color: var(--cta-blue);
    font-weight: 600;
}

/* ==========================================
   RESPONSIVE - TABLET
   ========================================== */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subheadline {
        font-size: 1.25rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .pricing-grid {
        gap: 2.5rem;
    }

    .split-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .navbar {
        margin: 0.75rem 1.5rem 0 1.5rem;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: var(--charcoal-dark);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: -4px 0 20px rgba(0,0,0,0.3);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
        right: 0;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    /* Mobile menu overlay */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    .menu-overlay.active {
        display: block;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .image-placeholder {
        height: 250px;
    }

    .image-placeholder-large {
        height: 220px;
    }

    .glass-section,
    .glass-container {
        padding: 2rem;
    }

    .card,
    .card-glass,
    .feature-box {
        padding: 2rem;
    }
    
    /* Adjust pricing badge for tablet card padding */
    .pricing-card {
        padding: 2rem;
    }
    
    .pricing-badge {
        margin: -2rem -2rem 1.5rem -2rem;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE
   ========================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .navbar {
        margin: 0.5rem 1rem 0 1rem;
        top: 0.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }

    .image-placeholder {
        height: 250px;
    }

    .image-placeholder-small {
        height: 200px;
    }

    .glass-section,
    .glass-container {
        padding: 1.5rem;
    }

    .card,
    .card-glass,
    .feature-box {
        padding: 1.5rem;
    }

    .testimonial {
        padding: 1.5rem 1.75rem;
    }

    /* Pricing cards mobile spacing */
    .pricing-grid {
        gap: 3rem !important;
    }

    .pricing-card {
        margin-bottom: 0;
        padding: 1.75rem 1.25rem;
    }
    
    .pricing-card h2 {
        font-size: 1.5rem;
    }
    
    /* Adjust badge margins for mobile card padding */
    .pricing-badge {
        margin: -1.75rem -1.25rem 1.5rem -1.25rem;
    }

    /* Make billing toggle more compact on mobile */
    .billing-toggle-container {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 0.75rem !important;
    }

    .billing-label {
        font-size: 0.8rem !important;
    }

    .save-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.35rem;
    }
}

/* ==========================================
   VISUAL ACCENTS & DECORATIONS
   ========================================== */
.accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--cta-blue) 0%, var(--cta-blue-hover) 100%);
    margin: 1.5rem auto;
}

.accent-line-left {
    margin: 1.5rem 0;
}

.gradient-text {
    background: linear-gradient(135deg, var(--cta-blue) 0%, var(--charcoal-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Quote/Testimonial Styling */
.testimonial {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 4px solid var(--cta-blue);
    padding: 2rem 2.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 16px rgba(31, 38, 135, 0.1);
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--charcoal-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--charcoal-mid);
    font-size: 1rem;
}

/* Process Flow with Icons */
.process-step {
    text-align: center;
    position: relative;
}

.process-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cta-blue) 0%, var(--cta-blue-hover) 100%);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Checkmark list */
.checkmark-list {
    list-style: none;
    padding: 0;
}

.checkmark-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    color: var(--charcoal-mid);
}

.checkmark-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--cta-blue);
    font-weight: 700;
    font-size: 1.25rem;
}

/* Cross/X mark list for "before" states */
.xmark-list {
    list-style: none;
    padding: 0;
}

.xmark-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    color: var(--charcoal-mid);
}

.xmark-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--charcoal-light);
    font-weight: 700;
    font-size: 1.25rem;
}

/* ==========================================
   UTILITIES
   ========================================== */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.max-width-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.max-width-600 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


.process-step:hover .card-glass {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(31, 38, 135, 0.25);
}

.process-step:hover .process-step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.5);
}
/* ==========================================
   TECH TALENT MATCH SYSTEM - CSS ADDITIONS
   Add these styles to your existing style.css file
   ========================================== */

/* Process Step Cards - 4-column grid layout */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Responsive: 2 columns on tablets */
@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive: 1 column on mobile */
@media (max-width: 576px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
}




/* Icon Container with Glass Effect */
.icon-glass {
    background: rgba(10, 110, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-glass svg {
    stroke: var(--cta-blue);
}

/* Process Step Heading */
.process-step h4 {
    color: var(--cta-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Process Step Description */
.process-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--charcoal-mid);
}

/* Section Title Styling */
.section-title-large {
    color: var(--cta-blue);
    font-size: 1.75rem;
}

/* Result Section Heading */
.result-heading {
    color: var(--charcoal-dark);
    font-size: 1.5rem;
}

/* Two-column checklist container */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .checklist-grid {
        grid-template-columns: 1fr;
    }
}

/* Checklist items */
.checklist-grid .checkmark-list {
    font-size: 1.0625rem;
}

/* Highlight Text */
.highlight-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cta-blue);
}

/* Max-width containers for content sections */
.max-width-900 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.max-width-1200 {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Spacing utilities */
.mb-5 {
    margin-bottom: 3rem;
}

/* If these utilities don't exist in your CSS, add them */
.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

/* Text alignment utilities */
.text-center {
    text-align: center;
}


/* ==========================================
   INDEX PAGE SPECIFIC INLINE STYLE REPLACEMENTS
   (Added to avoid conflicts with existing classes)
   ========================================== */

/* Logo images - specific sizing */
.idx-logo-nav {
    height: 90px;
    width: auto;
    display: block;
}

.idx-logo-footer {
    height: 70px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
    margin-top: 0;
}

/* Featured heading - Tech Talent Match System box */
.idx-featured-box {
    font-size: 2.5rem;
    color: var(--cta-blue);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.05) 100%);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 2px solid var(--cta-blue);
    display: inline-block;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.15);
    margin: 1rem 0;
}

/* Footer social media links */
.idx-social-wrap {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.idx-social-link {
    transition: transform 0.3s ease;
}

.idx-social-link:hover {
    transform: translateY(-3px);
}

.idx-social-link svg {
    transition: stroke 0.3s ease;
    stroke: var(--charcoal-light);
}

.idx-social-link:hover svg {
    stroke: var(--cta-blue);
}

/* Footer bottom layout */
.idx-footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.idx-footer-links {
    display: flex;
    gap: 2rem;
}

/* Text color utilities for index page */
.idx-text-charcoal-light {
    color: var(--charcoal-light);
    margin-bottom: 1.5rem;
}

/* ==========================================
   COOKIE CONSENT BANNER & MODAL
   Add this to your css/style.css file
   ========================================== */

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid var(--cta-blue);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(10, 110, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-icon svg {
    stroke: var(--cta-blue);
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    color: var(--charcoal-dark);
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--charcoal-mid);
    line-height: 1.5;
}

.cookie-link {
    color: var(--cta-blue);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-link:hover {
    color: var(--charcoal-dark);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    white-space: nowrap;
}

.cookie-btn-text {
    background: transparent;
    color: var(--charcoal-mid);
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 0.95rem;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-btn-text:hover {
    color: var(--cta-blue);
}

/* Hidden state */
.cookie-consent.hidden {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .cookie-consent {
        padding: 1rem 0;
    }
    
    .cookie-consent-content {
        padding: 0 1rem;
    }
    
    .cookie-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
}

/* ==========================================
   COOKIE PREFERENCES MODAL
   ========================================== */

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    backdrop-filter: blur(4px);
    overflow-y: auto;
    padding: 2rem 1rem;
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-modal-header {
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h2 {
    margin: 0;
    font-size: 1.75rem;
    color: var(--charcoal-dark);
}

.cookie-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--charcoal-mid);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cookie-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--charcoal-dark);
}

.cookie-modal-body {
    padding: 2rem;
    max-height: 500px;
    overflow-y: auto;
}

.cookie-modal-intro {
    margin-bottom: 2rem;
    color: var(--charcoal-mid);
    line-height: 1.6;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(10, 110, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(10, 110, 255, 0.1);
}

.cookie-category-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.cookie-toggle-wrapper {
    flex-shrink: 0;
}

.cookie-category h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: var(--charcoal-dark);
}

.cookie-category p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--charcoal-mid);
    line-height: 1.5;
}

.cookie-required {
    font-size: 0.8rem;
    color: var(--cta-blue);
    font-weight: 600;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    cursor: pointer;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 26px;
    transition: 0.3s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

input:checked + .cookie-toggle .toggle-slider {
    background-color: var(--cta-blue);
}

input:checked + .cookie-toggle .toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle.disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-modal-footer {
    padding: 1.5rem 2rem 2rem 2rem;
    border-top: 1px solid #e5e5e5;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-modal-footer .btn {
    padding: 0.75rem 2rem;
}

/* Mobile Modal */
@media (max-width: 576px) {
    .cookie-modal {
        padding: 1rem;
    }
    
    .cookie-modal-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .cookie-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .cookie-modal-body {
        padding: 1.5rem;
    }
    
    .cookie-category {
        padding: 1rem;
    }
    
    .cookie-modal-footer {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
        flex-direction: column-reverse;
    }
    
    .cookie-modal-footer .btn {
        width: 100%;
    }
}

/* ==========================================
   FAQ ACCORDION STYLES
   Add this to your main style.css file
   ========================================== */

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 102, 204, 0.03);
}

.faq-question h4 {
    margin: 0;
    color: var(--charcoal-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-icon {
    flex-shrink: 0;
    stroke: var(--cta-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
    color: var(--charcoal-mid);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Fallback for very long answers */
}