/* Public Styles for Anonymous Legal Advice Plugin */

/* Form Container */
.ala-form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.ala-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.ala-form-header h2 {
    color: #1e3a8a;
    font-size: 32px;
    margin-bottom: 10px;
}

.ala-form-header p {
    color: #6b7280;
    font-size: 16px;
}

/* Product Types Grid */
.ala-product-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.ala-product-type {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.ala-product-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.ala-product-type.ala-selected {
    border-color: #1e3a8a;
    background: #f0f9ff;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.15);
}

.ala-product-type.ala-popular {
    border-color: #f59e0b;
}

.ala-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.ala-product-badge {
    display: inline-block;
    background: #1e3a8a;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ala-product-price {
    font-size: 48px;
    font-weight: bold;
    color: #1e3a8a;
    margin: 15px 0;
}

.ala-product-desc {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 20px;
    min-height: 50px;
}

.ala-product-features {
    margin: 20px 0;
}

.ala-product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ala-product-features li {
    padding: 8px 0;
    color: #374151;
    font-size: 14px;
}

.ala-select-type {
    width: 100%;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    background: #3b82f6;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.ala-select-type:hover {
    background: #2563eb;
}

.ala-product-type.ala-selected .ala-select-type {
    background: #059669;
}

.ala-product-type.ala-selected .ala-select-type:hover {
    background: #047857;
}

/* Form */
.ala-form {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ala-form-messages {
    margin-bottom: 20px;
}

.ala-error,
.ala-notice,
.ala-success {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.ala-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #dc2626;
}

.ala-notice {
    background: #fef3c7;
    color: #92400e;
    border-left: 4px solid #f59e0b;
}

.ala-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #059669;
}

.ala-form-group {
    margin-bottom: 25px;
}

.ala-form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 15px;
}

.ala-form-group .required {
    color: #dc2626;
}

.ala-form-group .optional {
    color: #9ca3af;
    font-weight: normal;
    font-size: 13px;
}

.ala-form-group input[type="email"],
.ala-form-group input[type="text"],
.ala-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ala-form-group input:focus,
.ala-form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.ala-form-group small {
    display: block;
    color: #6b7280;
    font-size: 13px;
    margin-top: 6px;
}

.ala-checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
}

.ala-checkbox-group input[type="checkbox"] {
    margin-right: 8px;
    width: auto;
}

.ala-form-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

.ala-back-button {
    background: #6b7280;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.2s;
}

.ala-back-button:hover {
    background: #4b5563;
}

.ala-submit-button {
    flex: 1;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
}

/* Client Chat */
.ala-client-chat-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.ala-client-header {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 45px 35px;
    border-radius: 16px 16px 0 0;
    text-align: center;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.15);
    position: relative;
    overflow: hidden;
}

.ala-client-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.ala-client-header h2 {
    margin: 0 0 15px 0;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.ala-advice-type {
    margin: 10px 0;
    font-size: 17px;
    opacity: 0.95;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.ala-advice-status {
    margin: 18px 0 0 0;
    position: relative;
    z-index: 1;
}

.ala-assigned-lawyer {
    margin: 15px 0 0 0;
    font-size: 16px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.ala-client-info {
    background: #ffffff;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    padding: 35px;
}

.ala-info-box {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 28px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ala-info-box h3 {
    margin-top: 0;
    margin-bottom: 18px;
    color: #6366f1;
    font-size: 19px;
    font-weight: 600;
}

.ala-initial-question {
    font-size: 15px;
    color: #475569;
    line-height: 1.75;
}

.ala-client-chat {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-top: none;
    padding: 35px;
    border-radius: 0 0 16px 16px;
}

.ala-client-chat h3 {
    margin-top: 0;
    margin-bottom: 0;
    color: #6366f1;
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.ala-waiting-message {
    background: linear-gradient(135deg, #ede9fe 0%, #f3e8ff 100%);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    margin: 35px 0;
    border: 1px solid #ddd6fe;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.1);
}

.ala-waiting-message p {
    margin: 12px 0;
    color: #6d28d9;
    font-size: 16px;
    font-weight: 500;
}

.ala-chat-messages {
    min-height: 400px;
    max-height: 700px;
    overflow-y: auto;
    padding: 30px 0;
    scroll-behavior: smooth;
    background: #fafbfc;
    border-radius: 12px;
    margin: 25px 0;
    padding: 30px 20px;
}

.ala-chat-messages::-webkit-scrollbar {
    width: 10px;
}

.ala-chat-messages::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 5px;
}

.ala-chat-messages::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}

.ala-chat-messages::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.ala-message {
    margin-bottom: 28px;
    animation: slideIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

.ala-message-client {
    align-items: flex-start;
}

.ala-message-admin {
    align-items: flex-end;
}

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

.ala-message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
    padding: 0 6px;
}

.ala-message-sender {
    font-weight: 600;
    color: #475569;
    font-size: 14px;
}

.ala-message-time {
    color: #94a3b8;
    font-size: 12px;
}

.ala-message-content {
    padding: 16px 20px;
    border-radius: 16px;
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.75;
    max-width: 75%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-size: 15px;
}

.ala-message-client .ala-message-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #1e293b;
    border-bottom-left-radius: 4px;
    border: 1px solid #e2e8f0;
}

.ala-message-admin .ala-message-content {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    color: #1e3a8a;
    border-bottom-right-radius: 4px;
}

.ala-chat-form {
    padding-top: 25px;
    border-top: 2px solid #e5e7eb;
    margin-top: 20px;
}

.ala-file-upload-section {
    margin-bottom: 16px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px dashed #d1d5db;
}

.ala-file-upload-section label {
    margin-right: 12px;
}

.ala-file-name {
    margin-left: 12px;
    color: #4b5563;
    font-size: 14px;
}

.ala-uploaded-files {
    margin-bottom: 16px;
}

.ala-uploaded-file {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 6px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 14px;
}

.ala-uploaded-file a {
    color: #0369a1;
    text-decoration: none;
}

.ala-uploaded-file a:hover {
    text-decoration: underline;
}

.ala-file-uploaded-badge {
    color: #059669;
    font-size: 12px;
    font-weight: 500;
}

.ala-chat-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    resize: vertical;
    font-family: inherit;
    margin-bottom: 16px;
    font-size: 15px;
    transition: all 0.2s;
    background: #ffffff;
}

.ala-chat-form textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.ala-chat-form button {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.ala-chat-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.35);
}

.ala-chat-form button:active {
    transform: translateY(0);
}

.ala-chat-closed {
    background: linear-gradient(135deg, #f3f4f6 0%, #f9fafb 100%);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.ala-chat-closed p {
    margin: 12px 0;
    color: #6b7280;
    font-size: 15px;
}

.ala-client-footer {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 30px;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
}

.ala-privacy-note {
    text-align: center;
    margin: 0;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.6;
}

/* Anonymous Checkout Notice */
.ala-checkout-notice {
    background: #e7f3ff;
    border-left: 4px solid #1e3a8a;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.ala-notice-icon {
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
}

.ala-notice-content h3 {
    margin: 0 0 8px 0;
    color: #1e3a8a;
    font-size: 18px;
    font-weight: 600;
}

.ala-notice-content p {
    margin: 0;
    color: #334155;
    font-size: 14px;
    line-height: 1.6;
}

/* Disabled/Hidden fields styling (if needed for alternative approach) */
.ala-disabled-field input,
.ala-disabled-field select {
    background-color: #f1f5f9 !important;
    color: #94a3b8 !important;
    cursor: not-allowed !important;
}

/* Responsive */
@media (max-width: 768px) {
    .ala-product-types {
        grid-template-columns: 1fr;
    }
    
    .ala-form {
        padding: 25px;
    }
    
    .ala-form-actions {
        flex-direction: column;
    }
    
    .ala-message-content {
        max-width: 90%;
    }
    
    .ala-checkout-notice {
        padding: 15px;
        gap: 10px;
    }
    
    .ala-notice-icon {
        font-size: 20px;
    }
    
    .ala-notice-content h3 {
        font-size: 16px;
    }
    
    .ala-notice-content p {
        font-size: 13px;
    }
}

/* Package Selection */
.ala-package-selection {
    margin: 40px 0;
}

.ala-package-selection h3 {
    color: #1e3a8a;
    font-size: 24px;
    margin-bottom: 20px;
}

.ala-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.ala-package-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.ala-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.ala-package-card.ala-selected {
    border-color: #1e3a8a;
    background: #f0f9ff;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.15);
}

.ala-package-header {
    margin-bottom: 15px;
}

.ala-package-name {
    font-size: 24px;
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.ala-package-price {
    font-size: 36px;
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.ala-package-desc {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 20px;
    min-height: 40px;
}

.ala-package-card .button {
    width: 100%;
    padding: 12px;
    font-weight: 600;
}

/* Channel Selection */
.ala-channel-selection {
    margin: 40px 0;
}

.ala-channel-selection h3 {
    color: #1e3a8a;
    font-size: 24px;
    margin-bottom: 20px;
}

.ala-channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.ala-channel-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ala-channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.ala-channel-card.ala-selected {
    border-color: #1e3a8a;
    background: #f0f9ff;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.15);
}

.ala-channel-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.ala-channel-name {
    font-size: 18px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.ala-channel-price {
    font-size: 16px;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 10px;
}

.ala-channel-desc {
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 15px;
    min-height: 40px;
}

.ala-channel-card .button {
    width: 100%;
    padding: 10px;
    font-weight: 600;
}

/* Advice Type Selection */
.ala-advice-type-selection {
    margin: 40px 0;
}

.ala-advice-type-selection h3 {
    color: #1e3a8a;
    font-size: 24px;
    margin-bottom: 20px;
}

.ala-advice-type-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.ala-advice-type-option {
    cursor: pointer;
}

.ala-advice-type-option input[type="radio"] {
    display: none;
}

.ala-advice-type-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.ala-advice-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.ala-advice-type-option input[type="radio"]:checked + .ala-advice-type-card {
    border-color: #1e3a8a;
    background: #f0f9ff;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.15);
}

.ala-advice-type-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.ala-advice-type-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.ala-advice-type-desc {
    color: #6b7280;
    font-size: 14px;
}

/* Summary */
.ala-selected-summary {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.ala-selected-summary h3 {
    color: #1e3a8a;
    font-size: 20px;
    margin-bottom: 15px;
}

.ala-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.ala-summary-item:last-child {
    border-bottom: none;
}

.ala-summary-item.ala-summary-total {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #1e3a8a;
    font-weight: 600;
    font-size: 18px;
}

.ala-summary-label {
    color: #6b7280;
}

.ala-summary-value {
    color: #1e3a8a;
    font-weight: 600;
}

.ala-summary-total .ala-summary-value {
    font-size: 24px;
    color: #1e3a8a;
}

/* Lawyer Selection */
.ala-lawyer-selection {
    margin: 40px 0;
}

.ala-lawyer-selection h3 {
    color: #1e3a8a;
    font-size: 24px;
    margin-bottom: 10px;
}

.ala-lawyer-selection-desc {
    color: #6b7280;
    margin-bottom: 20px;
}

.ala-lawyers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.ala-lawyer-option {
    cursor: pointer;
}

.ala-lawyer-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.ala-lawyer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.ala-lawyer-option.ala-selected .ala-lawyer-card {
    border-color: #1e3a8a;
    background: #f0f9ff;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.15);
}

.ala-lawyer-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.ala-lawyer-photo {
    margin-bottom: 10px;
}

.ala-lawyer-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.ala-lawyer-photo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 10px;
}

.ala-lawyer-name {
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 8px;
    font-size: 16px;
}

.ala-lawyer-specializations {
    margin: 10px 0;
}

.ala-spec-tag {
    display: inline-block;
    background: #e0e7ff;
    color: #1e3a8a;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    margin: 2px;
}

.ala-lawyer-excerpt {
    color: #6b7280;
    font-size: 13px;
    margin-top: 8px;
    line-height: 1.4;
}

/* Landing Page Styles */
.ala-landing-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.ala-landing-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 80px 40px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 60px;
}

.ala-landing-hero h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 20px 0;
    color: white;
}

.ala-hero-subtitle {
    font-size: 20px;
    margin: 0 0 30px 0;
    opacity: 0.95;
}

.ala-cta-button {
    display: inline-block;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.ala-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Trust Signals */
.ala-trust-signals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
    padding: 40px 0;
}

.ala-trust-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.ala-trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.ala-trust-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.ala-trust-item h3 {
    color: #1e3a8a;
    font-size: 20px;
    margin: 0 0 10px 0;
}

.ala-trust-item p {
    color: #6b7280;
    margin: 0;
    font-size: 14px;
}

/* Packages Comparison */
.ala-packages-comparison {
    margin: 60px 0;
    padding: 40px 0;
}

.ala-packages-comparison h2 {
    text-align: center;
    font-size: 36px;
    color: #1e3a8a;
    margin-bottom: 40px;
}

.ala-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.ala-package-card-landing {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.ala-package-card-landing:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.ala-package-header {
    margin-bottom: 20px;
}

.ala-package-header h3 {
    font-size: 28px;
    color: #1e3a8a;
    margin: 0 0 15px 0;
}

.ala-package-price {
    font-size: 42px;
    font-weight: bold;
    color: #1e3a8a;
    margin: 15px 0;
}

.ala-package-description {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 25px;
    min-height: 50px;
}

.ala-package-channels {
    text-align: left;
    margin: 25px 0;
    padding: 20px;
    background: #f9fafb;
    border-radius: 8px;
}

.ala-package-channels h4 {
    color: #1e3a8a;
    font-size: 16px;
    margin: 0 0 15px 0;
}

.ala-package-channels ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ala-package-channels li {
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ala-package-channels li:last-child {
    border-bottom: none;
}

.ala-channel-price {
    font-weight: 600;
    color: #10b981;
}

.ala-package-card-landing .button {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
}

/* How It Works */
.ala-how-it-works {
    margin: 60px 0;
    padding: 60px 40px;
    background: #f9fafb;
    border-radius: 12px;
}

.ala-how-it-works h2 {
    text-align: center;
    font-size: 36px;
    color: #1e3a8a;
    margin-bottom: 50px;
}

.ala-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.ala-step {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    position: relative;
}

.ala-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.ala-step h3 {
    color: #1e3a8a;
    font-size: 20px;
    margin: 0 0 10px 0;
}

.ala-step p {
    color: #6b7280;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* CTA Section */
.ala-cta-section {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    border-radius: 12px;
    margin: 60px 0;
}

.ala-cta-section h2 {
    font-size: 36px;
    margin: 0 0 15px 0;
    color: white;
}

.ala-cta-section p {
    font-size: 18px;
    margin: 0 0 30px 0;
    opacity: 0.95;
}

/* Responsive Landing Page */
@media (max-width: 768px) {
    .ala-landing-hero {
        padding: 50px 20px;
    }
    
    .ala-landing-hero h1 {
        font-size: 32px;
    }
    
    .ala-hero-subtitle {
        font-size: 16px;
    }
    
    .ala-trust-signals {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ala-packages-grid {
        grid-template-columns: 1fr;
    }
    
    .ala-steps {
        grid-template-columns: 1fr;
    }
    
    .ala-cta-section {
        padding: 50px 20px;
    }
    
    .ala-cta-section h2 {
        font-size: 28px;
    }
}

/* Appointment Calendar Selection in Form */
.ala-appointment-calendar-selection {
    margin: 30px 0;
    padding: 30px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.ala-appointment-calendar-selection h3 {
    color: #1e3a8a;
    margin-bottom: 10px;
    font-size: 24px;
}

.ala-appointment-desc {
    color: #6b7280;
    margin-bottom: 12px;
    font-size: 14px;
}

#ala-form-appointment-calendar {
    margin: 15px 0;
    background: white;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

#ala-form-appointment-slots {
    margin-top: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

#ala-form-appointment-slots h4 {
    color: #1e3a8a;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
}

.ala-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.ala-slot-button {
    padding: 8px 14px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s;
    white-space: nowrap;
    text-align: center;
}

.ala-slot-button:hover {
    border-color: #6366f1;
    color: #6366f1;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(99, 102, 241, 0.2);
}

.ala-slot-button.ala-selected {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: #6366f1;
    color: white;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.3);
    font-weight: 600;
}

.ala-no-slots {
    color: #6b7280;
    font-style: italic;
    text-align: center;
    padding: 20px;
}

.ala-error {
    color: #991b1b;
    background: #fee2e2;
    border: 1px solid #ef4444;
    padding: 12px 20px;
    border-radius: 8px;
    margin: 15px 0;
}

.ala-info {
    color: #6b7280;
    font-style: italic;
    text-align: center;
    padding: 20px;
}

/* FullCalendar customization for form - Compact and UX-friendly */
#ala-form-appointment-calendar .fc {
    font-family: inherit;
    font-size: 12px;
}

/* Header toolbar - smaller and compact */
#ala-form-appointment-calendar .fc-header-toolbar {
    margin-bottom: 8px !important;
    padding: 0 6px;
}

#ala-form-appointment-calendar .fc-toolbar-title {
    font-size: 15px !important;
    font-weight: 600;
    color: #1e3a8a;
}

/* Buttons - smaller */
#ala-form-appointment-calendar .fc-button {
    background: #6366f1;
    border-color: #6366f1;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 11px;
    height: auto;
    line-height: 1.4;
}

#ala-form-appointment-calendar .fc-button:hover {
    background: #4f46e5;
    border-color: #4f46e5;
}

#ala-form-appointment-calendar .fc-button-active {
    background: #4338ca;
    border-color: #4338ca;
}

#ala-form-appointment-calendar .fc-button:focus {
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.3);
}

/* Hide view buttons (only show month view) */
#ala-form-appointment-calendar .fc-header-toolbar .fc-toolbar-chunk:last-child {
    display: none !important;
}

/* Day grid - smaller cells */
#ala-form-appointment-calendar .fc-daygrid-day {
    min-height: 45px !important;
    padding: 3px !important;
}

#ala-form-appointment-calendar .fc-daygrid-day:hover {
    background: #f3f4f6 !important;
    cursor: pointer;
}

#ala-form-appointment-calendar .fc-daygrid-day-number {
    padding: 3px 5px;
    font-size: 12px;
    font-weight: 500;
}

#ala-form-appointment-calendar .fc-day-selected {
    background: #dbeafe !important;
}

#ala-form-appointment-calendar .fc-col-header-cell {
    padding: 6px 3px;
    font-size: 11px;
    font-weight: 600;
    color: #4b5563;
}

#ala-form-appointment-calendar .fc-col-header-cell-cushion {
    padding: 3px;
}

/* Events - available dates */
#ala-form-appointment-calendar .fc-event[style*="background-color: rgb(16, 185, 129)"],
#ala-form-appointment-calendar .fc-event[style*="#10b981"],
#ala-form-appointment-calendar .fc-event {
    padding: 2px 4px;
    font-size: 11px;
    border-radius: 3px;
    margin: 2px 0;
    cursor: pointer;
}

#ala-form-appointment-calendar .fc-event[style*="background-color: rgb(16, 185, 129)"],
#ala-form-appointment-calendar .fc-event[style*="#10b981"] {
    background-color: #10b981 !important;
    border-color: #059669 !important;
    color: white;
}

/* Unavailable dates - light red background */
#ala-form-appointment-calendar .fc-daygrid-day:not(.fc-day-past):not(.fc-day-other):not(:has(.fc-event)) {
    background-color: #fee2e2 !important;
    opacity: 0.5;
}

/* Today - keep yellow highlight */
#ala-form-appointment-calendar .fc-day-today {
    background-color: #fef3c7 !important;
}

#ala-form-appointment-calendar .fc-day-today:not(:has(.fc-event)) {
    background: linear-gradient(to bottom, #fef3c7 0%, #fef3c7 60%, #fee2e2 60%, #fee2e2 100%) !important;
}

#ala-form-appointment-calendar .fc-day-today .fc-daygrid-day-number {
    font-weight: 700;
    color: #92400e;
}

/* Remove event dot indicator */
#ala-form-appointment-calendar .fc-event-dot {
    display: none;
}

/* Make calendar more compact overall */
#ala-form-appointment-calendar .fc-scroller {
    overflow-y: visible !important;
}

#ala-form-appointment-calendar .fc-daygrid-body {
    width: 100% !important;
}

/* Calendar container max height */
#ala-form-appointment-calendar .fc-view-harness {
    max-height: 380px;
    overflow-y: auto;
}

/* Make calendar responsive on mobile */
@media (max-width: 768px) {
    #ala-form-appointment-calendar {
        padding: 8px;
        max-width: 100%;
    }
    
    #ala-form-appointment-calendar .fc-daygrid-day {
        min-height: 40px !important;
        padding: 2px !important;
    }
    
    #ala-form-appointment-calendar .fc-daygrid-day-number {
        font-size: 11px;
        padding: 2px 3px;
    }
    
    #ala-form-appointment-calendar .fc-toolbar-title {
        font-size: 13px !important;
    }
    
    #ala-form-appointment-calendar .fc-button {
        padding: 3px 8px;
        font-size: 10px;
    }
    
    #ala-form-appointment-calendar .fc-view-harness {
        max-height: 320px;
    }
    
    #ala-form-slots-list {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 6px;
    }
    
    #ala-form-slots-list .ala-slot-button {
        padding: 6px 10px;
        font-size: 12px;
    }
}
