
        :root {
            --primary-color: #003087;
            --secondary-color: #F5F6F5;
            --accent-color: #00A1D6;
            --dark-color: #1E1E1E;
            --light-color: #FFFFFF;
            --error-color: #d32fc0;
            --neutral-color: #E0E7FF;
            --highlight-color: #E6F3FA;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            line-height: 1.6;
            background-color: var(--secondary-color);
            color: var(--dark-color);
             background-image: url("../images/bg_.jpg");
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
           
        }

        header {
            background-color: var(--primary-color);
            color: var(--light-color);
            padding: 1rem 0;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo {
            height: 60px;
            border-radius: 4px;
        }

        .site-title h1 {
            font-size: 3.5rem;
            font-weight: 600;
        }

        .language-selector {
            display: flex;
            gap: 0.5rem;
        }

        .language-btn {
            background: transparent;
            border: 1px solid var(--light-color);
            color: var(--light-color);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .language-btn.active,
        .language-btn:hover {
            background-color: var(--light-color);
            color: var(--primary-color);
        }

        nav {
            background-color: #00205B;
            padding: 0.75rem 0;
            margin-top: 1rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 0.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .nav-menu a {
            color: var(--light-color);
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.95rem;
            transition: background-color 0.3s ease;
        }

        .nav-menu a:hover {
            background-color: var(--accent-color);
            color: var(--light-color);
        }

        .nav-menu a.active {
            background-color: var(--accent-color);
            color: var(--dark-color);
        }

        .hero {
            text-align: center;
            padding: 2rem;
            background-color: var(--light-color);
            border-radius: 8px;
            margin-bottom: 0rem !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .hero img {
            max-width: 100%;
            height: auto;
            margin-bottom: 1rem;
            border-radius: 8px;
        }

        .hero p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            color: #555;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero .btn-primary {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: var(--light-color);
            border: none;
            padding: 0.75rem 2rem;
            font-size: 1rem;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 150px;
            touch-action: manipulation;
        }

        .btn-primary:hover {
            background-color: #00205B;
            transform: translateY(-2px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .btn-primary:disabled {
            background-color: #b6b0c5;
            cursor: not-allowed;
            transform: none;
        }

        .btn-secondary {
            background-color: #607D8B;
            color: var(--light-color);
            border: none;
            padding: 0.75rem 2rem;
            font-size: 1rem;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 150px;
            touch-action: manipulation;
        }

        .btn-secondary:hover {
            background-color: #455A64;
            transform: translateY(-2px);
        }

        .section {
            background-color: var(--light-color);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .section.hidden {
            display: none;
        }

        .section h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .table-container {
            overflow-x: auto;
            margin-top: 1rem;
        }

        .document-table {
            width: 100%;
            border-collapse: collapse;
            background-color: var(--light-color);
            border-radius: 8px;
            overflow: hidden;
        }

        .document-table th,
        .document-table td {
            padding: 0.75rem;
            text-align: left;
            border-bottom: 1px solid var(--neutral-color);
        }

        .document-table th {
            background-color: var(--primary-color);
            color: var(--light-color);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .document-table tbody tr:hover {
            background-color: var(--highlight-color);
        }

        .document-table .download-link {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .document-table .download-link:hover {
            background-color: var(--neutral-color);
            color: var(--primary-color);
        }
        .phone-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.country-selection {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.country-option {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.country-option input[type="radio"] {
    margin-right: 0.25rem;
}

.phone-group {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.country-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 0.5rem;
    background-color: var(--highlight-color);
    border: 1px solid #CFD8DC;
    border-radius: 4px 0 0 4px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-color);
    white-space: nowrap;
}

.flag-icon {
    width: 14px;
    height: 10px;
    margin-left: 0.25rem;
    vertical-align: middle;
}

.phone-group input[type="tel"] {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #CFD8DC;
    border-left: none;
    border-radius: 0 4px 4px 0;
    font-size: 0.85rem;
    transition: border-color 0.3s ease;
}

.phone-group input[type="tel"]:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 4px rgba(0, 161, 214, 0.2);
}

.help-text {
    font-size: 0.8rem;
    color: #607D8B;
    margin-top: 0.25rem;
}

.error-message {
    font-size: 0.8rem;
    color: var(--error-color);
    margin-top: 0.25rem;
    display: none;
}

.error-message.active {
    display: block;
}

@media (max-width: 768px) {
    .country-selection {
        flex-direction: column;
        gap: 0.5rem;
    }

    .country-option {
        font-size: 0.85rem;
    }

    .phone-group {
        flex-direction: row;
    }

    .country-label {
        min-width: 70px;
        padding: 0.4rem;
        font-size: 0.8rem;
    }

    .flag-icon {
        width: 12px;
        height: 9px;
    }

    .phone-group input[type="tel"] {
        padding: 0.4rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .country-label {
        min-width: 60px;
        padding: 0.3rem;
        font-size: 0.75rem;
    }

    .flag-icon {
        width: 10px;
        height: 8px;
    }

    .phone-group input[type="tel"] {
        padding: 0.3rem;
        font-size: 0.75rem;
    }
}

 /* Tetapkan pilihan tahun dalam dropdown */
.phone-group select {
    min-width: 140px;
    padding: 0.75rem 0.5rem;
    background-color: var(--highlight-color);
    border: 1px solid #CFD8DC;
    border-radius: 4px 0 0 4px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23003087" width="18px" height="18px"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
}

.flag-icon {
    width: 16px;
    height: 12px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.phone-group input[type="tel"] {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #CFD8DC;
    border-radius: 0 4px 4px 0;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.phone-group input[type="tel"]:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 4px rgba(0, 161, 214, 0.2);
}

.help-text {
    font-size: 0.8rem;
    color: #607D8B;
    margin-top: 0.25rem;
}

.error-message {
    font-size: 0.8rem;
    color: var(--error-color);
    margin-top: 0.25rem;
    display: none;
}

.error-message.active {
    display: block;
}

@media (max-width: 768px) {
    .phone-group {
        flex-direction: row;
    }

    .phone-group select {
        min-width: 120px;
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .flag-icon {
        width: 14px;
        height: 10px;
    }

    .phone-group input[type="tel"] {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .phone-group select {
        min-width: 100px;
        padding: 0.4rem;
        font-size: 0.85rem;
    }

    .flag-icon {
        width: 12px;
        height: 9px;
    }

    .phone-group input[type="tel"] {
        padding: 0.4rem;
        font-size: 0.85rem;
    }
}
        .country-code-select {
            width: 120px;
            padding: 0.75rem;
            border: 1px solid #CFD8DC;
            border-radius: 4px;
            font-size: 0.95rem;
            background: var(--light-color);
            transition: border-color 0.3s ease;
        }

        .country-code-select:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 4px rgba(0, 161, 214, 0.2);
        }

        .phone-group input[type="tel"] {
            flex: 1;
            padding: 0.75rem;
            border: 1px solid #CFD8DC;
            border-radius: 4px;
            font-size: 0.95rem;
            transition: border-color 0.3s ease;
        }

        .phone-group input[type="tel"]:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 4px rgba(0, 161, 214, 0.2);
        }

        .help-text {
            font-size: 0.8rem;
            color: #607D8B;
            margin-top: 0.25rem;
        }

        .error-message {
            font-size: 0.8rem;
            color: var(--error-color);
            margin-top: 0.25rem;
            display: none;
        }

        .error-message.active {
            display: block;
        }

        .appointment-section .form-group {
            margin-bottom: 1.25rem;
        }

        .appointment-section label {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            display: block;
        }

        .appointment-section input,
        .appointment-section select,
        .appointment-section textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #CFD8DC;
            border-radius: 4px;
            font-size: 0.95rem;
            transition: border-color 0.3s ease;
        }

        .appointment-section input:focus,
        .appointment-section select:focus,
        .appointment-section textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 4px rgba(0, 161, 214, 0.2);
        }

        .appointment-section .error {
            color: var(--error-color);
            font-size: 0.8rem;
            margin-top: 0.25rem;
            display: none;
            align-items: center;
            gap: 0.5rem;
        }

        .appointment-section .error.active {
            display: flex;
        }

        .appointment-section .progress-bar {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .appointment-section .progress-bar::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 4px;
            background-color: #CFD8DC;
            z-index: 1;
        }

        .appointment-section .progress-bar .progress {
            position: absolute;
            top: 50%;
            left: 0;
            height: 4px;
            background-color: var(--accent-color);
            z-index: 2;
            transition: width 0.3s ease;
        }

        .appointment-section .step-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 16.66%;
            text-align: center;
            z-index: 3;
        }

        .appointment-section .step-indicator .icon {
            width: 36px;
            height: 36px;
            background-color: #CFD8DC;
            color: var(--light-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            transition: background-color 0.3s ease;
        }

        .appointment-section .step-indicator.active .icon {
            background-color: var(--accent-color);
        }

        .appointment-section .step-indicator.completed .icon {
            background-color: var(--primary-color);
        }

        .appointment-section .step-indicator span {
            font-size: 0.85rem;
            color: #607D8B;
        }

        .appointment-section .step-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .appointment-section .step-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .location-step .hall-selection {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .location-step .hall-card {
            background-color: var(--light-color);
            border: 1px solid #CFD8DC;
            border-radius: 8px;
            padding: 1rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .location-step .hall-card:hover {
            border-color: var(--accent-color);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .location-step .hall-card.selected {
            border-color: var(--accent-color);
            background-color: var(--highlight-color);
        }

        .location-step .hall-card h5 {
            font-size: 1rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .location-step .hall-card p {
            font-size: 0.85rem;
            color: #607D8B;
        }

        .location-step .check-icon {
            display: none;
            position: absolute;
            top: 0.5rem;
            right: 0.5rem;
            color: var(--accent-color);
        }

        .location-step .hall-card.selected .check-icon {
            display: block;
        }

        /* Enhanced Table for Step 1 */
        .reminder-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background-color: var(--light-color);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .reminder-table th,
        .reminder-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--neutral-color);
        }

        .reminder-table th {
            background: linear-gradient(135deg, var(--primary-color), #0041A3);
            color: var(--light-color);
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
        }

        .reminder-table tbody tr:nth-child(even) {
            background-color: var(--highlight-color);
        }

        .reminder-table tbody tr:hover {
            background-color: var(--neutral-color);
            transition: background-color 0.3s ease;
        }

        .reminder-table td {
            font-size: 0.9rem;
            color: var(--dark-color);
        }

        /* Date and Time Selection for Step 3 */
        .datetime-selection {
            margin-bottom: 1.5rem;
        }

        /* .calendar-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .calendar-day {
            background-color: var(--light-color);
            border: 1px solid #CFD8DC;
            border-radius: 8px;
            padding: 0.75rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .calendar-day:hover {
            border-color: var(--accent-color);
            background-color: var(--highlight-color);
        }

        .calendar-day.selected {
            border-color: var(--accent-color);
            background-color: var(--neutral-color);
            color: var(--primary-color);
            font-weight: 600;
        }

        .calendar-day.disabled {
            background-color: #ECEFF1;
            color: #B0BEC5;
            cursor: not-allowed;
        }

        .calendar-day .check-icon {
            display: none;
            position: absolute;
            top: 0.25rem;
            right: 0.25rem;
            color: var(--accent-color);
            font-size: 0.8rem;
        }

        .calendar-day.selected .check-icon {
            display: block;
        } */

        .time-selection {
            margin-top: 1.5rem;
        }

        .time-group {
            margin-bottom: 1rem;
        }

        .time-group h5 {
            font-size: 1rem;
            color: var(--primary-color);
            margin-bottom: 0.75rem;
        }

        .time-slots {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
            gap: 0.5rem;
        }

        .time-slot {
            background-color: var(--light-color);
            border: 1px solid #CFD8DC;
            border-radius: 8px;
            padding: 0.5rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .time-slot:hover {
            border-color: var(--accent-color);
            background-color: var(--highlight-color);
        }

        .time-slot.selected {
            border-color: var(--accent-color);
            background-color: var(--neutral-color);
            color: var(--primary-color);
            font-weight: 600;
        }

        .time-slot.disabled {
            background-color: #ECEFF1;
            color: #B0BEC5;
            cursor: not-allowed;
        }

        .time-slot .check-icon {
            display: none;
            position: absolute;
            top: 0.25rem;
            right: 0.25rem;
            color: var(--accent-color);
            font-size: 0.8rem;
        }

        .time-slot.selected .check-icon {
            display: block;
        }

        footer {
            background-color: var(--primary-color);
            color: var(--light-color);
            padding: 2rem 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem;
        }

        .footer-content div {
            flex: 1;
            min-width: 200px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links a {
            color: var(--light-color);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-color);
        }

        .copyright {
            margin-top: 1.5rem;
            font-size: 0.85rem;
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                text-align: center;
            }

            .logo-container {
                margin-bottom: 1rem;
            }

            .nav-menu {
                flex-direction: column;
                gap: 0.75rem;
            }

            .hero {
                padding: 1.5rem;
            }

            .hero img {
                max-width: 90%;
            }

            .section {
                padding: 1rem;
            }

            .section h3 {
                font-size: 1.25rem;
            }

            .appointment-section .progress-bar {
                flex-wrap: wrap;
            }

            .appointment-section .step-indicator {
                width: 33.33%;
                margin-bottom: 0.75rem;
            }

            .phone-group {
                flex-direction: column;
            }

            .country-code-select {
                width: 100%;
            }

            .location-step .hall-selection {
                grid-template-columns: 1fr;
            }

            /* .calendar-grid {
                grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
            } */

            .time-slots {
                grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                padding: 0.75rem;
            }
        }

        @media (max-width: 480px) {
            .site-title h1 {
                font-size: 1.25rem;
            }

            .logo {
                height: 50px;
            }

            .hero p {
                font-size: 0.9rem;
            }

            .document-table th,
            .document-table td {
                display: block;
                width: 100%;
                text-align: center;
                padding: 0.5rem;
            }

            .document-table thead {
                display: none;
            }

            .document-table td::before {
                content: attr(data-label);
                display: block;
                font-weight: 600;
                color: var(--primary-color);
                margin-bottom: 0.25rem;
            }

            .reminder-table th,
            .reminder-table td {
                display: block;
                width: 100%;
                text-align: center;
            }

            .reminder-table thead {
                display: none;
            }

            .reminder-table td::before {
                content: attr(data-label);
                display: block;
                font-weight: 600;
                color: var(--primary-color);
                margin-bottom: 0.25rem;
            }
        }
           /* Enhanced FAQ Section */
    .faq-search-container {
        position: relative;
        max-width: 600px;
        margin: 1.5rem auto;
    }

    .faq-search-container input {
        width: 100%;
        padding: 0.75rem 2.5rem 0.75rem 1rem;
        border: 1px solid var(--neutral-color);
        border-radius: 25px;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        background-color: var(--light-color);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .faq-search-container input:focus {
        outline: none;
        border-color: var(--accent-color);
        box-shadow: 0 0 8px rgba(0, 161, 214, 0.2);
    }

    .faq-search-icon {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--primary-color);
        font-size: 1rem;
    }

    .faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-category {
        margin-bottom: 2rem;
    }

    .faq-category h4 {
        font-size: 1.25rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        border-bottom: 2px solid var(--neutral-color);
        padding-bottom: 0.5rem;
    }

    .faq-item {
        margin-bottom: 1rem;
        border-radius: 12px;
        overflow: hidden;
        background-color: var(--light-color);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .faq-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .faq-question {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
        padding: 1.25rem;
        background: linear-gradient(135deg, var(--primary-color), #0041A3);
        color: var(--light-color);
        font-weight: 600;
        font-size: 1rem;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        text-align: left;
        transition: background 0.3s ease, border-radius 0.3s ease;
    }

    .faq-question:hover {
        background: linear-gradient(135deg, #00205B, var(--primary-color));
    }

    .faq-question[aria-expanded="true"] {
        border-radius: 12px 12px 0 0;
    }

    .faq-question .faq-icon-left {
        font-size: 1.2rem;
        color: var(--accent-color);
    }

    .faq-question .faq-icon {
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    .faq-question[aria-expanded="true"] .faq-icon {
        transform: rotate(180deg);
    }

    .faq-answer {
        padding: 1.5rem;
        font-size: 0.9rem;
        color: var(--dark-color);
        line-height: 1.8;
        background-color: var(--highlight-color);
        display: none;
        border-top: 1px solid var(--neutral-color);
    }

    .faq-answer.active {
        display: block;
        animation: slideDown 0.3s ease;
    }

    .faq-note {
        font-size: 0.85rem;
        color: #607D8B;
        margin-top: 0.75rem;
        font-style: italic;
    }

    .btn-back-to-top {
        display: none;
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        background-color: var(--accent-color);
        color: var(--light-color);
        border: none;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .btn-back-to-top:hover {
        background-color: var(--primary-color);
        transform: scale(1.1);
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
        .faq-search-container {
            max-width: 100%;
        }

        .faq-question {
            font-size: 0.95rem;
            padding: 1rem;
        }

        .faq-answer {
            font-size: 0.85rem;
            padding: 1rem;
        }

        .faq-note {
            font-size: 0.8rem;
        }

        .btn-back-to-top {
            display: block;
            bottom: 1.5rem;
            right: 1.5rem;
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .faq-question {
            font-size: 0.9rem;
            padding: 0.75rem;
            gap: 0.5rem;
        }

        .faq-question .faq-icon-left {
            font-size: 1rem;
        }

        .faq-answer {
            font-size: 0.8rem;
            padding: 0.75rem;
        }

        .faq-category h4 {
            font-size: 1.1rem;
        }
    }
       /* Enhanced Date and Time Selection */
       .datetime-selection {
        margin-bottom: 1.5rem;
    }

    .datetime-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: start;
    }

    /* .calendar-section,
    .time-section {
        background-color: var(--light-color);
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
    }

    .calendar-section:hover,
    .time-section:hover {
        transform: translateY(-4px);
    }

    .calendar-section label,
    .time-section label {
        font-size: 1rem;
        color: var(--primary-color);
        margin-bottom: 0.75rem;
        display: block;
    }

    #calendarContainer {
        max-width: 100%;
        width: 100%;
    }

    .flatpickr-calendar {
        font-family: 'Poppins', sans-serif;
        border-radius: 12px;
        box-shadow: none;
        width: 100%;
        background: transparent;
        padding: 0.5rem;
        max-width: 100%;
        box-sizing: border-box;
    } */

    .flatpickr-innerContainer,
    .flatpickr-rContainer,
    .flatpickr-days,
    .dayContainer {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }

    .flatpickr-day {
        border-radius: 6px;
        transition: all 0.2s ease;
        font-weight: 500;
        width: calc(100% / 7 - 4px);
        height: 40px;
        line-height: 40px;
        margin: 2px;
    }

    .flatpickr-day.available {
        background-color: #E6FFE6 !important;
        color: #2E7D32 !important;
        border: 1px solid #4CAF50 !important;
    }

    .flatpickr-day.booked {
        background-color: #FFEBEE !important;
        color: #d32fc0 !important;
        border: 1px solid #d32fc0 !important;
    }

    .flatpickr-day.selected {
        background-color: #FFD740 !important;
        color: #212121 !important;
        border: 1px solid #FFA000 !important;
        animation: pulse 0.5s ease;
    }

    .flatpickr-day.disabled {
        background-color: #068de8 !important;
        color: #B0BEC5 !important;
        cursor: not-allowed;
    }

    .flatpickr-day:hover:not(.disabled):not(.selected) {
        background-color: var(--highlight-color) !important;
        border-color: var(--accent-color) !important;
    }

    .flatpickr-monthDropdown-months,
    .flatpickr-year {
        font-size: 0.95rem;
        color: var(--primary-color);
        background-color: var(--light-color);
        border-radius: 4px;
        padding: 0.25rem;
    }

    .flatpickr-prev-month,
    .flatpickr-next-month {
        color: var(--accent-color);
        font-size: 1.2rem;
    }

    .selected-appointment-info {
        margin-top: 1rem;
        padding: 0.75rem;
        background-color: var(--highlight-color);
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        color: var(--dark-color);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .selected-appointment-info i {
        color: var(--accent-color);
        font-size: 1rem;
    }

    .time-selection {
        margin-top: 1rem;
    }

    .legend-container {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 1rem;
        font-size: 0.9rem;
        color: var(--dark-color);
        justify-content: center;
    }

    .legend-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .legend-color {
        display: inline-block;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .legend-color.available {
        background-color: #4CAF50;
    }

    .legend-color.booked {
        background-color: #d32fc0;
    }

    .time-group h5 {
        font-size: 1.1rem;
        color: var(--primary-color);
        margin-bottom: 0.75rem;
        text-align: center;
    }

    .time-slots {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 0.75rem;
    }

    .time-slot {
        background-color: var(--light-color);
        border: 2px solid #CFD8DC;
        border-radius: 10px;
        padding: 0.75rem;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        font-size: 0.95rem;
        font-weight: 500;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .time-slot.available {
        border-color: #4CAF50;
        background-color: #E6FFE6;
        color: #2E7D32;
    }

    .time-slot.booked {
        border-color: #d32fc0;
        background-color: #FFEBEE;
        color: #d32fc0;
        cursor: not-allowed;
    }

    .time-slot.selected {
        border-color: #FFA000;
        background-color: #FFD740;
        color: #212121;
        font-weight: 600;
        animation: pulse 0.5s ease;
        box-shadow: 0 0 8px rgba(255, 215, 64, 0.5);
    }

    .time-slot:hover:not(.booked):not(.selected) {
        border-color: var(--accent-color);
        background-color: var(--highlight-color);
        transform: scale(1.05);
    }

    .time-slot .check-icon {
        display: none;
        position: absolute;
        top: -0.5rem;
        right: -0.5rem;
        color: #FFA000;
        font-size: 1.2rem;
        background-color: var(--light-color);
        border-radius: 50%;
        padding: 0.2rem;
    }

    .time-slot.selected .check-icon {
        display: block;
    }

    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }

    @media (max-width: 768px) {
        .datetime-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        /* .calendar-section,
        .time-section {
            padding: 1rem;
        } */

        .time-slots {
            grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        }

        .time-slot {
            font-size: 0.9rem;
            padding: 0.6rem;
        }

        .selected-appointment-info {
            font-size: 0.85rem;
            padding: 0.5rem;
        }
    }

    @media (max-width: 480px) {
        /* .flatpickr-calendar {
            font-size: 0.9rem;
        } */

        .flatpickr-day {
            width: calc(100% / 7 - 4px);
            height: 36px;
            line-height: 36px;
            margin: 2px;
        }

        .time-slot {
            font-size: 0.85rem;
            padding: 0.5rem;
        }

        .legend-container {
            font-size: 0.85rem;
            flex-direction: row;
            justify-content: flex-start;
            gap: 1rem;
        }

        .legend-color {
            width: 16px;
            height: 16px;
        }

        .selected-appointment-info {
            font-size: 0.8rem;
        }
    }
    .step-description {
        font-size: 0.95rem;
        color: #607D8B;
        margin-bottom: 1.5rem;
    }

    .case-selection {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .case-card {
        background-color: var(--light-color);
        border: 2px solid #CFD8DC;
        border-radius: 12px;
        padding: 1.5rem;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .case-card:hover {
        border-color: var(--accent-color);
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .case-card.selected {
        border-color: var(--accent-color);
        background-color: var(--highlight-color);
        box-shadow: 0 0 8px rgba(0, 161, 214, 0.3);
    }

    .case-card h5 {
        font-size: 1.1rem;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .case-card p {
        font-size: 0.9rem;
        color: #607D8B;
    }

    .case-card .check-icon {
        display: none;
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        color: var(--accent-color);
        font-size: 1.2rem;
    }

    .case-card.selected .check-icon {
        display: block;
    }

    .selection-preview {
        margin-top: 1rem;
        padding: 0.75rem;
        background-color: var(--highlight-color);
        border-radius: 8px;
        display: none;
        text-align: center;
    }

    .selection-preview.show {
        display: block;
    }

    .selection-preview p {
        font-size: 0.95rem;
        color: var(--dark-color);
        margin: 0;
    }

    @media (max-width: 768px) {
        .case-selection {
            grid-template-columns: repeat(2, 1fr);
        }

        .case-card {
            padding: 1rem;
        }

        .case-card h5 {
            font-size: 1rem;
        }

        .case-card p {
            font-size: 0.85rem;
        }
    }

    @media (max-width: 480px) {
        .case-selection {
            grid-template-columns: 1fr;
        }

        .case-card {
            padding: 0.75rem;
        }

        .case-card h5 {
            font-size: 0.95rem;
        }

        .case-card p {
            font-size: 0.8rem;
        }
    }

    .step-content[data-step="6"] .confirmation-details {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.step-content[data-step="6"] .confirmation-details p,
.step-content[data-step="6"] .confirmation-details span {
    display: inline !important;
    visibility: visible !important;
}
