:root {
    --primary-color: #61499d;
    /* Purple */
    --secondary-color: #f8f9fa;
    /* Light Grey/White for background */
    --accent-color: #6fcbe0;
    /* Light Blue */
    --text-dark: #2c3e50;
    --text-light: #8c9091;
    /* Grey */
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-soft: 0 10px 40px rgba(97, 73, 157, 0.1);
    --shadow-hover: 0 20px 50px rgba(97, 73, 157, 0.2);
    --radius-lg: 20px;
    --radius-md: 12px;
    --font-main: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-main);
    background-color: var(--secondary-color);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

/* Antigravity Utilities */
.antigravity-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.antigravity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

.btn-primary-soft {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(97, 73, 157, 0.3);
    transition: all 0.3s ease;
}

.btn-primary-soft:hover {
    background-color: #4e3a7d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(97, 73, 157, 0.4);
    color: white;
}

.form-control-clean {
    border: 2px solid #eef2f7;
    border-radius: var(--radius-md);
    padding: 12px 15px;
    background-color: #fdfdfd;
    transition: all 0.3s ease;
}

.form-control-clean:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(97, 73, 157, 0.1);
    background-color: var(--white);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    letter-spacing: -0.5px;
}

.text-muted-soft {
    color: var(--text-light);
}

/* Navbar */
.navbar-antigravity {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #fdfbfd 0%, #e6e9f0 100%);
    overflow: hidden;
}

.hero-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
}

/* Steps */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
    transform: translateY(-50%);
}

.step-item {
    position: relative;
    z-index: 1;
    background: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e0e0e0;
    color: #e0e0e0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-item.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 0 0 5px rgba(97, 73, 157, 0.2);
}

.step-item.completed {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--white);
}