/* Clean, professional theme for GetApply */

/* Base styles */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --text-dark: #212529;
    --text-secondary: #6c757d;
    --text-muted: #868e96;
    --bg-light: #f8f9fa;
    --border-color: #dee2e6;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
    background-color: #ffffff;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.display-3 {
    font-weight: 700;
    line-height: 1.1;
}

.display-5 {
    font-weight: 600;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-secondary);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-item h2 {
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Package cards */
.package-card {
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    background-color: white;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border-color: var(--primary-color);
    position: relative;
}

.package-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), #0056b3);
    border-radius: 12px;
    z-index: -1;
}

.package-header {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.package-count {
    margin: 1rem 0;
}

.package-count .display-6 {
    font-weight: 700;
    color: var(--primary-color);
}

.card-header {
    border-radius: 12px 12px 0 0 !important;
    border-bottom: none;
    padding: 0.75rem 1rem;
}

/* Steps section */
.step-item {
    padding: 1rem;
}

.step-number {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.step-number .badge {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Features section */
.feature-item {
    padding: 2rem 1rem;
}

.feature-icon {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact section */
.contact-feature {
    padding: 1.5rem;
}

.contact-feature i {
    margin-bottom: 1rem;
}

/* Forms */
.form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-label {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

/* Lists */
.list-unstyled li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.list-unstyled li i {
    width: 20px;
    text-align: center;
}

/* Text colors */
.text-primary {
    color: var(--primary-color) !important;
}

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

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

.text-dark {
    color: var(--text-dark) !important;
}

.text-success {
    color: var(--success-color) !important;
}

/* Footer */
footer {
    background-color: var(--bg-light) !important;
    border-top: 1px solid var(--border-color) !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 3rem;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .stat-item,
    .step-item,
    .feature-item {
        padding: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 80px;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
    }
    
    .package-card {
        margin-bottom: 2rem;
    }
}

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

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

/* Scroll behavior */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Utility classes */
.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.border {
    border: 1px solid var(--border-color) !important;
}

.border-top {
    border-top: 1px solid var(--border-color) !important;
}

/* Custom spacing */
.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

/* Ensure proper contrast for accessibility */
.badge.bg-warning {
    color: #000 !important;
}

/* Clean focus states */
*:focus {
    outline: none;
}

.btn:focus,
.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* New Pricing Boxes */
.pricing-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    position: relative;
    border: 1px solid #e0e0e0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-box.featured {
    border: 2px solid #007bff;
    box-shadow: 0 5px 20px rgba(0,123,255,0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffc107;
    color: #000;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: bold;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.price-value {
    margin-bottom: 20px;
}

.price-value .amount {
    font-size: 3rem;
    font-weight: bold;
    color: #007bff;
    display: block;
}

.price-value .period {
    color: #666;
    font-size: 1rem;
}

.pricing-body {
    flex: 1;
}

.pricing-body .description {
    color: #666;
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.features-list li {
    padding: 8px 0;
    color: #555;
}

.check-icon {
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
}

.pricing-footer {
    margin-top: auto;
}

.pricing-note {
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.pricing-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 30px;
    background: white;
    color: #007bff;
    border: 2px solid #007bff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}

.pricing-btn:hover {
    background: #007bff;
    color: white;
}

.pricing-btn-featured {
    background: #007bff;
    color: white;
}

.pricing-btn-featured:hover {
    background: #0056b3;
    color: white;
    border-color: #0056b3;
}

