.booking-section {
    width: 100%;
    background: linear-gradient(to bottom, #001740 0%, #ffffff 120%);
    padding: 80px 0 120px 0;
}

.booking-container {
    width: 95%;
    max-width: 800px;
    margin: 0 auto;
}


.booking-header {
    text-align: center;
    margin-bottom: 50px;
}

.booking-title {
    font-family: 'Candal', sans-serif;
    font-size: 48px;
    color: #f4c400;
    margin: 0 0 10px 0;
}

.booking-desc {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    color: #ffffff;
    margin: 0;
}

.form-heading {
    font-family: 'Candal', sans-serif;
    font-size: 28px;
    color: rgba(255, 253, 240, 0.5); 
    text-align: center;
    margin-bottom: 40px;
}


.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 30px; 
}

.full-width { width: 100%; }
.half-width { width: 48%; }

.form-group {
    display: flex;
    flex-direction: column;
}


.form-group label {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    padding-left: 10px; 
}


.form-group input, 
.form-group select, 
.form-group textarea {
    background-color: transparent;
    border: 3px solid #001740; 
    border-radius: 17px; 
    padding: 15px 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: #ffffff;
    transition: all 0.3s ease;
}


.form-group input::placeholder, 
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select:invalid,
.form-group select option[value=""] {
    color: rgba(255, 255, 255, 0.6);
}


.form-group select option {
    background-color: #001740;
    color: #ffffff;
}


.form-group input:hover, .form-group input:focus,
.form-group select:hover, .form-group select:focus,
.form-group textarea:hover, .form-group textarea:focus {
    border-color: #f4c400; 
    outline: none;
    font-weight: 700;
}


.form-submit-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}


.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 18px;
    padding-right: 50px; 
}


.form-group select option {
    background-color: #001740; 
    color: #ffffff;
    padding: 10px; 
}


.form-group select option:checked,
.form-group select option:hover,
.form-group select option:focus {
    background-color: #f4c400 !important; 
    color: #001740 !important; 
}


.form-group input:-webkit-autofill {
    -webkit-text-fill-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s !important;
    border: 3px solid #001740 !important;
}


.form-group input:-webkit-autofill:hover, 
.form-group input:-webkit-autofill:focus {
    border: 3px solid #f4c400 !important; 
}


.form-submit-wrapper {
    display: flex;
    flex-direction: column; 
    align-items: center;   
    margin-top: 20px;
}

.whatsapp-note {
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    color: #001740;
	font-weight: 700;
    opacity: 0.8; 
    text-align: center;
    margin-top: 15px; 
    max-width: 500px;
    line-height: 1.4;
}


.site-footer {
    position: relative; 
}

.scroll-to-top {
    position: absolute;
    bottom: 100%; 
    right: 30px; 
    margin-bottom: 10px; 
    z-index: 9999; 
    width: 60px; 
    height: 60px;
    display: flex; 
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.scroll-to-top img {
    width: 50px; 
    height: auto;
    display: block;
}

.scroll-to-top:hover {
    transform: translateY(-5px); 
}


@media screen and (max-width: 800px) {
	
		.scroll-to-top {
    position: absolute;
    bottom: 100%;
    right: 10px; 
    margin-bottom: 5px; 
}
	
	.scroll-to-top img {
    width: 30px;
}
    
    
    h2, h3, h4,
    .form-heading {
        font-size: 26px !important;
        line-height: 1.2 !important;
    }
    
    .form-heading {
        margin-top: 50px !important;
    }

    
    .booking-title {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

   
    p, span, .booking-desc, .form-group label, 
    .whatsapp-note {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }

   
    .trend-btn {
        font-size: 12px !important;
        padding: 10px 18px !important;
    }

   
    .booking-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box;
    }

   
    .booking-section {
        padding: 40px 0 60px 0 !important; 
    }

    .booking-header {
        margin-bottom: 30px !important;
    }

   
    .appointment-form {
        gap: 15px !important; 
    }

    .form-row {
        gap: 15px !important;
    }

  
    .form-group input, 
    .form-group select, 
    .form-group textarea {
        font-size: 12px !important;
        padding: 12px 15px !important;
        border-radius: 12px !important;
    }
}


@media screen and (max-width: 600px) {
	
		.scroll-to-top {
    position: absolute;
    bottom: 100%; 
    right: 10px; 
    margin-bottom: -5px; 
}
	
	.scroll-to-top img {
    width: 20px;
}
    
  
    h1, h2, h3, h4, 
    .form-heading {
        font-size: 20px !important;
        line-height: 1.2 !important;
        letter-spacing: 1px !important;
        text-align: center !important;
    }


    .booking-title {
        font-size: 28px !important; 
        line-height: 1.2 !important;
        letter-spacing: 1px !important;
        text-align: center !important;
    }

  
    p, span, .booking-desc, .form-group label, 
    .whatsapp-note {
        font-size: 12px !important;
        line-height: 1.5 !important;
        text-align: center !important;
        text-align-last: center !important;
    }

 
    .trend-btn {
        font-size: 10px !important;
        padding: 8px 16px !important; 
        margin: 0 auto !important;
		margin-bottom: 20px !important;
    }
	

   
    .booking-container {
        display: flex !important;
        flex-direction: column !important; 
        align-items: center !important; 
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .booking-section {
        padding: 40px 0 !important;
    }

    .booking-header {
        margin-bottom: 30px !important;
        width: 100% !important;
    }

 
    .appointment-form {
        width: 100% !important;
        gap: 15px !important;
    }

    .form-heading {
        margin-top: 10px !important;
        margin-bottom: 20px !important;
    }

    .form-group label {
        padding-left: 0 !important; 
    }

    
    .form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
    }

    .half-width {
        width: 100% !important;
    }

 
    .form-group input, 
    .form-group select, 
    .form-group textarea {
        font-size: 12px !important;
        padding: 12px 15px !important;
        border-radius: 10px !important;
        text-align: center !important; 
    }


    .whatsapp-note {
        font-size: 10px !important;
        font-weight: normal !important; 
        line-height: 1.5 !important;
        margin-top: 15px !important;
    }
    
    .form-submit-wrapper {
        margin-top: 10px !important;
        width: 100% !important;
    }
}