/* Schedule Page Styling */

/* Page Background */
body.schedule-page {
    color: white;
    /* Gradient background with auto styling industry feel */
    background: linear-gradient(135deg, #1a1a1a, #333333);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

/* Add subtle pattern overlay */
body.schedule-page::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23FF8300' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    z-index: 0;
}

.schedule-page .video-background {
    display: none;
}

/* Page Container */
.page-container {
    position: relative;
    min-height: calc(100vh - 80px);
    padding: 40px 0;
    z-index: 1;
}

/* Add animated gradient accents */
.page-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top left, rgba(255, 131, 0, 0.1) 0%, transparent 50%), 
               radial-gradient(ellipse at bottom right, rgba(255, 131, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Schedule Container */
.schedule-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(10, 10, 10, 0.9));
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 131, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.schedule-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, #FF8300, transparent);
}

.schedule-title {
    font-size: 38px;
    font-weight: bold;
    color: #FF8300;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.schedule-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #FF8300;
}

/* Form Elements */
.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.form-col {
    flex: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: white;
    font-size: 16px;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 12px;
}

.form-group label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 14px;
    background-color: #FF8300;
    border-radius: 2px;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    outline: none;
    border-color: #FF8300;
    box-shadow: 0 0 0 3px rgba(255, 131, 0, 0.2);
    background: white;
}

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

/* Service Options */
.service-selection-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-left: 12px;
}

.service-selection-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 14px;
    background-color: #FF8300;
    border-radius: 2px;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.service-option {
    background: linear-gradient(145deg, #222, #1a1a1a);
    border: 2px solid rgba(40, 40, 40, 0.5);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.service-option::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(255, 131, 0, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-option:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 131, 0, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.service-option:hover::before {
    opacity: 1;
}

.service-option.selected {
    border-color: #FF8300;
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.9), rgba(30, 30, 30, 0.9));
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 0 0 0 4px rgba(255, 131, 0, 0.2);
}

.service-option.selected::after {
    content: "✓";
    position: absolute;
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
    background-color: #FF8300;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.service-option h3 {
    color: #FF8300;
    margin-bottom: 12px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.service-option h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: rgba(255, 131, 0, 0.5);
    transition: width 0.3s ease;
}

.service-option:hover h3::after {
    width: 60px;
}

.service-option p {
    font-size: 14px;
    line-height: 1.4;
    color: #ccc;
}

/* Submit Button */
.submit-btn-container {
    margin-top: 40px;
    text-align: center;
}

.submit-btn {
    background: linear-gradient(to right, #FF8300, #e67600);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 12px rgba(230, 118, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-width: 280px;
}

.submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s;
    z-index: -1;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 118, 0, 0.4);
}

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

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(230, 118, 0, 0.4);
}

/* Form Hints */
.form-hint {
    margin-top: 10px;
    font-size: 13px;
    color: #999;
    font-style: italic;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .schedule-container {
        width: 90%;
        padding: 30px;
        margin: 30px auto;
    }

    .schedule-title {
        font-size: 30px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .service-options {
        grid-template-columns: 1fr;
    }

    .submit-btn {
        width: 100%;
        min-width: unset;
    }
}

@media screen and (max-width: 480px) {
    .schedule-container {
        padding: 20px;
        margin: 20px auto;
    }

    .schedule-title {
        font-size: 26px;
    }

    .service-option {
        padding: 15px;
    }

    .service-option h3 {
        font-size: 16px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-control {
        padding: 12px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 14px 30px;
        font-size: 16px;
    }
}