/* ========================================
   JobYou.Work - Main Stylesheet
   Color Scheme: Black, Blue, White, Gold
======================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Blue Shades */
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --primary-300: #93c5fd;
    --primary-400: #60a5fa;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-800: #1e40af;
    --primary-900: #1e3a8a;

    /* Neutral Colors - Black/White Shades */
    --neutral-50: #fafafa;
    --neutral-100: #f4f4f5;
    --neutral-200: #e4e4e7;
    --neutral-300: #d4d4d8;
    --neutral-400: #a1a1aa;
    --neutral-500: #71717a;
    --neutral-600: #52525b;
    --neutral-700: #3f3f46;
    --neutral-800: #27272a;
    --neutral-900: #18181b;
    --neutral-950: #09090b;

    /* Semantic Colors */
    --success: #10b981;
    --success-light: #d1fae5;
    --warning: #f59e0b;
    --error: #ef4444;
    --whatsapp: #25D366;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 100px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-800);
    background-color: var(--neutral-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

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

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-100);
    color: var(--primary-700);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--neutral-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: var(--neutral-600);
}

/* ========================================
   Navigation
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neutral-200);
    padding: 16px 0;
    transition: var(--transition-normal);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.logo-jn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--neutral-900), #1a1a2e);
    color: #FFD700;
    font-size: 14px;
    font-weight: 800;
    border-radius: var(--radius-md);
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--neutral-900);
}

.logo-text .work {
    color: #FFD700;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--neutral-700);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--primary-600);
    background: var(--primary-50);
}

.nav-links a.active {
    color: var(--primary-700);
    background: var(--primary-100);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ========================================
   VIP Banner Section
======================================== */
.vip-banner-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.vip-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid #FFD700;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.vip-banner-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: var(--radius-full);
    font-size: 32px;
    color: #1a1a2e;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.vip-banner-content {
    flex: 1;
}

.vip-banner-title {
    font-size: 24px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.vip-banner-text {
    font-size: 16px;
    color: #e4e4e7;
    margin-bottom: 16px;
    line-height: 1.6;
}

.vip-banner-text strong {
    color: #FFD700;
}

.btn-vip {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a2e;
    font-weight: 700;
    padding: 14px 28px;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.btn-vip:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFE55C, #FFB800);
}

.vip-link {
    color: #FFD700;
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.2s ease;
}

.vip-link:hover {
    color: #FFA500;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@media (max-width: 768px) {
    .vip-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .vip-banner-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .vip-banner-title {
        font-size: 20px;
    }
    
    .vip-banner-text {
        font-size: 15px;
    }
}

/* ========================================
   Europe Map Section
======================================== */
.map-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--neutral-50) 0%, #f1f5f9 100%);
}

.map-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.map-section .section-subtitle {
    font-size: 18px;
    color: var(--neutral-600);
    max-width: 600px;
    margin: 16px auto 0;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.europe-map {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.europe-map svg {
    width: 100%;
    height: auto;
    max-height: 500px;
}

.europe-map .country {
    fill: #e2e8f0;
    stroke: #fff;
    stroke-width: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.europe-map .country:hover {
    fill: #93c5fd;
}

.europe-map .country.highlight {
    fill: #3b82f6;
}

.europe-map .country.highlight:hover {
    fill: #2563eb;
}

.europe-map .pins circle {
    animation: pulse 2s infinite;
}

.europe-map .pins circle:nth-child(2) { animation-delay: 0.2s; }
.europe-map .pins circle:nth-child(3) { animation-delay: 0.4s; }
.europe-map .pins circle:nth-child(4) { animation-delay: 0.6s; }
.europe-map .pins circle:nth-child(5) { animation-delay: 0.8s; }

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

.map-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--neutral-600);
}

.legend-pin {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-pin.hq {
    background: #FFD700;
    border: 2px solid #1e3a8a;
}

.legend-pin.hub {
    background: #3b82f6;
}

.legend-line {
    width: 20px;
    height: 2px;
    background: repeating-linear-gradient(90deg, #3b82f6, #3b82f6 5px, transparent 5px, transparent 10px);
}

.map-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.map-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.map-stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: var(--radius-lg);
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.map-stat-content {
    display: flex;
    flex-direction: column;
}

.map-stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--neutral-900);
    line-height: 1;
}

.map-stat-label {
    font-size: 14px;
    color: var(--neutral-600);
    margin-top: 4px;
}

@media (max-width: 992px) {
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .map-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .map-stat-card {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .map-stats {
        flex-direction: column;
    }
    
    .map-legend {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .europe-map {
        padding: 15px;
    }
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn i {
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: var(--neutral-100);
    color: var(--neutral-800);
    border-color: var(--neutral-300);
}

.btn-secondary:hover {
    background: var(--neutral-200);
    border-color: var(--neutral-400);
}

.btn-outline {
    background: transparent;
    color: var(--primary-600);
    border-color: var(--primary-600);
}

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

.btn-light {
    background: white;
    color: var(--primary-700);
}

.btn-light:hover {
    background: var(--neutral-100);
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* ========================================
   Hero Section
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--neutral-900) 0%, var(--neutral-800) 50%, var(--primary-900) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary-300);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: #fbbf24;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary-400), var(--primary-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--neutral-300);
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-subtitle strong {
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: white;
}

.stat-label {
    font-size: 14px;
    color: var(--neutral-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 120px;
    fill: var(--neutral-50);
}

/* ========================================
   AI Technology Section
======================================== */
.ai-section {
    padding: 40px 0;
    background: var(--neutral-50);
}

.ai-banner {
    display: flex;
    align-items: center;
    gap: 32px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
    padding: 40px 48px;
    border-radius: var(--radius-2xl);
    color: white;
}

.ai-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-icon i {
    font-size: 36px;
    color: white;
}

.ai-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ai-content p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .ai-banner {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
}

/* ========================================
   Document Services Section
======================================== */
.document-services {
    padding: var(--section-padding) 0;
    background: var(--neutral-100);
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.doc-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--neutral-200);
    transition: var(--transition-normal);
}

.doc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.doc-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.doc-icon i {
    font-size: 32px;
    color: var(--primary-600);
}

.doc-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 12px;
}

.doc-card p {
    font-size: 15px;
    color: var(--neutral-600);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .docs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .docs-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Industries Section
======================================== */
.industries {
    padding: var(--section-padding) 0;
    background: var(--neutral-50);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industry-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--neutral-200);
    transition: var(--transition-normal);
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.industry-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-icon i {
    font-size: 28px;
    color: var(--primary-600);
}

.industry-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 14px;
    color: var(--neutral-600);
}

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

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

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content h2 {
    font-size: 44px;
    font-weight: 800;
    color: var(--neutral-900);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-content .lead {
    font-size: 18px;
    color: var(--neutral-700);
    margin-bottom: 16px;
}

.about-content p {
    color: var(--neutral-600);
    margin-bottom: 32px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--neutral-800);
}

.feature i {
    color: var(--success);
    font-size: 18px;
}

/* About Image/Graphic */
.about-image {
    position: relative;
}

.image-card {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.about-graphic {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graphic-circle {
    width: 300px;
    height: 300px;
    border: 3px solid var(--primary-300);
    border-radius: 50%;
    position: relative;
}

.graphic-circle::before {
    content: '';
    position: absolute;
    inset: 30px;
    border: 3px solid var(--primary-400);
    border-radius: 50%;
}

.graphic-circle::after {
    content: '';
    position: absolute;
    inset: 60px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    border-radius: 50%;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--neutral-800);
    z-index: 2;
}

.floating-card i {
    font-size: 24px;
    color: var(--primary-600);
}

.floating-card.card-1 {
    top: 40px;
    left: -20px;
}

.floating-card.card-2 {
    bottom: 60px;
    right: -20px;
}

/* ========================================
   Services Section
======================================== */
.services {
    padding: var(--section-padding) 0;
    background: var(--neutral-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--neutral-200);
    transition: var(--transition-normal);
}

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

.service-card.featured {
    background: linear-gradient(135deg, var(--neutral-900), var(--primary-900));
    border: none;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.15);
}

.service-card.featured .service-icon i {
    color: white;
}

.service-card.featured h3 {
    color: white;
}

.service-card.featured p {
    color: var(--neutral-300);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-500);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 24px;
    color: var(--primary-600);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--neutral-600);
    line-height: 1.7;
}

/* ========================================
   Salary Section
======================================== */
.salary-section {
    padding: var(--section-padding) 0;
    background: white;
}

.salary-card {
    background: linear-gradient(135deg, var(--primary-700), var(--primary-900));
    border-radius: var(--radius-2xl);
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.salary-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

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

.salary-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

.salary-range {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.salary-min, .salary-max {
    font-size: 56px;
    font-weight: 800;
    color: white;
}

.salary-divider {
    font-size: 24px;
    color: var(--primary-300);
    font-weight: 500;
}

.salary-currency {
    font-size: 24px;
    color: var(--primary-200);
    font-weight: 600;
}

.salary-content p {
    font-size: 18px;
    color: var(--primary-200);
    max-width: 600px;
    margin: 0 auto 32px;
}

/* ========================================
   CTA Section
======================================== */
.cta {
    padding: var(--section-padding) 0;
    background: var(--neutral-900);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 18px;
    color: var(--neutral-400);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--neutral-950);
    padding: 80px 0 0;
    color: var(--neutral-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--neutral-800);
}

.footer-brand p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: var(--neutral-800);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-400);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-600);
    color: white;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 15px;
    color: var(--neutral-400);
}

.footer-links a:hover {
    color: var(--primary-400);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
}

.contact-item i {
    width: 20px;
    color: var(--primary-400);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
}

/* ========================================
   Page Header
======================================== */
.page-header {
    background: linear-gradient(135deg, var(--neutral-900), var(--primary-900));
    padding: 160px 0 80px;
    text-align: center;
}

.page-header-content {
    max-width: 600px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: var(--neutral-300);
}

/* ========================================
   Application Form
======================================== */
.application-section {
    padding: 80px 0;
    background: var(--neutral-100);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: start;
}

/* Form Sidebar */
.form-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-content {
    background: white;
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--neutral-200);
    margin-bottom: 24px;
}

.sidebar-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 24px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 20px;
    color: var(--primary-600);
}

.benefit-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 2px;
}

.benefit-text p {
    font-size: 13px;
    color: var(--neutral-600);
}

.sidebar-contact {
    background: var(--neutral-900);
    padding: 24px;
    border-radius: var(--radius-xl);
    text-align: center;
}

.sidebar-contact h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 8px;
}

.sidebar-contact p {
    color: var(--neutral-400);
    font-size: 14px;
    margin-bottom: 16px;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    width: 100%;
}

.sidebar-btn.whatsapp {
    background: var(--whatsapp);
    color: white;
}

.sidebar-btn.whatsapp:hover {
    background: #20bd5a;
}

/* Form Container */
.form-container {
    background: white;
    padding: 48px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--neutral-200);
}

/* Progress Bar */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--neutral-200);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--neutral-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--neutral-500);
    transition: var(--transition-fast);
}

.step-label {
    font-size: 13px;
    color: var(--neutral-500);
    font-weight: 500;
}

.progress-step.active .step-number {
    background: var(--primary-600);
    color: white;
}

.progress-step.active .step-label {
    color: var(--primary-600);
}

.progress-step.completed .step-number {
    background: var(--success);
    color: white;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: var(--neutral-200);
    margin: 0 16px;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.form-step h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-step h3 i {
    color: var(--primary-600);
}

/* Form Groups */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 8px;
}

.required {
    color: var(--error);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--neutral-800);
    background: white;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px var(--primary-100);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--neutral-400);
}

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

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--neutral-50);
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 14px;
    font-weight: 500;
    color: var(--neutral-700);
}

.checkbox-item:hover {
    border-color: var(--primary-300);
}

.checkbox-item input {
    display: none;
}

.checkbox-item .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--neutral-300);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.checkbox-item .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    color: white;
    opacity: 0;
    transition: var(--transition-fast);
}

.checkbox-item input:checked + .checkmark {
    background: var(--primary-600);
    border-color: var(--primary-600);
}

.checkbox-item input:checked + .checkmark::after {
    opacity: 1;
}

.checkbox-item input:checked ~ * {
    color: var(--primary-700);
}

.checkbox-item.consent {
    background: transparent;
    border: none;
    padding: 0;
    align-items: flex-start;
}

.consent-group {
    margin-top: 24px;
}

/* Radio Group */
.radio-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--neutral-50);
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 14px;
    font-weight: 500;
    color: var(--neutral-700);
}

.radio-item:hover {
    border-color: var(--primary-300);
}

.radio-item input {
    display: none;
}

.radio-item .radiomark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--neutral-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.radio-item .radiomark::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--primary-600);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition-fast);
}

.radio-item input:checked + .radiomark {
    border-color: var(--primary-600);
}

.radio-item input:checked + .radiomark::after {
    opacity: 1;
}

/* File Upload */
.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 40px;
    border: 2px dashed var(--neutral-300);
    border-radius: var(--radius-lg);
    background: var(--neutral-50);
    transition: var(--transition-fast);
    cursor: pointer;
}

.file-label:hover {
    border-color: var(--primary-400);
    background: var(--primary-50);
}

.file-label i {
    font-size: 32px;
    color: var(--primary-500);
}

.file-label span {
    font-size: 14px;
    color: var(--neutral-600);
}

.file-hint {
    font-size: 12px !important;
    color: var(--neutral-400) !important;
}

.file-name {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: var(--success);
    font-weight: 500;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--neutral-200);
}

/* Success Message */
.form-success {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--success-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-icon i {
    font-size: 48px;
    color: var(--success);
}

.form-success h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 16px;
}

.form-success p {
    font-size: 16px;
    color: var(--neutral-600);
    margin-bottom: 32px;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ========================================
   Contact Page
======================================== */
.contact-section {
    padding: 80px 0;
    background: var(--neutral-100);
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 48px;
}

.contact-intro h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--neutral-900);
    margin-bottom: 16px;
}

.contact-intro p {
    font-size: 18px;
    color: var(--neutral-600);
    margin-bottom: 8px;
}

/* Contact Buttons */
.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: white;
    border-radius: var(--radius-xl);
    border: 2px solid var(--neutral-200);
    transition: var(--transition-normal);
}

.contact-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-xl);
}

.contact-card.whatsapp-card:hover {
    border-color: var(--whatsapp);
}

.contact-card.email-card:hover {
    border-color: var(--primary-500);
}

.contact-card-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-card .contact-card-icon {
    background: rgba(37, 211, 102, 0.1);
}

.whatsapp-card .contact-card-icon i {
    font-size: 32px;
    color: var(--whatsapp);
}

.email-card .contact-card-icon {
    background: var(--primary-100);
}

.email-card .contact-card-icon i {
    font-size: 28px;
    color: var(--primary-600);
}

.contact-card-content {
    flex: 1;
}

.contact-card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 4px;
}

.contact-card-content p {
    font-size: 14px;
    color: var(--neutral-500);
    margin-bottom: 8px;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-700);
}

.contact-card-arrow {
    width: 48px;
    height: 48px;
    background: var(--neutral-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.contact-card-arrow i {
    color: var(--neutral-400);
    transition: var(--transition-fast);
}

.contact-card:hover .contact-card-arrow {
    background: var(--primary-600);
}

.contact-card:hover .contact-card-arrow i {
    color: white;
}

/* Info Cards */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.info-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--neutral-200);
}

.info-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon i {
    font-size: 24px;
    color: var(--primary-600);
}

.info-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.info-card p {
    font-size: 14px;
    color: var(--neutral-600);
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--neutral-900), var(--primary-900));
    padding: 48px;
    border-radius: var(--radius-2xl);
    text-align: center;
}

.contact-cta h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.contact-cta p {
    font-size: 16px;
    color: var(--neutral-300);
    margin-bottom: 24px;
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        order: -1;
    }

    .image-card {
        height: 350px;
    }

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

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

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

    .form-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 24px;
        gap: 8px;
        box-shadow: var(--shadow-2xl);
        transition: var(--transition-normal);
    }

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

    .nav-links a {
        padding: 16px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

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

    .section-header h2 {
        font-size: 32px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .salary-card {
        padding: 48px 24px;
    }

    .salary-min, .salary-max {
        font-size: 40px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .form-container {
        padding: 24px;
    }

    .form-progress {
        overflow-x: auto;
        padding-bottom: 16px;
    }

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

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

    .radio-group {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero-badge {
        font-size: 12px;
    }

    .stat-number {
        font-size: 28px;
    }

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

    .form-navigation {
        flex-direction: column;
        gap: 16px;
    }

    .form-navigation .btn {
        width: 100%;
    }

    .success-actions {
        flex-direction: column;
    }
}

/* ========================================
   Language Switcher
======================================== */
.lang-switcher {
    display: flex;
    gap: 4px;
    margin-left: 20px;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--neutral-300);
    color: var(--neutral-600);
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
}

.lang-btn:hover {
    border-color: var(--primary-500);
    color: var(--primary-600);
}

.lang-btn.active {
    background: var(--primary-600);
    border-color: var(--primary-600);
    color: white;
}

.navbar.scrolled .lang-btn {
    border-color: var(--neutral-300);
    color: var(--neutral-600);
}

.navbar.scrolled .lang-btn:hover {
    border-color: var(--primary-500);
    color: var(--primary-600);
}

.navbar.scrolled .lang-btn.active {
    background: var(--primary-600);
    border-color: var(--primary-600);
    color: white;
}

@media (max-width: 768px) {
    .lang-switcher {
        margin-left: 0;
        margin-top: 16px;
        justify-content: center;
    }
}

/* ========================================
   Contact Reveal Modal
======================================== */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.contact-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    max-width: 450px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    box-shadow: var(--shadow-2xl);
}

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

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--neutral-400);
    line-height: 1;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--neutral-700);
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
}

.modal-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.modal-icon.email {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    color: white;
}

#modalBody h3 {
    font-size: 24px;
    color: var(--neutral-900);
    margin-bottom: 16px;
}

#modalBody p {
    color: var(--neutral-600);
    margin-bottom: 12px;
}

.modal-number, .modal-email {
    font-size: 20px;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 20px;
    display: block;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-email {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
}

.btn-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

/* ========================================
   Assurance Section (Apply Page)
======================================== */
.assurance-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.assurance-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--success);
}

.assurance-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--success), #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.assurance-content p {
    color: var(--neutral-700);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .assurance-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .assurance-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* ========================================
   RTL Support (Arabic)
======================================== */
html[dir="rtl"] body {
    text-align: right;
}

html[dir="rtl"] .navbar .container {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

html[dir="rtl"] .lang-switcher {
    margin-left: 0;
    margin-right: 20px;
}

html[dir="rtl"] .hero-content {
    text-align: right;
}

html[dir="rtl"] .hero-buttons {
    justify-content: flex-end;
}

html[dir="rtl"] .hero-stats {
    justify-content: flex-end;
}

html[dir="rtl"] .section-header {
    text-align: right;
}

html[dir="rtl"] .about-features {
    text-align: right;
}

html[dir="rtl"] .feature {
    flex-direction: row-reverse;
}

html[dir="rtl"] .btn i {
    margin-left: 8px;
    margin-right: 0;
}

html[dir="rtl"] .footer-grid {
    direction: rtl;
}

html[dir="rtl"] .contact-item {
    flex-direction: row-reverse;
}

html[dir="rtl"] .form-wrapper {
    flex-direction: row-reverse;
}

html[dir="rtl"] .benefit-item {
    flex-direction: row-reverse;
}

html[dir="rtl"] .assurance-banner {
    flex-direction: row-reverse;
    border-left: none;
    border-right: 4px solid var(--success);
}

html[dir="rtl"] .modal-close {
    right: auto;
    left: 20px;
}

html[dir="rtl"] .form-navigation {
    flex-direction: row-reverse;
}

html[dir="rtl"] .ai-banner {
    flex-direction: row-reverse;
}

html[dir="rtl"] .doc-card {
    text-align: right;
}

html[dir="rtl"] .contact-card {
    flex-direction: row-reverse;
}

html[dir="rtl"] .contact-card-arrow {
    transform: rotate(180deg);
}

html[dir="rtl"] .floating-card {
    text-align: right;
}

@media (max-width: 768px) {
    html[dir="rtl"] .lang-switcher {
        margin-right: 0;
    }

    html[dir="rtl"] .assurance-banner {
        flex-direction: column;
        border-right: none;
        border-top: 4px solid var(--success);
    }
}
