/* Page-specific styles for auxiliary pages */

.page-header {
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.page-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-nav {
    display: flex;
    gap: 32px;
}

.page-nav a {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.page-nav a:hover {
    color: #4F46E5;
    background-color: #f3f4f6;
}

.page-nav a.active {
    color: #4F46E5;
    background-color: #e0e7ff;
}

.page-main {
    min-height: calc(100vh - 200px);
}

.page-hero {
    padding: 64px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #1f2937;
}

.page-hero p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 64px 0;
}

.content-block {
    max-width: 800px;
    margin: 0 auto 48px;
}

.content-block h2 {
    color: #1f2937;
    margin-bottom: 24px;
}

.content-block p {
    margin-bottom: 16px;
    line-height: 1.6;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-image {
    margin: 32px 0;
    text-align: center;
}

.content-image svg {
    max-width: 100%;
    height: auto;
}

.content-img {
    width: 100%;
    max-width: 600px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Empty State Styles */
.empty-state {
    text-align: center;
    padding: 80px 32px;
    background-color: #f8fafc;
    border-radius: 16px;
    border: 2px dashed #d1d5db;
}

.empty-icon {
    margin-bottom: 24px;
}

.empty-state h2 {
    margin-bottom: 16px;
    color: #1f2937;
}

.empty-state p {
    color: #6b7280;
    font-size: 1.125rem;
}

/* Order Form Styles */
.order-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.order-form {
    background: white;
    padding: 48px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 48px;
}

.form-section:last-of-type {
    margin-bottom: 32px;
}

.form-section h2 {
    color: #1f2937;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1f2937;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.package-options {
    display: grid;
    gap: 16px;
}

.package-option {
    position: relative;
}

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

.package-label {
    display: block;
    padding: 24px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.package-label:hover {
    border-color: #4F46E5;
    background-color: #f8fafc;
}

.package-option input[type="radio"]:checked + .package-label {
    border-color: #4F46E5;
    background-color: #eff6ff;
}

.package-label h3 {
    margin-bottom: 8px;
    color: #1f2937;
}

.package-label p {
    color: #6b7280;
    margin-bottom: 12px;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #4F46E5;
    position: absolute;
    top: 24px;
    right: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: normal !important;
}

.checkbox-label input[type="checkbox"] {
    width: auto !important;
    margin: 0;
}

.checkbox-label a {
    color: #4F46E5;
    text-decoration: none;
}

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

.form-actions {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.form-actions .btn {
    margin-bottom: 16px;
    padding: 16px 32px;
    font-size: 1.125rem;
}

.form-note {
    color: #6b7280;
    font-size: 0.875rem;
    max-width: 400px;
    margin: 0 auto;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-header .container {
        flex-direction: column;
        gap: 16px;
    }
    
    .page-nav {
        gap: 16px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .order-form {
        padding: 32px 24px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .price {
        position: static;
        display: block;
        margin-top: 8px;
    }
    
    .content-block {
        padding: 0 16px;
    }
    
    .content-img {
        height: 200px;
    }
    
    .empty-state {
        padding: 48px 24px;
    }
}