/* AlertMiNotify - Professional Light Theme Design System */
/* Clean, Modern, Enterprise-Grade UI */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    /* Light Theme Color Palette */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-elevated: #ffffff;
    --bg-hover: #e2e8f0;
    
    /* Borders */
    --border-default: #e2e8f0;
    --border-subtle: #f1f5f9;
    --border-accent: #3b82f6;
    
    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-inverse: #ffffff;
    
    /* Accent Colors */
    --accent-primary: #3b82f6;
    --accent-primary-hover: #2563eb;
    --accent-secondary: #8b5cf6;
    
    /* Status Colors */
    --success: #22c55e;
    --success-bg: rgba(34, 197, 94, 0.1);
    --warning: #f59e0b;
    --warning-bg: rgba(245, 158, 11, 0.1);
    --error: #ef4444;
    --error-bg: rgba(239, 68, 68, 0.1);
    --info: #3b82f6;
    --info-bg: rgba(59, 130, 246, 0.1);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-devops: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-dev: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-cloud: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-light: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    --gradient-hero: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%);
    
    /* 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 -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    
    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    
    /* Border Radius - Oval Style */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 200ms ease;
    --transition-slow: 300ms ease;
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background: #ffffff;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.3;
}

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 {
    color: var(--text-secondary);
    line-height: 1.7;
}

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

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

/* ============================================
   NAVBAR
   ============================================ */
.argo-navbar {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    height: 72px;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--space-6);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.argo-nav-container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.argo-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
}

.argo-logo-icon {
    font-size: 28px;
}

.argo-logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.argo-logo-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.argo-nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.argo-nav-link {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.argo-nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

.argo-nav-link.active {
    color: var(--accent-primary);
    background: var(--info-bg);
}

.argo-mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.argo-mobile-toggle:hover {
    background: var(--bg-hover);
    border-color: var(--accent-primary);
}

/* Mobile Navigation */
.argo-mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: var(--space-4);
    z-index: 99;
    flex-direction: column;
    gap: var(--space-2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.argo-mobile-nav.active {
    display: flex;
}

.argo-mobile-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    color: var(--text-secondary);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    font-weight: 500;
}

.argo-mobile-link:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.argo-mobile-link i {
    width: 20px;
    text-align: center;
    color: var(--accent-primary);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.argo-main {
    min-height: calc(100vh - 72px - 80px);
    position: relative;
}

/* Container */
.argo-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    position: relative;
}

/* ============================================
   HERO SECTION
   ============================================ */
.argo-hero {
    padding: var(--space-16) var(--space-6);
    text-align: center;
    position: relative;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.argo-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.argo-hero-icon {
    font-size: 4rem;
    margin-bottom: var(--space-6);
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.argo-hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--space-4);
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.argo-hero-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-8);
    line-height: 1.7;
}

.argo-hero-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.argo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.argo-btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
}

.argo-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45);
    color: white;
}

.argo-btn-secondary {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 2px solid var(--border-default);
}

.argo-btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-primary);
    color: var(--text-primary);
}

.argo-btn-success {
    background: var(--success);
    color: white;
}

.argo-btn-success:hover {
    background: #16a34a;
    color: white;
}

.argo-btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: 1rem;
}

.argo-btn i {
    font-size: 0.875em;
}

/* ============================================
   CARDS - OVAL STYLE
   ============================================ */
.argo-card, .feature-card, .argo-app-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: relative;
}

.argo-card::before, .feature-card::before, .argo-app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-devops);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.argo-card:hover, .feature-card:hover, .argo-app-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.argo-card:hover::before, .feature-card:hover::before, .argo-app-card:hover::before {
    opacity: 1;
}

.argo-card-header {
    padding: var(--space-4) var(--space-5);
    border-bottom: 1px solid var(--border-default);
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-secondary);
}

.argo-card-body {
    padding: var(--space-5);
}

.feature-card {
    padding: var(--space-6);
    height: 100%;
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Page Hero Image */
.page-hero-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-8);
    box-shadow: var(--shadow-lg);
}

/* App Card */
.argo-app-card {
    display: block;
    padding: var(--space-6);
    text-decoration: none;
    cursor: pointer;
    height: 100%;
}

.argo-app-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.argo-app-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.argo-app-info {
    flex: 1;
    min-width: 0;
}

.argo-app-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.argo-app-namespace {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    margin-top: var(--space-1);
}

.argo-app-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.argo-app-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-4);
    border-top: 1px solid var(--border-default);
}

.argo-app-meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.argo-app-meta-item i {
    color: var(--accent-primary);
}

/* ============================================
   BADGES - OVAL STYLE
   ============================================ */
.argo-badge, .status-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-1) var(--space-4);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.argo-badge-synced, .status-badge.success {
    background: var(--success-bg);
    color: var(--success);
}

.argo-badge-healthy {
    background: var(--success-bg);
    color: var(--success);
}

.argo-badge-progressing, .status-badge.warning {
    background: var(--warning-bg);
    color: var(--warning);
}

.argo-badge-degraded, .status-badge.error {
    background: var(--error-bg);
    color: var(--error);
}

.argo-badge-missing {
    background: rgba(100, 116, 139, 0.1);
    color: var(--text-muted);
}

/* ============================================
   SECTIONS
   ============================================ */
.argo-section {
    padding: var(--space-12) 0;
}

.argo-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
    gap: var(--space-4);
}

.argo-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.argo-section-title i {
    color: var(--accent-primary);
    font-size: 1.25rem;
}

/* Section with Image */
.section-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.section-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.section-content h2 {
    margin-bottom: var(--space-4);
}

.section-content p {
    margin-bottom: var(--space-6);
}

/* ============================================
   GRID SYSTEM
   ============================================ */
.argo-grid {
    display: grid;
    gap: var(--space-6);
}

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

/* ============================================
   STATS
   ============================================ */
.argo-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-4);
}

.argo-stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.argo-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.argo-stat-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.argo-stat-card:hover::before {
    opacity: 1;
}

.argo-stat-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--accent-primary);
}

.argo-stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.argo-stat-label {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-top: var(--space-1);
}

/* ============================================
   INFO BOX - OVAL STYLE
   ============================================ */
.argo-info-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.argo-info-box > i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.argo-info-box-content {
    flex: 1;
}

.argo-info-box-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.argo-info-box-text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin: 0;
}

/* ============================================
   DETAIL SECTION - OVAL STYLE
   ============================================ */
.argo-detail-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-6);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: relative;
}

.argo-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-devops);
}

.argo-detail-header {
    padding: var(--space-4) var(--space-5);
    border-bottom: 1px solid var(--border-default);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--bg-secondary);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.argo-detail-header i {
    color: var(--accent-primary);
}

.argo-detail-content {
    padding: var(--space-6);
}

/* ============================================
   FORMS - OVAL STYLE
   ============================================ */
.argo-form-group {
    margin-bottom: var(--space-5);
}

.argo-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.argo-form-input {
    width: 100%;
    padding: var(--space-3) var(--space-5);
    background: var(--bg-secondary);
    border: 2px solid var(--border-default);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
}

.argo-form-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    background: var(--bg-primary);
}

.argo-form-input::placeholder {
    color: var(--text-muted);
}

.argo-form-textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
    border-radius: var(--radius-xl);
}

/* ============================================
   CONTACT CARDS - OVAL STYLE
   ============================================ */
.argo-contact-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.argo-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-cloud);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.argo-contact-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.argo-contact-card:hover::before {
    opacity: 1;
}

.argo-contact-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--accent-primary);
    margin: 0 auto var(--space-5);
}

.argo-contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.argo-contact-text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin: var(--space-1) 0;
}

/* ============================================
   TEAM CARDS - OVAL STYLE
   ============================================ */
.argo-team-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.argo-team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-dev);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.argo-team-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.argo-team-card:hover::before {
    opacity: 1;
}

.argo-team-avatar {
    width: 120px;
    height: 120px;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent-primary);
    margin: 0 auto var(--space-5);
    border: 4px solid var(--bg-primary);
    box-shadow: var(--shadow-md);
}

.argo-team-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.argo-team-role {
    font-size: 1rem;
    color: var(--accent-primary);
    margin: var(--space-2) 0 var(--space-4);
    font-weight: 600;
}

.argo-team-bio {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ============================================
   VALUE CARDS - OVAL STYLE
   ============================================ */
.argo-value-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.argo-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.argo-value-card:hover {
    border-color: #3b82f6;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.argo-value-card:hover::before {
    opacity: 1;
}

.argo-value-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin: 0 auto var(--space-4);
}

.argo-value-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.argo-value-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ============================================
   BLOG CARDS - OVAL STYLE
   ============================================ */
.argo-blog-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: relative;
}

.argo-blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-devops);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.argo-blog-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.argo-blog-card:hover::before {
    opacity: 1;
}

.argo-blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.argo-blog-content {
    padding: var(--space-5);
}

.argo-blog-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.argo-blog-title a {
    color: inherit;
    transition: color var(--transition-fast);
}

.argo-blog-title a:hover {
    color: var(--accent-primary);
}

.argo-blog-excerpt {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.argo-blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-4);
    border-top: 1px solid var(--border-default);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.argo-blog-author, .argo-blog-date {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

/* ============================================
   FEATURE LIST
   ============================================ */
.argo-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.argo-feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

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

.argo-feature-item i {
    color: var(--success);
    font-size: 0.875rem;
    width: 20px;
    text-align: center;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.argo-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.875rem;
    margin-bottom: var(--space-4);
}

.argo-breadcrumb a {
    color: var(--accent-primary);
}

.argo-breadcrumb span {
    color: var(--text-muted);
}

.argo-breadcrumb-separator {
    color: var(--text-muted);
}

/* ============================================
   ALERTS / MESSAGES
   ============================================ */
.argo-messages {
    position: fixed;
    top: 88px;
    right: var(--space-6);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    max-width: 400px;
}

.argo-alert {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    animation: slideIn 0.3s ease;
}

.argo-alert-success { border-left: 4px solid var(--success); }
.argo-alert-success i { color: var(--success); }

.argo-alert-error { border-left: 4px solid var(--error); }
.argo-alert-error i { color: var(--error); }

.argo-alert-warning { border-left: 4px solid var(--warning); }
.argo-alert-warning i { color: var(--warning); }

.argo-alert-info { border-left: 4px solid var(--info); }
.argo-alert-info i { color: var(--info); }

.argo-alert span {
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.argo-alert-close {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: var(--space-1);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.argo-alert-close:hover {
    color: var(--text-primary);
    background: var(--bg-hover);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   FOOTER
   ============================================ */
.argo-footer {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: var(--space-8);
    text-align: center;
}

.argo-footer p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin: 0;
}

.argo-footer a {
    color: var(--accent-primary);
    font-weight: 600;
}

.argo-footer a:hover {
    color: var(--accent-primary-hover);
}

/* ============================================
   CODE
   ============================================ */
.argo-code {
    font-family: var(--font-mono);
    background: var(--bg-tertiary);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--accent-primary);
    border: 1px solid var(--border-default);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.mt-1 { margin-top: var(--space-2) !important; }
.mt-2 { margin-top: var(--space-4) !important; }
.mt-3 { margin-top: var(--space-6) !important; }
.mt-4 { margin-top: var(--space-12) !important; }
.mb-1 { margin-bottom: var(--space-2) !important; }
.mb-2 { margin-bottom: var(--space-4) !important; }
.mb-3 { margin-bottom: var(--space-6) !important; }
.mb-4 { margin-bottom: var(--space-12) !important; }

.text-primary { color: var(--text-primary) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-accent { color: var(--accent-primary) !important; }

/* ============================================
   BEAUTIFUL VISUAL EFFECTS
   ============================================ */

/* Gradient Text Effect */
.gradient-text {
    background: var(--gradient-devops);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.icon-bounce:hover {
    animation: bounce 0.6s ease;
}

/* Icon Pulse Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.icon-pulse:hover {
    animation: pulse 0.5s ease;
}

/* Shimmer Effect for Buttons */
.argo-btn-primary {
    position: relative;
    overflow: hidden;
}

.argo-btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.argo-btn-primary:hover::after {
    animation: shimmer 0.5s ease forwards;
}

@keyframes shimmer {
    0% { left: -50%; opacity: 1; }
    100% { left: 150%; opacity: 0; }
}

/* Card Icon Gradient Background */
.argo-stat-icon,
.argo-value-icon,
.argo-contact-icon {
    background: #f1f5f9;
    transition: all 0.3s ease;
}

.argo-stat-card:hover .argo-stat-icon,
.argo-value-card:hover .argo-value-icon,
.argo-contact-card:hover .argo-contact-icon {
    background: var(--gradient-devops);
    color: white;
    transform: scale(1.1);
}

/* Feature Card Icon Styling */
.feature-card div[style*="font-size: 2rem"] {
    transition: transform 0.3s ease;
}

.feature-card:hover div[style*="font-size: 2rem"] {
    transform: scale(1.2) rotate(5deg);
}

/* Beautiful Status Badges */
.status-badge {
    animation: fadeIn 0.5s ease;
}

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

/* Section Header Title Animation */
.argo-section-title i {
    transition: all 0.3s ease;
}

.argo-section-title:hover i {
    transform: rotate(10deg) scale(1.1);
    color: var(--accent-secondary);
}

/* Image Hover Effects */
.page-hero-image,
.section-image {
    transition: all 0.5s ease;
}

.page-hero-image:hover,
.section-image:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Info Box Glow Effect */
.argo-info-box {
    transition: all 0.3s ease;
}

.argo-info-box:hover {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
}

/* Beautiful Focus States */
.argo-form-input:focus,
.argo-form-textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

/* Staggered Animation for Cards */
.argo-grid > *:nth-child(1) { animation-delay: 0.1s; }
.argo-grid > *:nth-child(2) { animation-delay: 0.2s; }
.argo-grid > *:nth-child(3) { animation-delay: 0.3s; }
.argo-grid > *:nth-child(4) { animation-delay: 0.4s; }
.argo-grid > *:nth-child(5) { animation-delay: 0.5s; }
.argo-grid > *:nth-child(6) { animation-delay: 0.6s; }

.argo-stats > * {
    animation: slideUp 0.6s ease forwards;
    opacity: 0;
}

.argo-stats > *:nth-child(1) { animation-delay: 0.1s; }
.argo-stats > *:nth-child(2) { animation-delay: 0.2s; }
.argo-stats > *:nth-child(3) { animation-delay: 0.3s; }
.argo-stats > *:nth-child(4) { animation-delay: 0.4s; }

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .argo-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .argo-grid-3 { grid-template-columns: repeat(2, 1fr); }
    
    .section-with-image {
        grid-template-columns: 1fr;
    }
    
    .section-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .argo-nav-links {
        display: none;
    }
    
    .argo-mobile-toggle {
        display: flex;
    }
    
    .argo-hero {
        padding: var(--space-12) var(--space-4);
    }
    
    .argo-hero-icon {
        font-size: 3rem;
    }
    
    .argo-hero-text h1 {
        font-size: 2rem;
    }
    
    .argo-hero-text p {
        font-size: 1rem;
    }
    
    .argo-grid-2,
    .argo-grid-3,
    .argo-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .argo-section {
        padding: var(--space-8) 0;
    }
    
    .argo-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .argo-info-box {
        flex-direction: column;
        text-align: center;
    }
    
    .argo-messages {
        left: var(--space-4);
        right: var(--space-4);
        max-width: none;
    }
    
    .page-hero-image {
        height: 200px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .argo-navbar {
        padding: 0 var(--space-4);
        height: 64px;
    }
    
    .argo-container {
        padding: 0 var(--space-4);
    }
    
    .argo-hero-text h1 {
        font-size: 1.75rem;
    }
    
    .argo-btn-lg {
        padding: var(--space-3) var(--space-5);
        font-size: 0.9375rem;
    }
    
    .argo-detail-content {
        padding: var(--space-4);
    }
}
