/* Additional booking styles */
.booking-section h1 {
    color: var(--primary-color) !important;
    text-align: center;
    margin-bottom: 40px;
}

/* Tab Icons */
.tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    vertical-align: middle;
}

.tab-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-nav a {
    color: #555 !important;
}

.tab-nav a.active {
    color: #00b13f !important;
}

.tab-nav a.active .tab-icon svg {
    color: #00b13f;
}

.tab-nav a:not(.active) .tab-icon svg {
    color: #555;
}

/* Form Input Icons */
.form-group-with-icon {
    position: relative;
}

.input-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    pointer-events: none;
    width: 20px;
    height: 20px;
}

.input-icon svg {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}

.form-group-with-icon select,
.form-group-with-icon input[type="date"],
.form-group-with-icon input[type="tel"],
.form-group-with-icon input[type="text"],
.form-group-with-icon input[type="number"],
.form-group-with-icon input[type="time"] {
    padding-left: 45px !important;
    padding-right: 15px !important;
}

.form-group-with-icon textarea {
    padding-left: 45px !important;
    padding-right: 15px !important;
    padding-top: 12px !important;
}

.form-group-with-icon .input-icon-note {
    top: 42px;
    transform: translateY(0);
    align-items: flex-start;
}

/* Ensure icons don't overlap with select dropdown arrow */
.form-group-with-icon select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px !important;
}

/* Radio Button Styling */
.radio-group {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
    position: relative;
}

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

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #a6a6a6;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: #00b13f;
    background-color: #00b13f;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
}

.radio-text {
    font-weight: 600;
    color: var(--text-color);
}

.radio-label input[type="radio"]:checked ~ .radio-text {
    color: #00b13f;
}

.radio-label:hover .radio-custom {
    border-color: #00b13f;
}

/* Price Display with Map Link */
.price-display {
    background: #f5f5f5;
    padding: 15px 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.price-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.price-content p {
    margin: 0;
    font-size: 18px;
    color: var(--text-color) !important;
}

.price-result {
    font-weight: bold;
    color: #00b13f !important;
    font-size: 24px;
}

.map-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-color) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

.map-link svg {
    width: 16px;
    height: 16px;
    color: #00b13f;
}

.map-link:hover {
    color: #00b13f !important;
}

.map-link:hover svg {
    color: #00b13f;
}

/* Submit Button */
.datxe-submit {
    width: 100%;
    padding: 15px;
    background: #00b13f;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.datxe-submit:hover {
    background: #009933;
}

/* Booking Section Improvements */
.booking-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.booking-section h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tab Navigation Improvements */
.tab-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0;
}

.tab-nav li {
    margin: 0;
}

.tab-nav a {
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 16px;
}

.tab-nav a:hover {
    color: #00b13f !important;
    background-color: #f0f8f4;
}

.tab-nav a.active {
    border-bottom-color: #00b13f;
    background-color: #f0f8f4;
}

/* Form Improvements */
.booking-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 0;
}

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

.form-group select,
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group input[type="number"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00b13f;
    box-shadow: 0 0 0 3px rgba(0, 177, 63, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Input wrapper improvements */
.input-wrapper {
    position: relative;
}

.input-icon {
    color: #888;
    transition: color 0.3s ease;
}

.form-group-with-icon select:focus ~ .input-icon,
.form-group-with-icon input:focus ~ .input-icon,
.form-group-with-icon textarea:focus ~ .input-icon {
    color: #00b13f;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        padding: 25px 20px;
    }
    
    .tab-nav {
        flex-direction: column;
        gap: 5px;
    }
    
    .tab-nav a {
        padding: 12px 15px;
    }
}

