/* Phase Homes Application Form Styles */

/* CSS Variables for Phase Homes Brand Theme */
:root {
    /* Phase Homes Brand Colors */
    --phase-primary: #BBBF45;
    --phase-primary-dark: #a2a53d;
    --phase-primary-light: #d4d6a3;
    --phase-secondary: #73645c;
    --phase-secondary-light: #a99a93;

    /* Primary Colors */
    --primary-color: var(--phase-primary);
    --primary-dark: var(--phase-primary-dark);
    --primary-light: var(--phase-primary-light);
    --secondary-color: var(--phase-secondary);
    --secondary-light: var(--phase-secondary-light);

    /* Status Colors */
    --success-color: #22C55E;
    --error-color: #EF4444;
    --warning-color: #F59E0B;
    --info-color: #3B82F6;

    /* Background & Surface Colors */
    --background-color: #F8FAFC;
    --background-secondary: #F1F5F9;
    --surface-color: #FFFFFF;
    --surface-elevated: #F9FAFB;

    /* Text Colors */
    --text-primary: #1e293b;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --text-on-primary: #FFFFFF;

    /* Border Colors */
    --border-color: #E2E8F0;
    --border-light: #F1F5F9;
    --border-focus: var(--modern-blue);
    --border-error: var(--error-color);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.04);
    --shadow-md: 0 4px 8px -2px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.06);
    --shadow-lg: 0 10px 20px -5px rgb(0 0 0 / 0.10), 0 4px 8px -4px rgb(0 0 0 / 0.08);
    --shadow-xl: 0 20px 40px -10px rgb(0 0 0 / 0.12), 0 10px 20px -10px rgb(0 0 0 / 0.10);

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    --radius-xl: 2rem;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.95rem;
    --font-size-base: 1.08rem;
    --font-size-lg: 1.22rem;
    --font-size-xl: 1.4rem;
    --font-size-2xl: 1.7rem;
    --font-size-3xl: 2.1rem;

    /* Spacing */
    --spacing-xs: 0.3rem;
    --spacing-sm: 0.7rem;
    --spacing-md: 1.2rem;
    --spacing-lg: 2rem;
    --spacing-xl: 2.7rem;
    --spacing-2xl: 4rem;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFC 100%);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.header {
    background: #FFFFFF;
    border-bottom: 1px solid #F3F4F6;
    padding: var(--spacing-xl) 0;
    margin-bottom: var(--spacing-xl);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    text-align: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    justify-content: center;
}

.logo-section.center-header {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    text-align: center;
}

.logo-section .logo {
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-on-primary);
    font-weight: 700;
    font-size: var(--font-size-lg);
    box-shadow: var(--shadow-md);
}

.logo-section .brand-text h1 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.025em;
    text-align: center;
}

.logo-section .brand-text .tagline {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.subtitle {
    font-size: var(--font-size-lg);
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: var(--spacing-sm);
    text-align: center;
}

/* Progress Bar */
.progress-container {
    margin-top: var(--spacing-xl);
    background: #FFFFFF;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 60%, var(--secondary-color) 100%);
    border-radius: var(--radius-lg);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 16.67%; /* Start at step 1 */
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.18);
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-indicator {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--border-light);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid var(--border-color);
}

.step-indicator.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-on-primary);
    transform: scale(1.13);
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.18);
}

.step-indicator.completed {
    background: linear-gradient(135deg, var(--success-color), #16A34A);
    color: var(--text-on-primary);
    border-color: var(--success-color);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.18);
}

.step-indicator.completed::after {
    content: '✓';
    font-size: var(--font-size-sm);
    font-weight: 700;
}

/* Main Content */
.main-content {
    flex: 1;
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: var(--spacing-xl);
    border: 1px solid #F3F4F6;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.form-step.active {
    display: block;
}

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

@keyframes shake {
    0% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
    100% { transform: translateX(0); }
}

@keyframes errorFadeIn {
    from { background: transparent; }
    to { background: rgba(239, 68, 68, 0.08); }
}

.step-header {
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 3px solid var(--primary-color);
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ef 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    margin: 0 calc(-1 * var(--spacing-xl)) var(--spacing-2xl) calc(-1 * var(--spacing-xl));
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.07);
}

.step-header h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.025em;
}

.step-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    font-weight: 500;
}

/* Form Sections */
.form-section {
    margin-bottom: var(--spacing-2xl);
    padding: var(--spacing-xl);
    border: 1px solid #F3F4F6;
    border-radius: var(--radius-lg);
    background: #FFFFFF;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.form-section:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-color: #E5E7EB;
}

.form-section h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.form-section h3::before {
    content: '';
    width: 6px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-sm);
}

.section-note {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, #FAFBFC 0%, #F3F4F6 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
    border: 1px solid #E5E7EB;
}

/* Form Groups and Rows */
.form-group {
    margin-bottom: var(--spacing-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

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

/* Labels */
label {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-lg);
    letter-spacing: 0.025em;
    opacity: 1 !important;
    transition: color 0.2s;
}

label.required::after {
    content: ' *';
    color: var(--error-color);
    font-weight: 700;
}

/* Input Styles - Force Light Mode Always */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-family: var(--font-family);
    background-color: #FFFFFF !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #1e293b !important;
    font-weight: 500;
}

/* Ensure input text is always visible */
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="date"]::placeholder,
input[type="number"]::placeholder,
textarea::placeholder {
    color: var(--text-muted) !important;
    opacity: 0.7;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 4px rgba(187, 191, 69, 0.1);
    background-color: #FFFFFF !important;
    transform: translateY(-1px);
    color: #1e293b !important;
}

input:hover:not(:focus):not(:read-only),
select:hover:not(:focus),
textarea:hover:not(:focus) {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

input:read-only {
    background: linear-gradient(135deg, var(--background-secondary) 0%, #F3F4F6 100%);
    color: var(--text-muted);
    cursor: not-allowed;
    border-color: var(--border-light);
}

textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

/* Radio Button Styles */
.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
    margin-bottom: 0;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    margin-right: var(--spacing-sm);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--surface-color);
}

.radio-label:hover .radio-custom {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(164, 184, 47, 0.1);
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    box-shadow: 0 2px 8px rgba(164, 184, 47, 0.3);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--text-on-primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Checkbox Styles */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 400;
    margin-bottom: 0;
    gap: 0.75rem;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-top: 2px;
    background: var(--surface-color);
}

.checkbox-label:hover .checkbox-custom {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(164, 184, 47, 0.1);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    box-shadow: 0 2px 8px rgba(164, 184, 47, 0.3);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: var(--text-on-primary);
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Error Messages */
.error-message {
    color: var(--error-color);
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 600;
    background: rgba(239, 68, 68, 0.08);
    border-left: 4px solid var(--error-color);
    padding: 0.5rem 1rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    display: none;
    transition: background 0.3s, border-color 0.3s;
    animation: errorFadeIn 0.4s;
}

.error-message.show {
    display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--error-color);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.18);
    background: #fff0f1;
    animation: shake 0.25s;
}

/* Add Entry Buttons */
.add-entry-btn {
    background: var(--surface-color);
    border: 2px dashed var(--border-color);
    color: var(--primary-color);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    margin-top: 1rem;
}

.add-entry-btn:hover {
    border-color: var(--primary-color);
    background-color: #f0f9ff;
}

/* Dynamic Entry Styles */
.education-entry,
.membership-entry,
.training-entry,
.previous-employment-entry,
.voluntary-work-entry,
.disciplinary-entry {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    background: var(--surface-color);
    position: relative;
}

.education-entry:not(:first-child),
.membership-entry:not(:first-child),
.training-entry:not(:first-child),
.previous-employment-entry:not(:first-child),
.voluntary-work-entry:not(:first-child),
.disciplinary-entry:not(:first-child) {
    border-top: 2px solid var(--primary-color);
}

/* Reference Entries */
.references-container {
    display: grid;
    gap: 2rem;
}

.reference-entry {
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--surface-color);
}

.reference-entry h4 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

/* Legal and Info Boxes */
.legal-notice,
.info-box,
.declaration-text,
.final-notice {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.legal-notice {
    background: #fef2f2;
    border-color: #fca5a5;
}

.info-box {
    background: #eff6ff;
    border-color: #93c5fd;
}

.legal-notice p,
.info-box p,
.declaration-text p,
.final-notice p {
    margin-bottom: 0.5rem;
}

.legal-notice p:last-child,
.info-box p:last-child,
.declaration-text p:last-child,
.final-notice p:last-child {
    margin-bottom: 0;
}

.final-notice ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.final-notice li {
    margin-bottom: 0.25rem;
}

/* Word Count and Character Count */
.word-count,
.character-count {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: right;
    margin-top: 0.25rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Navigation Buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.nav-btn {
    padding: var(--spacing-lg) var(--spacing-2xl);
    border: none;
    border-radius: var(--radius-xl);
    font-size: var(--font-size-xl);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 160px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.10);
}

.prev-btn {
    background: var(--surface-color);
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.prev-btn:hover:not(:disabled) {
    background: var(--background-secondary);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.next-btn,
.submit-btn {
    background: linear-gradient(90deg, var(--primary-color) 60%, var(--secondary-color) 100%);
    color: var(--text-on-primary);
    border: none;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.18);
}

.next-btn:hover:not(:disabled),
.submit-btn:hover:not(:disabled) {
    background: linear-gradient(90deg, var(--primary-dark) 60%, var(--secondary-color) 100%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.22);
    filter: brightness(1.08);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.nav-btn:hover::before {
    left: 100%;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-overlay p {
    color: white;
    font-size: 1.125rem;
    font-weight: 500;
}

/* Footer */
.footer {
    text-align: center;
    padding: var(--spacing-2xl) 0;
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    border-top: 1px solid var(--border-light);
    margin-top: auto;
    background: #FFFFFF;
    font-weight: 500;
}

.footer::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    margin: 0 auto var(--spacing-md) auto;
    border-radius: var(--radius-sm);
}

/* Confirmation Page Styles */
.confirmation-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.success-icon {
    margin-bottom: 2rem;
}

.confirmation-container h2 {
    font-size: 2rem;
    color: var(--success-color);
    margin-bottom: 2rem;
}

.confirmation-message {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.reference-info {
    background: var(--background-color);
    border: 2px solid var(--success-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.reference-info h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.reference-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-color);
    font-family: 'Courier New', monospace;
    margin-bottom: 0.5rem;
}

.reference-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.next-steps,
.important-notes,
.contact-details {
    text-align: left;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.next-steps h3,
.important-notes h3,
.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.next-steps ul {
    margin-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.info-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.info-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.info-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

.contact-info p {
    margin-bottom: 0.25rem;
    color: var(--text-secondary);
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--surface-color);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--background-color);
    border-color: var(--text-secondary);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.hidden { display: none; }
.visible { display: block; }