/* ========================================
   TAAJI CONSULTING - MODERN IT STYLESHEET
   ======================================== */

/* ========================================
   PRELOADER
   ======================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.preloader-logo {
    margin-bottom: 3rem;
    animation: pulse 2s ease-in-out infinite;
}

.preloader-logo img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.8));
}

.preloader-spinner {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.spinner-ring:nth-child(2) {
    border-top-color: #06b6d4;
    animation-delay: 0.3s;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
}

.spinner-ring:nth-child(3) {
    border-top-color: #10b981;
    animation-delay: 0.6s;
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
}

.preloader-tagline {
    font-size: 0.95rem;
    color: #94a3b8;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 1s ease 0.5s both;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

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

/* ========================================
   RESET ET STYLES DE BASE
   ======================================== */

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette IT/Tech moderne */
    --primary-color: #0f172a;        /* Bleu foncé presque noir */
    --secondary-color: #3b82f6;      /* Bleu tech vif */
    --accent-color: #06b6d4;         /* Cyan tech */
    --success-color: #10b981;        /* Vert tech */
    --warning-color: #f59e0b;        /* Orange warning */
    
    /* Couleurs de texte */
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    
    /* Couleurs de fond */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --bg-dark: #0f172a;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    
    /* Dégradés tech */
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    
    /* Ombres tech */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Bordures */
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Typographie de base */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

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

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

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

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Backgrounds */
.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--bg-white);
}

/* ========================================
   NAVIGATION - Style IT Moderne
   ======================================== */

header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
    transition: all var(--transition-normal);
}

.navbar {
    padding: 0.75rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 0.4rem 0.6rem;
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-fast);
}

.logo a:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: translateX(2px);
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
    font-size: 1.05rem;
    color: #1e40af;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.logo a:hover .logo-img {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links a {
    color: #1e3a8a;
    font-weight: 600;
    font-size: 0.813rem;
    padding: 0.5rem 0.875rem;
    position: relative;
    transition: all var(--transition-fast);
    border-radius: var(--border-radius-lg);
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1e40af 0%, #0284c7 100%);
    opacity: 0;
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-fast);
    z-index: -1;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1e40af, #0284c7);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--bg-white);
    transform: translateY(-2px);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    opacity: 1;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.nav-links a:hover::after {
    width: 80%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition-fast);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    border: none;
    cursor: pointer;
    text-align: center;
    transition: all var(--transition-normal);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 0 rgba(59, 130, 246, 0);
    transition: all var(--transition-normal);
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: var(--bg-white);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--gradient-primary);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    border-radius: var(--border-radius-lg);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    background: var(--gradient-dark);
    color: var(--bg-white);
    padding: 8rem 2rem;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.02)"/></svg>');
    background-size: cover;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

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

.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.03;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--secondary-color);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.service-link:hover {
    gap: 0.75rem;
}

/* ========================================
   FEATURES & WHY CHOOSE US
   ======================================== */

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

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-glow);
    transition: transform var(--transition-normal);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-item p {
    font-size: 0.95rem;
}

/* ========================================
   SECTORS SECTION - Modern Cards
   ======================================== */

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.sector-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height var(--transition-normal);
}

.sector-public::before {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.sector-private::before {
    background: linear-gradient(135deg, #06b6d4 0%, #0284c7 100%);
}

.sector-telecom::before {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.sector-startup::before {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.sector-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.sector-public:hover {
    border-color: #3b82f6;
}

.sector-private:hover {
    border-color: #06b6d4;
}

.sector-telecom:hover {
    border-color: #8b5cf6;
}

.sector-startup:hover {
    border-color: #f59e0b;
}

.sector-badge {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform var(--transition-normal);
}

.sector-card:hover .sector-badge {
    transform: scale(1.2) rotate(-5deg);
}

.sector-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    font-weight: 600;
}

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

.sector-list li {
    padding: 0.65rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.sector-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    transition: transform var(--transition-normal);
}

.sector-public .sector-list li::before {
    color: #3b82f6;
}

.sector-private .sector-list li::before {
    color: #06b6d4;
}

.sector-telecom .sector-list li::before {
    color: #8b5cf6;
}

.sector-startup .sector-list li::before {
    color: #f59e0b;
}

.sector-card:hover .sector-list li::before {
    transform: scale(1.3);
}

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

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    text-align: center;
    padding: 5rem 2rem;
}

.cta-content h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* ========================================
   PAGE HEADER
   ======================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    padding: 5rem 2rem;
    text-align: center;
}

.page-header h1 {
    color: var(--bg-white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

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

.services-detail {
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail-item {
    background: var(--bg-white);
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-detail-item h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.25rem;
}

/* ========================================
   METHODOLOGY
   ======================================== */

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

.methodology-step {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.methodology-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--secondary-color);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-glow);
}

.methodology-step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.methodology-step p {
    font-size: 0.95rem;
}

/* ========================================
   SOLUTIONS PAGE - Intro & Products
   ======================================== */

.solutions-intro {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.intro-content-modern {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    animation: fadeInDown 0.6s ease;
}

.badge-icon {
    font-size: 1.25rem;
}

.badge-text {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.intro-content-modern h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-content-modern .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.intro-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.intro-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.intro-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.intro-feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.intro-feature-text strong {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.intro-feature-text span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.intro-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

/* Catalog Header Modern */
.catalog-header-modern {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.catalog-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    animation: fadeInDown 0.6s ease;
}

.catalog-badge .badge-icon {
    font-size: 1.25rem;
}

.catalog-badge .badge-text {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.catalog-header-modern h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.catalog-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Products Categories */

.product-category {
    margin-bottom: 4rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--secondary-color);
}

.category-icon-large {
    font-size: 4rem;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.3));
}

.category-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.category-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

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

.product-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform var(--transition-normal);
}

.product-item:hover .product-icon {
    transform: scale(1.15) rotate(-5deg);
}

.product-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.product-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-item ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

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

.service-card-modern {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

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

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--secondary-color);
}

.service-icon-modern {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all var(--transition-normal);
}

.service-card-modern:hover .service-icon-modern {
    transform: scale(1.2) rotate(5deg);
}

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

.service-card-modern p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.about-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 2rem;
}

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

.mvv-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.mvv-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.mvv-card h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.values-list {
    text-align: left;
    margin-top: 1rem;
}

.values-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
}

.values-list strong {
    color: var(--primary-color);
}

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

.approach-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary-color);
}

.approach-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.legal-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.legal-item h3 {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.legal-item p {
    color: var(--text-primary);
    font-weight: 600;
}

/* CEO Message Section */
.ceo-message-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.ceo-message-content {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid #1e40af;
}

.ceo-message-wrapper {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.ceo-text-content {
    flex: 1;
}

.ceo-photo-sidebar {
    flex-shrink: 0;
    width: 200px;
    text-align: center;
}

.ceo-photo {
    width: 180px;
    height: 180px;
    border-radius: var(--border-radius-lg);
    object-fit: cover;
    border: 3px solid #1e40af;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.15);
    margin-bottom: 1rem;
}

.ceo-photo-sidebar .ceo-experience {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    font-weight: 500;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #1e40af;
    font-weight: 600;
    font-style: italic;
}

.ceo-intro .greeting {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 2rem;
}

.message-body {
    line-height: 1.8;
    font-size: 1.05rem;
}

.message-body p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.message-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

.closing-statement {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e40af;
    font-style: italic;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e0f2fe;
}

.ceo-signature {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.ceo-signature .ceo-name {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.ceo-signature .ceo-title {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form-container,
.contact-info-container {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form-container h2,
.contact-info-container h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Quote Form Modern Styles */
.quote-header-modern {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.quote-header-modern h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.quote-header-modern p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.quote-form-modern {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--bg-light);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.35rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-consent {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 2rem;
}

.checkbox-label-modern {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
}

.checkbox-label-modern input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.125rem;
    cursor: pointer;
    accent-color: var(--secondary-color);
}

.checkbox-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.form-submit {
    text-align: center;
}

.form-submit .btn {
    min-width: 300px;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.contact-info-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.info-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.info-card p,
.info-card a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.info-card a:hover {
    color: var(--secondary-color);
}

.contact-cta {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.contact-cta h3 {
    margin-bottom: 1rem;
}

.contact-cta p {
    margin-bottom: 1.5rem;
}

.map-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.map-description {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
}

.map-container iframe {
    display: block;
    width: 100%;
}

.map-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.map-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* ========================================
   RECRUITMENT PAGE STYLES
   ======================================== */

/* Profiles Section */
.profiles-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.profile-category-modern {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.profile-category-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bg-light);
}

.profile-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-md);
}

.profile-header h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.profile-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.profile-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-md);
    border-left: 3px solid var(--secondary-color);
    transition: var(--transition-normal);
    min-height: 40px;
}

.profile-item:hover {
    background: #e0f2fe;
    border-left-color: var(--primary-color);
}

.profile-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 160px;
}

.profile-tech {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: right;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

/* Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
}

.process-step-modern {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.step-content {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* RH Services Grid Modern */
.rh-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.rh-service-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.rh-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.rh-service-card.rh-featured {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.rh-service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rh-service-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.rh-service-card.rh-featured .rh-service-icon {
    background: linear-gradient(135deg, #0284c7, #8b5cf6);
}

.rh-service-header h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    line-height: 1.3;
    margin: 0;
}

.rh-service-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.rh-service-features {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.rh-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 0.6rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-md);
    transition: var(--transition-fast);
}

.rh-feature-item:hover {
    background: #e0f2fe;
    transform: translateX(5px);
}

.feature-check {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.rh-feature-item span:last-child {
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.rh-service-cta {
    margin-top: auto;
}

.btn-service {
    display: inline-block;
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: var(--bg-light);
    color: var(--primary-color);
    text-align: center;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    font-size: 0.95rem;
}

.btn-service:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-service-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
}

.btn-service-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Benefits Grid */
.benefits-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
}

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

.benefit-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

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

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   PARTNERSHIPS PAGE STYLES
   ======================================== */

/* Partner Services Grid */
.partner-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.partner-service-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    border: 2px solid transparent;
}

.partner-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.partner-service-card.partner-featured {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.partner-service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.partner-service-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.partner-service-header h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    line-height: 1.3;
    margin: 0;
}

.partner-service-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.partner-service-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.partner-item {
    padding: 0.6rem 0.8rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-md);
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.partner-item:hover {
    background: #e0f2fe;
    transform: translateX(5px);
}

/* Sectors Modern Grid */
.sectors-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.sector-card-modern {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border-left: 4px solid var(--secondary-color);
}

.sector-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary-color);
}

.sector-header-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.sector-icon-modern {
    font-size: 2rem;
}

.sector-header-modern h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin: 0;
}

.sector-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.sector-opps {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.opp-item {
    font-size: 0.875rem;
    color: var(--text-primary);
    padding-left: 0.5rem;
}

/* Partner Advantages Grid */
.partner-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.partner-advantage-card {
    background: var(--bg-white);
    padding: 1.75rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
}

.partner-advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.partner-advantage-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    margin: 0 auto 1.25rem;
    box-shadow: var(--shadow-md);
}

.partner-advantage-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.partner-advantage-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Partner Process Timeline */
.partner-process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.partner-process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.partner-step-number {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: bold;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.partner-step-content {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.partner-step-icon {
    font-size: 1.875rem;
    margin-bottom: 0.75rem;
}

.partner-step-content h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.partner-step-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--bg-white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Logo responsive */
    .logo-img {
        height: 30px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    /* Navigation mobile */
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-normal);
        gap: 1rem;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hero */
    .hero {
        padding: 4rem 1rem;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

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

    /* Grids */
    .services-grid,
    .features-grid,
    .sectors-grid,
    .methodology-grid,
    .mvv-grid,
    .approach-grid,
    .products-grid,
    .services-grid-4 {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* CEO Profile responsive */
    .ceo-message-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .ceo-photo-sidebar {
        width: 100%;
        order: -1;
    }

    .ceo-photo {
        width: 150px;
        height: 150px;
    }

    .ceo-message-content {
        padding: 2rem 1.5rem;
    }

    /* Solutions page responsive */
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .category-icon-large {
        font-size: 3rem;
    }

    /* Solutions intro responsive */
    .intro-content-modern h2 {
        font-size: 2rem;
    }

    .catalog-header-modern h2 {
        font-size: 2rem;
    }

    .catalog-subtitle {
        font-size: 1rem;
    }

    .intro-content-modern .lead {
        font-size: 1.1rem;
    }

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

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

    .intro-cta .btn {
        width: 100%;
    }

    /* Quote Form Responsive */
    .quote-form-modern {
        padding: 2rem 1.5rem;
    }

    .quote-header-modern h2 {
        font-size: 1.75rem;
    }

    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .form-section-title {
        font-size: 1.2rem;
    }

    .form-submit .btn {
        min-width: 100%;
    }

    /* Recruitment Page Responsive */
    .profiles-grid-modern {
        grid-template-columns: 1fr;
    }

    .profile-category-modern {
        padding: 1.25rem;
    }

    .profile-header {
        gap: 0.5rem;
    }

    .profile-icon {
        width: 45px;
        height: 45px;
        font-size: 1.75rem;
    }

    .profile-header h3 {
        font-size: 1.1rem;
    }

    .profile-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.65rem;
    }

    .profile-name {
        font-size: 0.9rem;
    }

    .profile-tech {
        font-size: 0.8rem;
        text-align: left;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .benefits-grid-modern {
        grid-template-columns: 1fr;
    }

    .rh-services-grid {
        grid-template-columns: 1fr;
    }

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

    .rh-service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .featured-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    /* Map Section Responsive */
    .map-section {
        padding: 3rem 0;
    }

    .map-container iframe {
        height: 300px;
    }

    /* Partnerships Page Responsive */
    .partner-services-grid {
        grid-template-columns: 1fr;
    }

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

    .sectors-modern-grid {
        grid-template-columns: 1fr;
    }

    .sector-card-modern {
        padding: 1.25rem;
    }

    .partner-advantages-grid {
        grid-template-columns: 1fr;
    }

    .partner-process-timeline {
        grid-template-columns: 1fr;
    }

    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .section {
        padding: 3rem 0;
    }
}

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

    .page-header h1 {
        font-size: 2rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}
