/* Get Started Page Styles */
.hover-shadow {
    transition: all 0.3s ease;
}

.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}

.transition-all {
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Wave Animation */
.wave-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-animation {
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(0); }
    50% { transform: translateX(-25%); }
    100% { transform: translateX(0); }
}

/* Form Card */
.form-card {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
.form-outline {
    position: relative;
    margin-bottom: 1rem;
}

.form-outline .form-control {
    min-height: 58px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background-color: #fff;
    transition: all 0.2s ease-in-out;
}

.form-outline .form-control:focus {
    border-color: #4e73df;
    box-shadow: 0 0 0 0.25rem rgba(78, 115, 223, 0.1);
    outline: none;
}

.form-outline .form-label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    background-color: transparent;
    padding: 0 0.25rem;
    color: #6c757d;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
    pointer-events: none;
    margin: 0;
}

.form-outline .form-control:focus ~ .form-label,
.form-outline .form-control:not(:placeholder-shown) ~ .form-label {
    top: 0;
    transform: translateY(-50%) scale(0.85);
    background-color: white;
    color: #4e73df;
    font-weight: 500;
}

/* Textarea specific styles */
.form-outline textarea.form-control {
    min-height: 120px;
    padding-top: 1.25rem;
}

.form-outline textarea.form-control ~ .form-label {
    top: 1.25rem;
    transform: none;
}

.form-outline textarea.form-control:focus ~ .form-label,
.form-outline textarea.form-control:not(:placeholder-shown) ~ .form-label {
    top: 0;
    transform: translateY(-50%) scale(0.85);
}

/* Select specific styles */
.form-select {
    min-height: 58px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background-color: #fff;
    transition: all 0.2s ease-in-out;
    color: #6c757d;
}

.form-select:focus {
    border-color: #4e73df;
    box-shadow: 0 0 0 0.25rem rgba(78, 115, 223, 0.1);
    outline: none;
    color: #495057;
}

.form-select:not([value=""]):valid {
    color: #495057;
}

/* Form card styles */
.form-card {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Submit button styles */
.btn-primary {
    padding: 0.75rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(78, 115, 223, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-outline .form-control,
    .form-select {
        min-height: 52px;
        padding: 0.625rem 0.875rem;
    }
    
    .form-outline .form-label {
        font-size: 0.95rem;
    }
    
    .btn-primary {
        padding: 0.625rem 1.5rem;
    }
}

/* Process Section */
.process-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.process-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-icon {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    color: white;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Form Container */
.form-container {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12);
}
