/* Request Page Styles */
.request-main {
    min-height: 100vh;
    background: white;
    padding: 0;
    margin-top: 80px;
}

/* Ensure nav title uses correct font on request page */
.nav-title {
    font-family: 'Insaniburger', 'Futura', 'Trebuchet MS', 'Impact', 'Arial Black', 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 1.75rem !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
}

/* OAuth Sign-In Styles */
.oauth-section {
    margin-bottom: 2rem;
}

.oauth-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.oauth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: #4a5568;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.oauth-btn:hover {
    border-color: #cbd5e0;
    background: #f7fafc;
    transform: translateY(-1px);
}

.oauth-btn:active {
    transform: translateY(0);
}

.google-btn:hover {
    border-color: #4285F4;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.2);
}

.apple-btn {
    background: #000;
    color: white;
    border-color: #000;
}

.apple-btn:hover {
    background: #333;
    border-color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.oauth-icon {
    flex-shrink: 0;
}

.oauth-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.oauth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.divider-text {
    background: white;
    padding: 0 1rem;
    color: #718096;
    font-size: 0.875rem;
    position: relative;
}

/* Loading state for OAuth buttons */
.oauth-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.oauth-btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive OAuth buttons */
@media (max-width: 768px) {
    .oauth-btn {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .oauth-buttons {
        gap: 0.75rem;
    }
}

/* Email Verification Styles */
.verification-message {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    margin: 1rem 0;
}

.verification-message p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.verification-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0 1rem 0;
    flex-wrap: wrap;
}

.verification-actions .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 1rem;
}

.verification-actions .btn-secondary {
    background: #6c757d;
    color: white;
}

.verification-actions .btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

.verification-actions .btn-secondary:disabled {
    background: #28a745;
    cursor: not-allowed;
}

.verification-actions .btn-outline {
    background: transparent;
    color: #6c757d;
    border: 2px solid #6c757d;
}

.verification-actions .btn-outline:hover {
    background: #6c757d;
    color: white;
    transform: translateY(-1px);
}

.verification-help {
    background: #e9ecef;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.verification-help small {
    color: #6c757d;
    font-size: 0.875rem;
}

/* Responsive verification */
@media (max-width: 768px) {
    .verification-message {
        padding: 1.5rem;
    }
    
    .verification-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .verification-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Social Login Styles */
.social-login-section {
    margin-bottom: 2rem;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid #e5e7eb;
}

.btn-google {
    background: white;
    color: #374151;
    border-color: #d1d5db;
}

.btn-google:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-apple {
    background: #000;
    color: white;
    border-color: #000;
}

.btn-apple:hover {
    background: #1f1f1f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.divider-text {
    background: white;
    color: #6b7280;
    padding: 0 1rem;
    font-size: 0.875rem;
    position: relative;
}

/* Responsive social buttons */
@media (min-width: 640px) {
    .social-buttons {
        flex-direction: row;
    }
    
    .btn-social {
        flex: 1;
    }
}

.nav-title .kick {
    color: #48B1FF !important;
}

.nav-title .back {
    color: #186BC6 !important;
}

/* Form Progress Bar */
.form-progress-container {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 80px;
    z-index: 10;
}

.form-progress-bar {
    max-width: 800px;
    margin: 0 auto;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.form-progress-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    border-radius: 4px;
    width: 0%;
    transition: width 0.5s ease;
    position: relative;
    overflow: hidden;
}

.form-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s infinite;
}

.form-progress-text {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.request-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    position: relative;
}

.request-header {
    text-align: center;
    margin-bottom: 3rem;
}

.request-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.request-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Form Styles */
.request-form {
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

/* Field Completion Feedback */
.form-input.completed,
.form-textarea.completed,
.form-select.completed {
    border: 2px solid #28a745 !important;
    background: rgba(40, 167, 69, 0.08) !important;
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.15), 0 4px 12px rgba(40, 167, 69, 0.1) !important;
    transition: all 0.3s ease !important;
}

/* Social auto-filled field styles */
.form-input.social-filled {
    border: 2px solid #10b981 !important;
    background: rgba(16, 185, 129, 0.08) !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15), 0 4px 12px rgba(16, 185, 129, 0.1) !important;
    transition: all 0.3s ease !important;
}

.form-input.social-filled::placeholder {
    color: #059669;
    opacity: 0.8;
}

.form-input.social-filled:focus {
    border-color: #10b981 !important;
    background-color: rgba(16, 185, 129, 0.12) !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2), 0 4px 12px rgba(16, 185, 129, 0.15) !important;
}

/* Day Selection Completion Feedback */
.availability-section.completed {
    background: rgba(40, 167, 69, 0.08) !important;
    border: 2px solid #28a745 !important;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease !important;
}

.availability-section.completed .availability-title,
.availability-section.completed .form-label {
    color: #28a745 !important;
    font-weight: 600 !important;
}

.day-toggles.completed {
    background: rgba(40, 167, 69, 0.08) !important;
    border: 2px solid #28a745 !important;
    border-radius: var(--radius-lg);
    padding: 1rem;
    transition: all 0.3s ease !important;
}

/* Date Selection Completion Feedback */
.date-selection-section.completed {
    background: rgba(40, 167, 69, 0.08) !important;
    border: 2px solid #28a745 !important;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease !important;
}

.date-selection-section.completed .form-label {
    color: #28a745 !important;
    font-weight: 600 !important;
}

.form-input.completed:focus,
.form-textarea.completed:focus,
.form-select.completed:focus {
    border-color: #20c997 !important;
    background: rgba(32, 201, 151, 0.08) !important;
    box-shadow: 0 0 0 4px rgba(32, 201, 151, 0.2), 0 4px 16px rgba(32, 201, 151, 0.15) !important;
}

.form-group.completed {
    background: rgba(40, 167, 69, 0.03);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    margin: 0.5rem 0;
    border: 1px solid rgba(40, 167, 69, 0.2);
    transition: all 0.3s ease;
}

.form-group.completed::after {
    content: '✓';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #28a745;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    animation: checkmarkPop 0.3s ease;
    z-index: 10;
}

.form-group {
    position: relative;
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.form-section {
    padding: 3rem;
    display: none;
    animation: fadeInSlide 0.5s ease-out;
}

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

.section-title {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: var(--font-secondary);
    background: white;
    color: #333;
    transition: all var(--transition-medium);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(72, 177, 255, 0.1);
    transform: translateY(-1px);
}

.form-input[readonly] {
    background: #f8f9fa;
    color: var(--primary-dark);
    font-weight: 600;
    cursor: default;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-select {
    cursor: pointer;
}

/* Checkbox Styles */
.checkbox-group {
    position: relative;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    background: white;
    transition: all var(--transition-medium);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-light);
    border-color: var(--primary-light);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 12px;
}

.checkbox-label a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Buttons */
.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.btn-next,
.btn-submit,
.btn-back,
.btn-primary,
.btn-secondary {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-secondary);
}

/* Animated Get Help Now Button */
.btn-get-help {
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transform: translateY(0) rotate(0deg);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    font-family: var(--font-secondary);
    animation: buttonPulse 4s ease-in-out infinite;
    transform-origin: center;
}

.btn-get-help:hover {
    transform: translateY(-4px) rotate(-1deg) scale(1.02);
    box-shadow: 0 16px 40px rgba(40, 167, 69, 0.5);
    background: linear-gradient(135deg, #218838 0%, #1dd1a1 100%);
    animation: buttonHoverPulse 0.8s ease-in-out infinite;
}

.btn-get-help:active {
    transform: translateY(0) rotate(0deg) scale(0.98);
    transition: all 0.1s ease;
}

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

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

.btn-get-help::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(32, 201, 151, 0.3) 0%, rgba(0, 150, 136, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: greenFlash 3s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes greenFlash {
    0%, 85%, 100% {
        opacity: 0;
    }
    87% {
        opacity: 0.6;
    }
    92% {
        opacity: 0.3;
    }
    97% {
        opacity: 0;
    }
}

.rocket-icon {
    font-size: 1.5rem;
    animation: rocketWiggle 3s ease-in-out infinite;
    transform-origin: center;
}

.btn-text {
    font-weight: 700;
}

@keyframes buttonPulse {
    0%, 70%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    }
    5% {
        transform: translateY(-3px) rotate(-0.5deg) scale(1.01);
        box-shadow: 0 12px 30px rgba(40, 167, 69, 0.4);
    }
    10% {
        transform: translateY(-1px) rotate(0.3deg) scale(1.005);
        box-shadow: 0 10px 28px rgba(40, 167, 69, 0.35);
    }
    15% {
        transform: translateY(-2px) rotate(-0.2deg) scale(1.008);
        box-shadow: 0 11px 29px rgba(40, 167, 69, 0.38);
    }
    20% {
        transform: translateY(0) rotate(0deg) scale(1);
        box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    }
}

@keyframes buttonHoverPulse {
    0%, 100% {
        transform: translateY(-4px) rotate(-1deg) scale(1.02);
    }
    50% {
        transform: translateY(-6px) rotate(-1.5deg) scale(1.03);
    }
}

@keyframes rocketWiggle {
    0%, 90%, 100% {
        transform: scale(1) rotate(0deg);
    }
    3% {
        transform: scale(1.2) rotate(-8deg);
    }
    6% {
        transform: scale(1.1) rotate(8deg);
    }
    9% {
        transform: scale(1.15) rotate(-5deg);
    }
    12% {
        transform: scale(1) rotate(0deg);
    }
}

.btn-next,
.btn-submit,
.btn-primary {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    color: white;
    flex: 1;
}

.btn-next:hover,
.btn-submit:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 177, 255, 0.3);
}

.btn-back,
.btn-secondary {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e9ecef;
}

.btn-back:hover,
.btn-secondary:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.btn-submit {
    position: relative;
    overflow: hidden;
}

.btn-submit::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;
}

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


/* Success Section */
.success-section {
    text-align: center;
    padding: 4rem 3rem;
}

.success-content {
    max-width: 500px;
    margin: 0 auto;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: bounceIn 0.8s ease-out;
}

.success-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    color: #28a745;
    margin-bottom: 1rem;
}

.success-message {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Loading States */
.btn-submit.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-submit.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

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

/* New Form Component Styles */
.smart-textarea {
    min-height: 120px;
    resize: vertical;
}

.character-count {
    text-align: right;
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.25rem;
}

.character-count.warning {
    color: #f39c12;
}

.character-count.danger {
    color: #e74c3c;
}



.ai-processing {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(142, 68, 173, 0.1);
    border-radius: var(--radius-lg);
    margin: 1rem 0;
    color: #8e44ad;
    font-weight: 500;
}

.processing-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(142, 68, 173, 0.3);
    border-top: 3px solid #8e44ad;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Location Input */
.location-input-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.location-input-wrapper .form-input {
    flex: 1;
}

.location-btn {
    padding: 0.875rem 1rem;
    background: var(--primary-light);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

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

.location-icon {
    font-size: 1rem;
}

.form-help {
    color: #666;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: block;
}

/* Payment Input */
.payment-input-wrapper {
    position: relative;
}

.currency-symbol {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: #666;
    z-index: 2;
}

.payment-input {
    padding-left: 2rem;
}

.payment-suggestion {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.875rem;
    color: var(--primary-dark);
    font-weight: 600;
    background: rgba(72, 177, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    opacity: 0;
    transition: all var(--transition-medium);
}

.payment-suggestion.visible {
    opacity: 1;
}

/* Edit Button */
.edit-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--primary-light);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all var(--transition-medium);
    opacity: 0.7;
}

.edit-btn:hover {
    opacity: 1;
    background: var(--primary-dark);
}

.form-group {
    position: relative;
}

/* Time Input */
.time-input-wrapper {
    display: flex;
    gap: 0.5rem;
}

.time-input {
    flex: 2;
}

.time-unit {
    flex: 1;
}

/* Toggle Group */
.toggle-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.toggle-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-medium);
    background: white;
}

.toggle-option:hover {
    border-color: var(--primary-light);
    background: rgba(72, 177, 255, 0.05);
}

.toggle-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    background: white;
    transition: all var(--transition-medium);
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
}

.toggle-option input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary-light);
    background: var(--primary-light);
}

.toggle-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.option-text {
    flex: 1;
}

.option-text strong {
    display: block;
    color: #333;
    margin-bottom: 0.25rem;
}

.option-text small {
    color: #666;
    font-size: 0.875rem;
}

.toggle-option input[type="radio"]:checked ~ .option-text strong {
    color: var(--primary-dark);
}

/* Enhanced Form Group */
.location-group .form-input {
    background: #f8f9fa;
}

.location-group .form-input:focus {
    background: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .request-main {
        padding: 1rem 0;
    }
    
    .request-container {
        padding: 0 1rem;
    }
    
    .request-title {
        font-size: 2rem;
    }
    
    .form-section {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    
    .success-actions {
        flex-direction: column;
    }
    
    .location-input-wrapper {
        flex-direction: column;
    }
    
    .location-btn {
        order: -1;
        margin-bottom: 0.5rem;
    }
    
    .time-input-wrapper {
        flex-direction: column;
    }
    
    .toggle-option {
        padding: 0.75rem;
    }
    
    .payment-suggestion {
        position: static;
        transform: none;
        margin-top: 0.5rem;
        text-align: center;
    }
    
    /* Mobile Photo Upload Styles */
    .photo-drop-zone {
        padding: 1.5rem 1rem;
    }
    
    .upload-title {
        font-size: 1rem;
    }
    
    .upload-subtitle {
        font-size: 0.8125rem;
    }
    
    .browse-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .photo-preview-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.75rem;
    }
    
    .photo-preview-img {
        height: 100px;
    }
    
    .clear-photos-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .day-toggles {
        gap: 0.25rem;
        justify-content: space-around;
    }
    
    .day-btn {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .day-label {
        font-size: 0.6875rem;
    }
    
    .date-input-wrapper {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .calendar-btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .calendar-content {
        margin: 0.5rem;
        padding: 1rem;
        max-width: none;
    }
    
    .calendar-header {
        margin-bottom: 0.75rem;
    }
    
    .calendar-title {
        font-size: 1.125rem;
    }
    
    .calendar-nav {
        width: 28px;
        height: 28px;
        font-size: 1.125rem;
    }
    
    .weekday {
        padding: 0.375rem;
        font-size: 0.75rem;
    }
    
    .calendar-day {
        font-size: 0.875rem;
    }
    
    .calendar-footer {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.75rem;
        width: 100%;
    }
}

/* Loading Spinner for Firebase Integration */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Enhanced Success Section */
.success-details {
    background: rgba(40, 167, 69, 0.05);
    border: 1px solid rgba(40, 167, 69, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.success-task-info {
    text-align: center;
}

.task-created-title {
    color: var(--text-color);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
}

.success-location {
    color: #666;
    font-size: 0.875rem;
    margin: 0;
}

/* View Your Posts Section */
.view-posts-section {
    background: linear-gradient(135deg, rgba(72, 177, 255, 0.08) 0%, rgba(24, 107, 198, 0.08) 100%);
    border: 1px solid rgba(72, 177, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.view-posts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
}

.view-posts-title {
    color: var(--primary-dark);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: var(--font-secondary);
}

.view-posts-description {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.btn-view-posts {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(72, 177, 255, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-family: var(--font-secondary);
}

.btn-view-posts:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 177, 255, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0d5aa7 100%);
}

.btn-view-posts .btn-icon {
    font-size: 1.125rem;
}

.btn-view-posts .btn-text {
    flex: 1;
}

.btn-view-posts .btn-arrow {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.btn-view-posts:hover .btn-arrow {
    transform: translateX(3px);
}

.btn-view-posts::after {
    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 ease;
}

.btn-view-posts:hover::after {
    left: 100%;
}

/* Updated Success Actions */
.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-outline {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-light);
    background: transparent;
    color: var(--primary-light);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-secondary);
}

.btn-outline:hover {
    background: var(--primary-light);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(72, 177, 255, 0.3);
}

/* Optional Label */
.optional-label {
    color: #666;
    font-weight: normal;
    font-size: 0.875rem;
}

/* Photo Upload Styles */
.photo-upload-container {
    margin-top: 0.5rem;
}

.photo-drop-zone {
    border: 2px dashed rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    background: rgba(72, 177, 255, 0.02);
    transition: all var(--transition-medium);
    cursor: pointer;
    position: relative;
}

.photo-drop-zone:hover {
    border-color: var(--primary-light);
    background: rgba(72, 177, 255, 0.05);
    transform: translateY(-1px);
}

.photo-drop-zone.dragover {
    border-color: var(--primary-color);
    background: rgba(72, 177, 255, 0.1);
    transform: scale(1.02);
}

.drop-zone-content {
    pointer-events: none;
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.upload-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
}

.upload-subtitle {
    margin: 0 0 1.5rem 0;
    color: #666;
    font-size: 0.875rem;
}

.browse-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
    pointer-events: all;
}

.browse-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 117, 255, 0.3);
}

/* Photo Preview */
.photo-preview-container {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: var(--radius-lg);
    animation: slideIn 0.3s ease;
}

.photo-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.preview-count {
    font-weight: 600;
    color: var(--primary-dark);
}

.clear-photos-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.clear-photos-btn:hover {
    background: #c82333;
    transform: translateY(-1px);
}

.photo-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
}

.photo-preview-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-medium);
}

.photo-preview-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.photo-preview-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.photo-remove-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    transition: all var(--transition-medium);
}

.photo-remove-btn:hover {
    background: #dc3545;
    transform: scale(1.1);
}

.photo-info {
    padding: 0.5rem;
    font-size: 0.75rem;
    color: #666;
    text-align: center;
    background: white;
}

.photo-name {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.photo-size {
    margin-top: 0.25rem;
    opacity: 0.7;
}

/* Availability Section */
.availability-section {
    background: rgba(72, 177, 255, 0.05);
    border: 1px solid rgba(72, 177, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 1rem;
    animation: slideIn 0.3s ease;
}

.availability-title {
    margin: 0 0 1.5rem 0;
    color: var(--primary-dark);
    font-size: 1.125rem;
    font-weight: 600;
}

.day-toggles {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.day-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-medium);
}

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

.day-btn {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #666;
    background: white;
    transition: all var(--transition-medium);
    margin-bottom: 0.25rem;
}

.day-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

.day-toggle input[type="checkbox"]:checked + .day-btn {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 117, 255, 0.3);
}

.day-toggle input[type="checkbox"]:checked ~ .day-label {
    color: var(--primary-dark);
    font-weight: 600;
}

.day-toggle:hover .day-btn {
    border-color: var(--primary-light);
    transform: translateY(-1px);
}

/* Date Selection Section */
.date-selection-section {
    background: rgba(24, 107, 198, 0.05);
    border: 1px solid rgba(24, 107, 198, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 1rem;
    animation: slideIn 0.3s ease;
}

.date-input-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.date-input {
    flex: 1;
}

.calendar-btn {
    padding: 0.875rem 1.25rem;
    background: var(--primary-dark);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.calendar-btn:hover {
    background: #155aa0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(24, 107, 198, 0.3);
}

/* Calendar Popup */
.calendar-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.calendar-content {
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.calendar-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.calendar-nav {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(72, 177, 255, 0.1);
    color: var(--primary-color);
    cursor: pointer;
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
}

.calendar-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.weekday {
    padding: 0.5rem;
    text-align: center;
    font-weight: 600;
    color: #666;
    font-size: 0.875rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.calendar-day {
    aspect-ratio: 1;
    border: none;
    border-radius: var(--radius-md);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #333;
}

.calendar-day:hover {
    background: rgba(72, 177, 255, 0.1);
    color: var(--primary-color);
    transform: scale(1.1);
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.disabled:hover {
    background: transparent;
    transform: none;
}

.calendar-day.selected {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.calendar-day.today {
    background: rgba(255, 193, 7, 0.2);
    color: #856404;
    font-weight: 600;
}

.calendar-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

/* Additional Button Styles for Calendar */
.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 117, 255, 0.3);
}

.btn-secondary {
    background: #f8f9fa;
    color: #666;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-secondary:hover {
    background: #e9ecef;
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
