* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Mono', monospace;
    background-color: #0A0E27;
    color: #00FF88;
    line-height: 1.6;
    overflow-x: hidden;
}

.bg-grid {
    position: fixed;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(0, 255, 136, 0.1) 25%, rgba(0, 255, 136, 0.1) 26%, transparent 27%, transparent 74%, rgba(0, 255, 136, 0.1) 75%, rgba(0, 255, 136, 0.1) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(0, 255, 136, 0.1) 25%, rgba(0, 255, 136, 0.1) 26%, transparent 27%, transparent 74%, rgba(0, 255, 136, 0.1) 75%, rgba(0, 255, 136, 0.1) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.hidden {
    display: none !important;
}

/* Header */
header {
    border-bottom: 2px solid rgba(0, 217, 255, 0.2);
    background-color: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 1rem 0;
}

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

.header-content h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00D9FF;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px #00D9FF;
    font-family: 'Orbitron', monospace;
}

.header-content p {
    font-size: 0.75rem;
    color: rgba(0, 217, 255, 0.6);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.login-button {
    background: transparent;
    border: 1px solid #00D9FF;
    color: #00D9FF;
    padding: 0.4rem 1rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.login-button:hover {
    background: rgba(0, 217, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
}

.status-indicator {
    text-align: right;
    font-size: 0.7rem;
    color: rgba(0, 217, 255, 0.5);
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #00D9FF;
    border-radius: 50%;
    animation: pulse 2s infinite;
    margin-left: 0.5rem;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 5px #00D9FF; }
    50% { opacity: 0.4; box-shadow: 0 0 0px #00D9FF; }
}

.status-bar {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.status-badge {
    border: 1px solid rgba(0, 217, 255, 0.3);
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    color: rgba(0, 217, 255, 0.5);
    transition: all 0.3s ease;
}

.status-badge.clickable {
    cursor: pointer;
}

.status-badge.clickable:hover {
    border-color: rgba(0, 217, 255, 0.8);
    color: rgba(0, 217, 255, 0.9);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

/* Main Content */
main {
    padding: 2rem 0;
}

section {
    margin-bottom: 3rem;
}

section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF00FF;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', monospace;
}

.section-divider {
    width: 3rem;
    height: 0.25rem;
    background: linear-gradient(to right, #00D9FF, #FF00FF);
    margin-bottom: 2rem;
}

.divider-section {
    margin: 2rem 0;
    position: relative;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 217, 255, 0.3), transparent);
}

.divider-text {
    position: relative;
    background-color: #0A0E27;
    padding: 0 1rem;
    color: rgba(0, 217, 255, 0.5);
    font-size: 0.8rem;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Pricing Card */
.pricing-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card-inner {
    position: relative;
    background-color: rgba(26, 31, 58, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border: 1px solid rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-card-inner {
    border-color: rgba(0, 217, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.pricing-card.selected .pricing-card-inner {
    border-color: #00D9FF;
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.3), inset 0 0 10px rgba(0, 217, 255, 0.1);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00D9FF;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-family: 'Orbitron', monospace;
}

.card-description {
    font-size: 0.8rem;
    color: rgba(0, 217, 255, 0.6);
    margin-bottom: 1rem;
}

.card-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF00FF;
    font-family: 'Orbitron', monospace;
}

.card-price-label {
    font-size: 0.7rem;
    color: rgba(0, 217, 255, 0.5);
    margin-bottom: 1rem;
}

.card-button {
    width: 100%;
    padding: 0.6rem;
    background: transparent;
    border: 1px solid #00D9FF;
    color: #00D9FF;
    font-family: 'Space Mono', monospace;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-card.selected .card-button {
    background: #00D9FF;
    color: #0A0E27;
}

/* Bundle Card */
.bundle-card {
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bundle-card:hover {
    transform: translateY(-5px);
}

.bundle-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: linear-gradient(to right, #FF00FF, #00D9FF);
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    font-weight: bold;
    color: #0A0E27;
    z-index: 10;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

.bundle-card-inner {
    background-color: rgba(26, 31, 58, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border: 1px solid rgba(255, 0, 255, 0.2);
    transition: all 0.3s ease;
}

.bundle-card:hover .bundle-card-inner {
    border-color: rgba(255, 0, 255, 0.6);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
}

.bundle-card.selected .bundle-card-inner {
    border-color: #FF00FF;
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.3);
}

.bundle-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #FF00FF;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.bundle-items {
    margin-bottom: 1rem;
}

.bundle-item {
    font-size: 0.8rem;
    color: rgba(0, 217, 255, 0.7);
    margin-bottom: 0.3rem;
}

.bundle-item::before {
    content: "▸ ";
    color: #FF00FF;
}

.bundle-price-section {
    margin-bottom: 1rem;
    padding: 0.5rem;
    background-color: rgba(255, 0, 255, 0.05);
    border: 1px dashed rgba(255, 0, 255, 0.3);
}

.bundle-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #FF00FF;
    font-family: 'Orbitron', monospace;
}

.bundle-button {
    width: 100%;
    padding: 0.6rem;
    background: transparent;
    border: 1px solid #FF00FF;
    color: #FF00FF;
    font-family: 'Space Mono', monospace;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bundle-card.selected .bundle-button {
    background: #FF00FF;
    color: #0A0E27;
}

/* Scheduling Section */
.scheduling-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.scheduling-form, .schedule-list {
    background-color: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.form-title, .schedule-list-title {
    font-size: 1.2rem;
    color: #00D9FF;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', monospace;
}

.service-display {
    margin-bottom: 1.5rem;
    padding: 0.8rem;
    background: rgba(0, 217, 255, 0.05);
    border-left: 3px solid #00D9FF;
}

.service-display-label {
    font-size: 0.65rem;
    color: rgba(0, 217, 255, 0.5);
    text-transform: uppercase;
}

.service-display-value {
    font-size: 0.9rem;
    color: #00D9FF;
    font-weight: bold;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    color: #00D9FF;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.multi-date-group {
    border: 1px solid rgba(0, 217, 255, 0.1);
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(10, 14, 39, 0.4);
    border-left: 2px solid #FF00FF;
}

.multi-date-title {
    font-size: 0.8rem;
    color: #FF00FF;
    margin-bottom: 0.8rem;
    font-family: 'Orbitron', monospace;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.custom-date-picker, .custom-time-picker, .futuristic-input, textarea {
    width: 100%;
    background: rgba(10, 14, 39, 0.8);
    border: 1px solid rgba(0, 217, 255, 0.3);
    padding: 0.6rem;
    color: #00FF88;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.custom-date-picker input, .custom-time-picker input {
    width: 100%;
    background: transparent;
    border: none;
    color: inherit;
    font-family: inherit;
    outline: none;
}

.custom-date-picker:focus-within, .custom-time-picker:focus-within, .futuristic-input:focus, textarea:focus {
    border-color: #00D9FF;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.2);
    outline: none;
}

.submit-button {
    width: 100%;
    padding: 0.8rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid #00D9FF;
    color: #00D9FF;
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.submit-button:hover {
    background: #00D9FF;
    color: #0A0E27;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.modal-content {
    background-color: rgba(26, 31, 58, 0.95);
    border: 2px solid #00D9FF;
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.3);
}

.login-modal {
    border-color: #FF00FF;
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
    padding-bottom: 1rem;
}

.modal-title {
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    color: #00D9FF;
    letter-spacing: 2px;
}

.login-modal .modal-title {
    color: #FF00FF;
}

.modal-close {
    background: transparent;
    border: none;
    color: rgba(0, 217, 255, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
}

.login-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #FF4444;
    padding: 0.8rem;
    font-size: 0.7rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Admin Panel */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.logout-button {
    background: transparent;
    border: 1px solid #FF00FF;
    color: #FF00FF;
    padding: 0.5rem 1rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-button:hover {
    background: rgba(255, 0, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.admin-task-item {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 217, 255, 0.2);
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-task-item.completed {
    opacity: 0.5;
    border-color: rgba(255, 0, 255, 0.3);
}

.admin-task-item.pending-payment {
    border-left: 4px solid #FFFF00;
    background: rgba(255, 255, 0, 0.05);
}

.admin-task-item.paid-active {
    border-left: 4px solid #00FF88;
    background: rgba(0, 255, 136, 0.05);
}

.task-status-btn {
    background: transparent;
    border: 1px solid #00FF88;
    color: #00FF88;
    padding: 0.4rem 0.8rem;
    font-size: 0.65rem;
    font-family: 'Orbitron', sans-serif;
    cursor: pointer;
}

.task-status-btn:hover {
    background: rgba(0, 255, 136, 0.1);
}

.feedback-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.feedback-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border: 1px solid rgba(0, 217, 255, 0.3);
}

.feedback-name {
    font-size: 0.6rem;
    text-align: center;
    margin-top: 0.3rem;
    color: rgba(0, 217, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .scheduling-container, .admin-grid {
        grid-template-columns: 1fr;
    }
}
