/*==============================================================================
  MND SOLUTIONS - PREMIUM PROFESSIONAL THEME
  Enterprise-grade design with refined aesthetics
==============================================================================*/

:root {
    /* Premium Color Palette - Sophisticated & Trust-Building */
    --primary-navy: #0F172A;
    --primary-blue: #1E40AF;
    --accent-blue: #3B82F6;
    --accent-gold: #D4A853;
    --accent-emerald: #059669;
    
    /* Professional Neutrals */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --text-light: #CBD5E1;
    
    /* Refined Backgrounds */
    --bg-white: #FFFFFF;
    --bg-cream: #FAFAF9;
    --bg-light: #F8FAFC;
    --bg-subtle: #F1F5F9;
    --bg-dark: #0F172A;
    --bg-navy: #1E293B;
    
    /* Premium Gradients */
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #1E40AF 100%);
    --gradient-gold: linear-gradient(135deg, #D4A853 0%, #B8860B 100%);
    --gradient-blue: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    
    /* Refined Shadows */
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.08);
    --shadow-xl: 0 24px 48px rgba(15, 23, 42, 0.12);
    --shadow-card: 0 1px 3px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
    --shadow-hover: 0 12px 40px rgba(15, 23, 42, 0.12);
    
    /* Professional Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    
    /* Refined Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Additional Button Styles */
.btn-white {
    background: white !important;
    color: #0F172A !important;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-dark {
    background: #0F172A !important;
    color: white !important;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: #1E293B !important;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    transform: translateY(-2px);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Premium Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 700; }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: clamp(20px, 3vw, 26px); }

p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   PREMIUM HERO SECTION
   ============================================ */
.hero-recruitment {
    background: var(--gradient-hero);
    padding: 140px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-recruitment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(212, 168, 83, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-recruitment::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    color: white;
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hero-content .subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Premium Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

/* ============================================
   PREMIUM BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-family: inherit;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
    background: #1E3A8A;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.4);
}

.btn-secondary {
    background: var(--accent-gold);
    color: var(--primary-navy);
    box-shadow: 0 4px 16px rgba(212, 168, 83, 0.3);
}

.btn-secondary:hover {
    background: #C49B4A;
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--primary-navy);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
    padding: 18px 44px;
    font-size: 16px;
}

.btn-dark {
    background: var(--primary-navy);
    color: white;
}

.btn-dark:hover {
    background: #1E293B;
    transform: translateY(-2px);
}

/* ============================================
   PREMIUM TRUST BAR
   ============================================ */
.trust-bar {
    background: var(--bg-white);
    padding: 48px 0;
    border-bottom: 1px solid var(--bg-subtle);
}

.trust-bar-content {
    text-align: center;
}

.trust-bar h3 {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 36px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    flex-wrap: wrap;
}

.trust-logos img {
    height: 36px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all var(--transition-base);
}

.trust-logos img:hover {
    opacity: 0.7;
    filter: grayscale(0%);
}

/* ============================================
   PREMIUM INFO CARDS
   ============================================ */
.info-cards {
    padding: 100px 0;
    background: var(--bg-light);
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.info-card {
    background: white;
    padding: 48px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.info-card-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-blue);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    margin-bottom: 28px;
}

.info-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 15px;
}

/* ============================================
   PREMIUM FEATURED SECTION
   ============================================ */
.featured-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-subtle);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.featured-card {
    background: white;
    border: 1px solid var(--bg-subtle);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all var(--transition-base);
    text-decoration: none;
    color: inherit;
}

.featured-card:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.featured-card-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 24px;
    transition: all var(--transition-base);
}

.featured-card:hover .featured-card-icon {
    background: var(--gradient-blue);
    color: white;
}

.featured-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.featured-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.featured-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    margin-top: 20px;
    transition: gap var(--transition-fast);
}

.featured-card:hover .read-more {
    gap: 12px;
}

/* ============================================
   PREMIUM STEPS SECTION
   ============================================ */
.steps-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.steps-intro {
    text-align: center;
    margin-bottom: 72px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.steps-intro h2 {
    margin-bottom: 16px;
}

.steps-intro p {
    font-size: 18px;
    color: var(--text-secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px 40px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 72px;
    height: 72px;
    background: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 auto 28px;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--bg-subtle);
    border-radius: 50%;
}

.step-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-item p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================
   PREMIUM STATS SECTION
   ============================================ */
.stats-section {
    padding: 80px 0;
}

.stats-container {
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    padding: 72px 56px;
    position: relative;
    overflow: hidden;
}

.stats-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(212, 168, 83, 0.1) 0%, transparent 60%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, white 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 15px;
    opacity: 0.85;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ============================================
   PREMIUM INDUSTRY CARDS
   ============================================ */
.industry-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1600px;
    margin: 0 auto;
}

@media (max-width: 1400px) {
    .industry-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .industry-cards {
        grid-template-columns: 1fr;
    }
}

.industry-card {
    position: relative;
    height: 320px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    text-decoration: none;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.industry-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.industry-card:hover .industry-card-image {
    transform: scale(1.05);
}

.industry-card-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.85) 40%, rgba(15, 23, 42, 0.6) 100%);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.industry-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.industry-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* ============================================
   PREMIUM BLOG CARDS
   ============================================ */
.blog-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-content {
    padding: 32px;
}

.blog-card-date {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-card .read-more {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: gap var(--transition-fast);
}

.blog-card:hover .read-more {
    gap: 12px;
}

/* ============================================
   PREMIUM TESTIMONIAL
   ============================================ */
.testimonial-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 18px;
    margin-bottom: 24px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 32px;
    line-height: 1.8;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-subtle);
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================
   PREMIUM CTA SECTION
   ============================================ */
.cta-section-modern {
    padding: 120px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 168, 83, 0.08) 0%, transparent 50%);
}

.cta-content-modern {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-modern h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-content-modern p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 44px;
    line-height: 1.7;
}

.cta-buttons-modern {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   PREMIUM FEATURE SECTION
   ============================================ */
.feature-section {
    padding: 100px 0;
}

.feature-content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-text h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    margin-bottom: 24px;
    line-height: 1.25;
}

.feature-text p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   PREMIUM FORMS
   ============================================ */
.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.form-group label i {
    color: var(--text-muted);
    font-size: 13px;
}

.form-control {
    width: 100%;
    padding: 16px 18px;
    font-size: 15px;
    border: 2px solid var(--bg-subtle);
    border-radius: var(--radius-md);
    font-family: inherit;
    transition: all var(--transition-base);
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394A3B8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 48px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .feature-content-row {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .container {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .hero-recruitment {
        padding: 100px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content .subtitle {
        font-size: 17px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .info-cards-grid,
    .featured-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .trust-logos {
        gap: 32px;
    }
    
    .trust-logos img {
        height: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .info-card,
    .featured-card,
    .blog-card-content {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        padding: 48px 32px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }

.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Subtle hover states */
a {
    transition: color var(--transition-fast);
}

/* Premium focus states */
:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--primary-blue);
    color: white;
}
