/* ===================================
   Re:Con Finance - Modern Website
   CSS with Brand Colors
   =================================== */

/* === CSS Variables === */
:root {
    --color-primary: #2F4550;
    --color-gold: #C28025;
    --color-gold-light: #F9B233;
    --color-blue-gray: #B3C7CB;
    --color-light: #F1F1F1;
    --color-white: #FFFFFF;
    --color-dark: #1a1a1a;
    --color-gray: #666666;
    --color-gray-light: #e8e8e8;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(47, 69, 80, 0.08);
    --shadow-md: 0 4px 16px rgba(47, 69, 80, 0.12);
    --shadow-lg: 0 8px 32px rgba(47, 69, 80, 0.16);
}

/* === Reset & Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* === Container === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === Section Styles === */
section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray);
    line-height: 1.8;
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #2F4550 0%, #264550 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    border-bottom: 2px solid rgba(249, 178, 51, 0.2);
}

.navbar.scrolled {
    background: linear-gradient(135deg, #2F4550 0%, #1a3540 100%);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    border-bottom-color: rgba(249, 178, 51, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo:hover {
    opacity: 0.85;
}

.logo img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo img {
    height: 58px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold-light);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold-light);
}

/* Portal link in navbar */
.nav-portal-link {
    padding: 0.4rem 0.9rem !important;
    background: rgba(249, 178, 51, 0.12) !important;
    border: 1px solid rgba(249, 178, 51, 0.35) !important;
    border-radius: 20px !important;
    color: #F9B233 !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
}
.nav-portal-link:hover {
    background: rgba(249, 178, 51, 0.22) !important;
    border-color: rgba(249, 178, 51, 0.6) !important;
    transform: translateY(-1px) !important;
    color: #F9B233 !important;
}
.nav-portal-link::after { display: none !important; }

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #F9B233 0%, #C28025 100%);
    color: var(--color-white) !important;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(249, 178, 51, 0.4);
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 178, 51, 0.6);
    background: linear-gradient(135deg, #FFD700 0%, #F9B233 100%);
}
    gap: 0.5rem;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Contact Dropdown */
.nav-contact-dropdown {
    position: relative;
}

.contact-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #2F4550 0%, #264550 100%);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(249, 178, 51, 0.2);
}

.nav-contact-dropdown:hover .contact-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover:not(.disabled) {
    background: rgba(249, 178, 51, 0.15);
    color: var(--color-gold-light);
}

.dropdown-item i {
    font-size: 1.125rem;
    color: var(--color-gold);
}

.dropdown-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.dropdown-item.disabled:hover {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
}


.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* === Hero Section === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e2f38 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(249, 178, 51, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(194, 128, 37, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(179, 199, 203, 0.06) 0%, transparent 50%);
    animation: float 25s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(249, 178, 51, 0.04) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(194, 128, 37, 0.03) 50%, transparent 60%);
    background-size: 300% 300%;
    animation: shimmer 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(40px, -40px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Animated particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(249, 178, 51, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(249, 178, 51, 0.3);
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation: particle-float-1 20s infinite ease-in-out;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation: particle-float-2 25s infinite ease-in-out;
    animation-delay: 3s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation: particle-float-3 22s infinite ease-in-out;
    animation-delay: 6s;
}

.particle:nth-child(4) {
    top: 40%;
    left: 70%;
    animation: particle-float-4 28s infinite ease-in-out;
    animation-delay: 9s;
}

.particle:nth-child(5) {
    top: 30%;
    left: 50%;
    animation: particle-float-5 24s infinite ease-in-out;
    animation-delay: 12s;
}

@keyframes particle-float-1 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.4;
    }
    50% {
        transform: translate(100px, -100px);
        opacity: 0.8;
    }
}

@keyframes particle-float-2 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }
    50% {
        transform: translate(-80px, 80px);
        opacity: 0.7;
    }
}

@keyframes particle-float-3 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.5;
    }
    50% {
        transform: translate(120px, 60px);
        opacity: 0.9;
    }
}

@keyframes particle-float-4 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.4;
    }
    50% {
        transform: translate(-100px, -80px);
        opacity: 0.6;
    }
}

@keyframes particle-float-5 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.6;
    }
    50% {
        transform: translate(60px, -120px);
        opacity: 0.8;
    }
}

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

.hero-content {
    max-width: 900px;
    text-align: center;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
}

.hero-title .highlight {
    color: var(--color-gold-light);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    color: var(--color-blue-gray);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* ===================================
   ANIMATED CTA BUTTONS
   =================================== */

.btn-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-cta i {
    font-size: 1.75rem;
    transition: transform 0.4s ease;
}

.btn-cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.125rem;
}

.btn-cta-text strong {
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
}

.btn-cta-text small {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Primary CTA - Rekrytering (Gold gradient) */
.btn-cta-primary {
    background: linear-gradient(135deg, #F9B233 0%, #C28025 100%);
    color: white;
    animation: cta-pulse-primary 3s ease-in-out infinite;
}

.btn-cta-primary:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(249,178,51,0.5);
    animation: none;
}

.btn-cta-primary:hover i {
    transform: rotate(15deg) scale(1.2);
}

/* Secondary CTA - Anlita Konsult (Light blue-gray gradient) */
.btn-cta-secondary {
    background: linear-gradient(135deg, #B3C7CB 0%, #8FADB5 100%);
    color: var(--color-primary);
    animation: cta-pulse-secondary 3s ease-in-out infinite 0.5s;
}

.btn-cta-secondary:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(179,199,203,0.6);
    animation: none;
}

.btn-cta-secondary:hover i {
    transform: rotate(-15deg) scale(1.2);
}

/* Shine effect */
.btn-cta-shine {
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255,255,255,0.3), 
        transparent
    );
    transform: skewX(-25deg);
    transition: left 0.8s ease;
}

.btn-cta:hover .btn-cta-shine {
    left: 200%;
}

/* Pulse animations */
@keyframes cta-pulse-primary {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0,0,0,0.15), 
                    0 0 0 0 rgba(249,178,51,0.7);
    }
    50% {
        box-shadow: 0 10px 30px rgba(0,0,0,0.15), 
                    0 0 0 20px rgba(249,178,51,0);
    }
}

@keyframes cta-pulse-secondary {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0,0,0,0.15), 
                    0 0 0 0 rgba(179,199,203,0.7);
    }
    50% {
        box-shadow: 0 10px 30px rgba(0,0,0,0.15), 
                    0 0 0 20px rgba(179,199,203,0);
    }
}

/* Floating animation */
@keyframes cta-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.btn-cta-primary {
    animation: cta-pulse-primary 3s ease-in-out infinite, 
               cta-float 4s ease-in-out infinite;
}

.btn-cta-secondary {
    animation: cta-pulse-secondary 3s ease-in-out infinite 0.5s, 
               cta-float 4s ease-in-out infinite 0.5s;
}

.btn-cta-primary:hover,
.btn-cta-secondary:hover {
    animation: none;
}

/* ===================================
   OLD BUTTONS (KEEP FOR COMPATIBILITY)
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(249, 178, 51, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(249, 178, 51, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: 2px solid var(--color-white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-gold-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-blue-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* === Services Section === */
.services {
    background: var(--color-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-gray);
}

.service-features i {
    color: var(--color-gold-light);
    font-size: 0.875rem;
}

.service-link {
    color: var(--color-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 1rem;
    color: var(--color-gold-light);
}

/* === About Section === */
.about {
    background: var(--color-white);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 2rem;
    font-weight: 600;
}

.about-text p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.boutique-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e2f38 100%);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    color: var(--color-white);
}

.boutique-box h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-gold-light);
}

.boutique-box p {
    color: var(--color-blue-gray);
    margin-bottom: 1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.feature-item i {
    width: 40px;
    height: 40px;
    background: var(--color-light);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item h5 {
    color: var(--color-primary);
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.feature-item p {
    color: var(--color-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visual-card {
    background: var(--color-light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.visual-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.visual-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.visual-card h4 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.visual-card p {
    color: var(--color-gray);
    margin: 0;
    line-height: 1.6;
}

/* === Job CTA Banner === */
.job-cta-banner {
    background: linear-gradient(135deg, #2F4550 0%, #1a2a33 100%);
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.job-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(249, 178, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(194, 128, 37, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.job-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(249, 178, 51, 0.2);
    border-bottom: 1px solid rgba(249, 178, 51, 0.2);
    position: relative;
}

.job-cta-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F9B233 0%, #C28025 100%);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(249, 178, 51, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(249, 178, 51, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 32px rgba(249, 178, 51, 0.5);
        transform: scale(1.05);
    }
}

.job-cta-icon i {
    font-size: 2rem;
    color: var(--color-white);
}

.job-cta-text {
    flex: 1;
    color: var(--color-white);
}

.job-cta-text h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-white);
    line-height: 1.3;
}

.job-cta-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
}

.job-cta-button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #F9B233 0%, #C28025 100%);
    color: var(--color-white);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(249, 178, 51, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.job-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FFD700 0%, #F9B233 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.job-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(249, 178, 51, 0.5);
}

.job-cta-button:hover::before {
    opacity: 1;
}

.job-cta-button span,
.job-cta-button i {
    position: relative;
    z-index: 1;
}

.job-cta-button i {
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.job-cta-button:hover i {
    transform: translateX(5px);
}

/* === Employee Portal Link === */
.employee-portal-link {
    background: linear-gradient(135deg, #1a3540 0%, #2F4550 100%);
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(179, 199, 203, 0.2);
    border-bottom: 1px solid rgba(179, 199, 203, 0.2);
}

.portal-link-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 3rem;
    background: rgba(179, 199, 203, 0.05);
}

.portal-link-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #B3C7CB 0%, #8fa9b0 100%);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(179, 199, 203, 0.3);
}

.portal-link-icon i {
    font-size: 2rem;
    color: var(--color-white);
}

.portal-link-text {
    flex: 1;
    color: var(--color-white);
}

.portal-link-text h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.portal-link-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.portal-link-button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #B3C7CB 0%, #8fa9b0 100%);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(179, 199, 203, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portal-link-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(179, 199, 203, 0.5);
    background: linear-gradient(135deg, #c5d9de 0%, #B3C7CB 100%);
}

.portal-link-button i {
    transition: transform 0.4s ease;
}

/* ===================================
   PORTAL LOGIN MODAL
   =================================== */

.portal-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.portal-login-modal.active {
    display: flex;
}

.portal-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.portal-modal-content {
    position: relative;
    z-index: 10001;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portal-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10002;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.25rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.portal-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.portal-login-box {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.portal-login-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a3540 100%);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.portal-modal-logo {
    width: 80px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.portal-login-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portal-login-header p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.portal-login-body {
    padding: 2rem;
}

.portal-error-message {
    background: #fee;
    border: 1px solid var(--color-danger);
    color: var(--color-danger);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: shake 0.5s ease;
}

.portal-form-group {
    margin-bottom: 1.5rem;
}

.portal-form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.portal-form-group label i {
    margin-right: 0.5rem;
    color: var(--color-gold);
}

.portal-form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-gray-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.portal-form-group input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.portal-btn-primary {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.portal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249,178,51,0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    75% {
        transform: translateX(10px);
    }
}

.portal-link-button:hover i {
    transform: translateX(5px);
}

/* === Clients Section === */
.clients {
    background: var(--color-primary);
    color: var(--color-white);
}

.clients .section-title {
    color: var(--color-white);
}

.clients .section-subtitle {
    color: var(--color-blue-gray);
}

/* New Clients Showcase with Scrolling Logos */
.clients-showcase {
    background: var(--color-white);
    padding: 5rem 0;
    overflow: hidden;
}

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

.clients-showcase .section-title {
    color: var(--color-primary);
}

.clients-showcase .section-subtitle {
    color: var(--color-gray);
}

.logo-carousel {
    width: 100%;
    overflow: hidden;
    background: var(--color-light);
    padding: 3rem 0;
    margin-bottom: 4rem;
    position: relative;
}

.logo-carousel::before,
.logo-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-light) 0%, rgba(241,241,241,0) 100%);
}

.logo-carousel::after {
    right: 0;
    background: linear-gradient(90deg, rgba(241,241,241,0) 0%, var(--color-light) 100%);
}

.logo-track {
    display: flex;
    gap: 4rem;
    animation: scroll 60s linear infinite;
    width: fit-content;
    will-change: transform;
}

.logo-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-slide {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-slide:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.client-logo-img {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(80%) opacity(0.75) brightness(1.1);
    transition: all 0.4s ease;
}

.logo-slide:hover .client-logo-img {
    filter: grayscale(0%) opacity(1) brightness(1);
    transform: scale(1.08);
}

/* Old clients grid - keep for other pages */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.client-logo {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.client-logo:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.clients-showcase .testimonial {
    background: var(--color-light);
    border: none;
    backdrop-filter: none;
}

.clients-showcase .testimonial-text {
    color: var(--color-dark);
}

.clients-showcase .testimonial-author {
    color: var(--color-gold);
}

.clients-showcase .quote-icon {
    color: var(--color-gold-light);
}

.quote-icon {
    font-size: 3rem;
    color: var(--color-gold-light);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.testimonial-author {
    text-align: right;
    color: var(--color-gold-light);
    font-size: 1.125rem;
}

/* === Process Section === */
.process {
    background: var(--color-light);
}

.process-steps {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    margin-bottom: 2rem;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 40px;
    width: 2px;
    height: 2rem;
    background: linear-gradient(180deg, var(--color-gold-light) 0%, transparent 100%);
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-gold-light);
    font-family: var(--font-display);
}

.step-content h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1.375rem;
}

.step-content p {
    color: var(--color-gray);
    line-height: 1.7;
    margin: 0;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--color-light);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.process-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e2f38 100%);
    border-radius: 16px;
    color: var(--color-white);
}

.process-cta h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-white);
}

/* === Why Us Section === */
.why-us {
    background: var(--color-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
    background: var(--color-light);
    border-radius: 16px;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: var(--color-white);
}

.why-card i {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.why-card h4 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.why-card p {
    color: var(--color-gray);
    line-height: 1.7;
    margin: 0;
}

/* === LinkedIn Section === */
.linkedin-section {
    background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.linkedin-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.linkedin-content {
    position: relative;
    z-index: 1;
}

.linkedin-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.linkedin-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-white);
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.linkedin-header .section-title {
    color: var(--color-white);
    text-align: left;
    margin-bottom: 0.5rem;
}

.linkedin-header .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    margin: 0;
}

.linkedin-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.linkedin-feature {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.linkedin-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.linkedin-feature i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.linkedin-feature h4 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.linkedin-feature p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
}

.linkedin-cta {
    text-align: center;
    margin-bottom: 3rem;
}

.btn-linkedin {
    background: var(--color-white);
    color: #0077B5;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-linkedin:hover {
    background: var(--color-light);
    color: #005885;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.linkedin-followers {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.linkedin-preview {
    max-width: 700px;
    margin: 0 auto;
}

.linkedin-post-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.post-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-gray-light);
}

.post-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.post-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.post-info {
    flex: 1;
}

.post-info h5 {
    color: var(--color-primary);
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.post-info p {
    color: var(--color-gray);
    margin: 0;
    font-size: 0.875rem;
}

.linkedin-badge {
    width: 40px;
    height: 40px;
    background: #0077B5;
    color: var(--color-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.post-content {
    padding: 1.5rem;
}

.post-content p {
    color: var(--color-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.post-content p:last-child {
    margin-bottom: 0;
}

.post-cta {
    padding: 1.5rem;
    background: var(--color-light);
    text-align: center;
}

.post-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0077B5;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.post-cta a:hover {
    gap: 1rem;
    color: #005885;
}

/* === Contact Section === */
.contact {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e2f38 100%);
    color: var(--color-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.contact-lead {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-blue-gray);
}

.contact-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.9375rem;
    color: var(--color-gold-light);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.contact-detail i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--color-white);
}

.contact-detail p {
    margin: 0;
    color: var(--color-blue-gray);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(249, 178, 51, 0.15);
    color: var(--color-gold-light);
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: var(--transition);
}

.map-link:hover {
    background: rgba(249, 178, 51, 0.25);
    transform: translateX(5px);
}

/* Contact Form */
.contact-form {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-gray-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--color-white);
    color: var(--color-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold-light);
    box-shadow: 0 0 0 3px rgba(249, 178, 51, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* === Footer === */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 1rem;
}

.footer-col p {
    color: var(--color-gray-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul li {
    color: var(--color-gray-light);
    transition: var(--transition);
}

.footer-col ul li:hover {
    color: var(--color-gold-light);
    transform: translateX(5px);
}

.footer-col ul li i {
    width: 20px;
    color: var(--color-gold-light);
}

.footer-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold-light);
    font-weight: 600;
    transition: var(--transition);
}

.footer-map-link:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-gold-light);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--color-gray-light);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--color-gray-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-gold-light);
}

/* === Scroll to Top Button === */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(249, 178, 51, 0.4);
}

/* === Animations === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* === Subpage Styles === */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 3rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e2f38 100%);
    overflow: hidden;
}

.page-hero-content {
    text-align: center;
    max-width: 800px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    color: var(--color-blue-gray);
}

.breadcrumb a {
    color: var(--color-blue-gray);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--color-gold-light);
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--color-white);
    margin-bottom: 1rem;
}

.page-hero .lead {
    font-size: 1.25rem;
    color: var(--color-blue-gray);
    line-height: 1.7;
}

.content-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
}

.main-content {
    max-width: 100%;
}

.content-block {
    margin-bottom: 3rem;
}

.intro-text {
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-block h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.content-block h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.content-block p {
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.highlight-box {
    background: var(--color-light);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--color-gold-light);
}

.role-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.role-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.role-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.role-card p {
    color: var(--color-gray);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.role-card ul {
    list-style: none;
    padding: 0;
}

.role-card ul li {
    padding: 0.5rem 0;
    color: var(--color-gray);
    border-bottom: 1px solid var(--color-gray-light);
    font-size: 0.9375rem;
}

.role-card ul li:last-child {
    border-bottom: none;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.benefit-item p {
    margin: 0;
}

.process-timeline {
    margin-top: 2rem;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% + 2rem);
    background: linear-gradient(180deg, var(--color-gold-light) 0%, var(--color-blue-gray) 100%);
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-content h4 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.timeline-content p {
    margin: 0;
}

.competence-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.competence-tag {
    background: var(--color-light);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    color: var(--color-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.competence-tag:hover {
    background: var(--color-gold-light);
    color: var(--color-white);
    transform: translateY(-2px);
}

.competence-tag i {
    font-size: 0.875rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e2f38 100%);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    color: var(--color-white);
    margin-top: 3rem;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.cta-box p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--color-blue-gray);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.sidebar-widget.highlight {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-white);
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-widget.highlight h3 {
    color: var(--color-white);
}

.sidebar-widget.highlight p {
    color: var(--color-white);
}

.contact-widget {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--color-light);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 0.875rem;
    color: var(--color-gray);
    margin: 0 0 0.25rem 0;
}

.contact-item a {
    color: var(--color-gold);
    font-weight: 600;
}

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

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

.related-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gray);
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 6px;
}

.related-links a:hover {
    background: var(--color-light);
    color: var(--color-gold);
    transform: translateX(5px);
}

.related-links i {
    color: var(--color-gold-light);
    font-size: 0.875rem;
}

/* Additional Consultant Page Styles */
.role-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.role-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-badge {
    background: var(--color-light);
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    color: var(--color-primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.feature-badge i {
    font-size: 0.75rem;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.use-case {
    text-align: center;
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: 12px;
    transition: var(--transition);
}

.use-case:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.use-case i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.use-case h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.use-case p {
    margin: 0;
    font-size: 0.9375rem;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--color-gray);
    border-bottom: 1px solid var(--color-gray-light);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list i {
    color: var(--color-gold-light);
    font-size: 0.875rem;
}

.case-study {
    margin-top: 1rem;
}

.case-study p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.case-study strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* === Responsive Design === */

/* Tablet & Desktop optimizations */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-grid {
        grid-template-columns: 1fr 300px;
        gap: 3rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: linear-gradient(135deg, #2F4550 0%, #264550 100%);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        transition: left 0.3s ease;
        gap: 1rem;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        border-top: 2px solid rgba(249, 178, 51, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 1rem;
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:hover {
        color: var(--color-gold-light);
        background: rgba(255, 255, 255, 0.05);
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    section {
        padding: 3rem 0;
    }
    
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }
    
    .step-icon {
        display: none;
    }
    
    /* Logo carousel optimization for tablet */
    .logo-slide {
        width: 150px;
        height: 85px;
        padding: 1rem;
    }
    
    .client-logo-img {
        max-width: 120px;
        max-height: 50px;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-150px * 25 - 1rem * 25));
        }
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-cta {
        width: 100%;
        justify-content: center;
        padding: 1.25rem 2rem;
    }
    
    .btn-cta i {
        font-size: 1.5rem;
    }
    
    .btn-cta-text strong {
        font-size: 1rem;
    }
    
    .btn-cta-text small {
        font-size: 0.8rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .logo img {
        height: 58px;
    }
    
    .navbar.scrolled .logo img {
        height: 48px;
    }
    
    /* Mobile dropdown menu */
    .contact-dropdown-menu {
        position: static;
        margin-top: 0.5rem;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 8px;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(249, 178, 51, 0.3);
    }
    
    .nav-contact-dropdown {
        width: 100%;
    }
    
    .dropdown-item {
        color: rgba(255, 255, 255, 0.9);
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-item:hover:not(.disabled) {
        background: rgba(249, 178, 51, 0.2);
    }
    
    .nav-cta {
        width: 100%;
        justify-content: center;
    }
    
    .linkedin-header {
        flex-direction: column;
        text-align: center;
    }
    
    .linkedin-header .section-title,
    .linkedin-header .section-subtitle {
        text-align: center;
    }
    
    .linkedin-features {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
    
    .role-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-step {
        gap: 1rem;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Job CTA responsive - tablet */
    .job-cta-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .job-cta-text h3 {
        font-size: 1.5rem;
    }
    
    .job-cta-text p {
        font-size: 1rem;
    }
    
    .job-cta-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .timeline-step:not(:last-child)::after {
        left: 25px;
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    /* Mobile logo carousel optimization */
    .logo-slide {
        width: 130px;
        height: 75px;
        padding: 0.75rem;
    }
    
    .client-logo-img {
        max-width: 100px;
        max-height: 45px;
    }
    
    .logo img {
        height: 55px;
    }
    
    .navbar.scrolled .logo img {
        height: 45px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Job CTA - mobile */
    .job-cta-icon {
        width: 60px;
        height: 60px;
    }
    
    .job-cta-icon i {
        font-size: 1.5rem;
    }
    
    .job-cta-content {
        padding: 1.5rem 1rem;
        gap: 1.25rem;
    }
    
    .job-cta-text h3 {
        font-size: 1.25rem;
    }
    
    .job-cta-text p {
        font-size: 0.95rem;
    }
    
    .job-cta-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    /* Portal Link - mobile */
    .portal-link-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .portal-link-icon {
        width: 60px;
        height: 60px;
    }
    
    .portal-link-icon i {
        font-size: 1.5rem;
    }
    
    .portal-link-text h3 {
        font-size: 1.25rem;
    }
    
    .portal-link-text p {
        font-size: 0.9rem;
    }
    
    .portal-link-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Portal Modal - mobile */
    .portal-modal-content {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .portal-login-header {
        padding: 2rem 1.5rem;
    }
    
    .portal-modal-logo {
        width: 60px;
        margin-bottom: 1rem;
    }
    
    .portal-login-header h2 {
        font-size: 1.5rem;
    }
    
    .portal-login-header p {
        font-size: 0.85rem;
    }
    
    .portal-login-body {
        padding: 1.5rem;
    }
    
    .portal-form-group input {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .portal-modal-close {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    }
}
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .logo img {
        height: 45px;
    }
    
    .navbar.scrolled .logo img {
        height: 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
    
    .benefit-icon,
    .use-case-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .timeline-content h4 {
        font-size: 1.125rem;
    }
    
    .role-header h3 {
        font-size: 1.125rem;
    }
    
    .role-header i {
        font-size: 1.5rem;
    }
    
    .stat-widget-number {
        font-size: 2rem;
    }
    
    .use-case-card,
    .role-card,
    .why-card {
        padding: 1.5rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .linkedin-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .post-logo {
        width: 50px;
        height: 50px;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    :root {
        font-size: 13px;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .page-hero h1 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .nav-container {
        padding: 0.875rem 1rem;
    }
    
    .logo img {
        height: 52px;
    }
    
    .navbar.scrolled .logo img {
        height: 44px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .service-card,
    .why-card,
    .use-case-card {
        padding: 1.25rem;
    }
    
    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .timeline-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .timeline-step:not(:last-child)::after {
        display: none;
    }
}