:root {
    --colombian-navy: #071a40;
    --colombian-navy-light: #0f2f75;
    --colombian-red: #c41e3a;
    --colombian-gold: #f1c40f;
    --colombian-blue: #2563eb;
    --primary-color: #071a40;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --warning-color: #f1c40f;
    --danger-color: #ef4444;
    --accent-color: #2563eb;
    --surface: #ffffff;
    --surface-elevated: #f8fafc;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    padding-top: 80px;
    background-color: var(--surface);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.main-content {
    min-height: 100vh;
}

/* ========== NAVBAR PREMIUM ========== */
.navbar-premium {
    background: rgba(7, 26, 64, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.navbar-premium.scrolled {
    background: rgba(7, 26, 64, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar-brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: white;
}

.navbar-brand-text span {
    color: var(--colombian-gold);
}

.btn-nav-cta {
    background: linear-gradient(135deg, var(--colombian-gold) 0%, #eab308 100%);
    color: var(--colombian-navy);
    border: none;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(241, 196, 15, 0.35);
    transition: all 0.3s ease;
}

.btn-nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(241, 196, 15, 0.45);
    color: var(--colombian-navy);
}

/* ========== PAGE HEADER ========== */
.page-header {
    padding: 60px 0 40px;
    position: relative;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
}

/* ========== HERO SECTION ========== */
.hero-section {
    background: linear-gradient(135deg, #071a40 0%, #0f2f75 40%, #1e40af 70%, #2563eb 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(241, 196, 15, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--colombian-gold) 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    max-width: 540px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-top: 2.5rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--colombian-gold) 0%, #eab308 100%);
    color: var(--colombian-navy);
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(241, 196, 15, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(241, 196, 15, 0.5);
    color: var(--colombian-navy);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    transform: translateY(-2px);
}

.hero-illustration {
    position: relative;
    z-index: 2;
}

.hero-visual {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--colombian-gold);
}

/* Floating particles */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 1; }
}

/* ========== STATS SECTION ========== */
.stats-section {
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--colombian-navy), var(--colombian-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.stat-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 28px;
}

.stat-icon-wrapper.primary {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: var(--colombian-blue);
}

.stat-icon-wrapper.success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: var(--success-color);
}

.stat-icon-wrapper.warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
}

.stat-icon-wrapper.info {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #4f46e5;
}

.stat-icon-wrapper.danger {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: var(--danger-color);
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.stat-trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

.stat-trend.up {
    background: #d1fae5;
    color: #059669;
}

.stat-trend.neutral {
    background: #f1f5f9;
    color: #64748b;
}

/* ========== SECTION STYLES ========== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    color: var(--colombian-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== MISSION/VISION ========== */
.mission-card {
    background: linear-gradient(135deg, #071a40 0%, #0f2f75 100%);
    color: white;
    border-radius: var(--radius-xl);
    padding: 3rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(241, 196, 15, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mission-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

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

.principle-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.principle-item:hover {
    border-color: var(--colombian-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.principle-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    color: var(--colombian-blue);
    flex-shrink: 0;
}

/* ========== TIMELINE ========== */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--colombian-blue) 0%, var(--colombian-gold) 100%);
    transform: translateX(-50%);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

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

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: calc(50% - 40px);
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--colombian-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.timeline-step {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--colombian-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.timeline-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ========== FORM PREMIUM ========== */
.form-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}

.step-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--border);
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.step-indicator.active {
    background: linear-gradient(135deg, var(--colombian-navy) 0%, var(--colombian-blue) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(7, 26, 64, 0.3);
}

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

/* ========== SECTOR SELECTION ========== */
.sector-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
}

.sector-card:hover {
    border-color: var(--colombian-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.sector-card.selected {
    border-color: var(--colombian-blue);
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.sector-card.selected .check-icon {
    display: inline-block !important;
}

.sector-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    color: var(--colombian-blue);
    font-size: 20px;
    flex-shrink: 0;
}

.sector-card.selected .sector-icon {
    background: linear-gradient(135deg, var(--colombian-blue) 0%, #1e40af 100%);
    color: white;
}

/* ========== FLAG ACCENT ========== */
.flag-accent {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #071a40 33%, #c41e3a 33%, #c41e3a 66%, #f1c40f 66%);
}

/* ========== PROBLEMA CARDS (Step 2) ========== */
.problemas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.problema-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.problema-card:hover {
    border-color: var(--colombian-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.problema-card.selected {
    border-color: var(--colombian-blue);
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.problema-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: var(--danger-color);
    font-size: 20px;
    margin: 0 auto 0.75rem;
}

.problema-card.selected .problema-icon {
    background: linear-gradient(135deg, var(--colombian-blue) 0%, #1e40af 100%);
    color: white;
}

.problema-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.problema-custom {
    border-style: dashed;
    border-color: var(--text-muted);
}

.problema-custom:hover {
    border-color: var(--colombian-blue);
    border-style: solid;
}

/* ========== SECTOR PRIORIDAD (Step 3) ========== */
.sector-prioridad-section {
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.sector-prioridad-section.expanded {
    border-color: var(--colombian-blue);
    box-shadow: var(--shadow-md);
}

.sector-prioridad-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    cursor: pointer;
    background: white;
    transition: background 0.3s ease;
}

.sector-prioridad-header:hover {
    background: var(--surface-elevated);
}

.sector-prioridad-body {
    padding: 0 1.25rem 1.25rem;
    background: white;
    display: none;
}

.sector-prioridad-section.expanded .sector-prioridad-body {
    display: block;
}

.sector-prioridad-section.expanded .toggle-icon {
    transform: rotate(180deg);
}

.toggle-icon {
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.problemas-prioridad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.problema-prioridad-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.problema-prioridad-card:hover {
    border-color: var(--colombian-blue);
    background: var(--surface-elevated);
}

.problema-prioridad-card.selected {
    border-color: var(--success-color);
    background: linear-gradient(135deg, #d1fae5 0%, #ecfdf5 100%);
}

.problema-prioridad-card.selected .check-icon {
    display: inline-block !important;
    color: var(--success-color) !important;
}

.problema-prioridad-card.custom-problema {
    border-style: dashed;
    color: var(--text-secondary);
}

.problema-prioridad-card.custom-problema:hover {
    border-color: var(--colombian-blue);
    color: var(--colombian-blue);
    border-style: solid;
}

.custom-prioridad-input .form-control {
    border-color: var(--colombian-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ========== FORM STEP ANIMATIONS ========== */
.form-step {
    animation: fadeInUp 0.3s ease-out;
}

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

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

/* ========== FOOTER INSTITUCIONAL ========== */
.footer-premium {
    background: linear-gradient(180deg, #071a40 0%, #041025 100%);
    color: white;
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(241, 196, 15, 0.5), transparent);
}

.footer-brand {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.footer-brand span {
    color: var(--colombian-gold);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--colombian-gold);
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--colombian-gold);
    transform: translateX(4px);
}

.footer-contact {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact a {
    color: var(--colombian-gold);
    text-decoration: none;
}

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

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

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

.animate-scale-in {
    animation: scaleIn 0.5s ease-out forwards;
}

/* Confetti */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    animation: confetti-fall 3s ease-out forwards;
}

@keyframes confetti-fall {
    0% { transform: translateY(-100vh) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-content {
        width: calc(100% - 70px);
        margin-left: 70px;
    }
    
    .timeline-dot {
        left: 30px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .hero-section {
        padding: 60px 0 40px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-value {
        font-size: 2.25rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ========== UTILITY CLASSES ========== */
.bg-gradient-navy {
    background: linear-gradient(135deg, #071a40 0%, #0f2f75 100%);
}

.text-gradient {
    background: linear-gradient(135deg, var(--colombian-gold) 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
