
 input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
	 color: #aca49c;
	 font-size: 0.875em;
}
 input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
	 color: #bbb5af;
}
 input::-moz-placeholder, textarea::-moz-placeholder {
	 color: #aca49c;
	 font-size: 0.875em;
}
 input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
	 color: #bbb5af;
}
 input::placeholder, textarea::placeholder {
	 color: #aca49c;
	 font-size: 0.875em;
}
 input:focus::placeholder, textarea::focus:placeholder {
	 color: #bbb5af;
}
 input::-ms-placeholder, textarea::-ms-placeholder {
	 color: #aca49c;
	 font-size: 0.875em;
}
 input:focus::-ms-placeholder, textarea:focus::-ms-placeholder {
	 color: #bbb5af;
}
/* on hover placeholder */
 input:hover::-webkit-input-placeholder, textarea:hover::-webkit-input-placeholder {
	 color: #e2dedb;
	 font-size: 0.875em;
}
 input:hover:focus::-webkit-input-placeholder, textarea:hover:focus::-webkit-input-placeholder {
	 color: #cbc6c1;
}
 input:hover::-moz-placeholder, textarea:hover::-moz-placeholder {
	 color: #e2dedb;
	 font-size: 0.875em;
}
 input:hover:focus::-moz-placeholder, textarea:hover:focus::-moz-placeholder {
	 color: #cbc6c1;
}
 input:hover::placeholder, textarea:hover::placeholder {
	 color: #e2dedb;
	 font-size: 0.875em;
}
 input:hover:focus::placeholder, textarea:hover:focus::placeholder {
	 color: #cbc6c1;
}
 input:hover::placeholder, textarea:hover::placeholder {
	 color: #e2dedb;
	 font-size: 0.875em;
}
 input:hover:focus::-ms-placeholder, textarea:hover::focus:-ms-placeholder {
	 color: #cbc6c1;
}
/* body {
	 font-family: 'Lato', sans-serif;
	 background: #e2dedb;
	 color: #b3aca7;
}
 header {
	 position: relative;
	 margin: 100px 0 25px 0;
	 font-size: 2.3em;
	 text-align: center;
	 letter-spacing: 7px;*/
}
 #form {
	 position: relative;
	 width: 500px;
	 margin: 50px auto 100px auto;
}
 input {
	 font-family: 'Lato', sans-serif;
	 font-size: 0.875em;
	 /*width: 470px;*/
	 width: 100%;
	 height: 60px;
	 padding: 0px 15px 0px 15px;
	 background: transparent;
	 outline: none;
	 color: #726659;
	 border: solid 1px #b3aca7;
	 border-bottom: none;
	 transition: all 0.3s ease-in-out;
	 -webkit-transition: all 0.3s ease-in-out;
	 -moz-transition: all 0.3s ease-in-out;
	 -ms-transition: all 0.3s ease-in-out;
}
 input:hover {
	 /*background: #b3aca7;
	 color: #e2dedb;*/
	 background: black;
	 color: white;
}
 textarea {
	 /*width: 470px;
	 max-width: 470px;*/
	 width: 100%;
	 max-width: 100%;
	 height: 150px;
	 max-height: 150px;
	 padding: 15px;
	 background: transparent;
	 outline: none;
	 color: #726659;
	 font-family: 'Lato', sans-serif;
	 font-size: 0.875em;
	 border: solid 1px #b3aca7;
	 transition: all 0.3s ease-in-out;
	 -webkit-transition: all 0.3s ease-in-out;
	 -moz-transition: all 0.3s ease-in-out;
	 -ms-transition: all 0.3s ease-in-out;
}
 textarea:hover {
	 /*background: #b3aca7;*/
	 background: black;
	 /*color: #e2dedb;*/
	 color: white;
}
 #submit {
	 /*width: 502px;*/
	 width: 100%;
	 padding: 5;
	 margin: 0px 0px 0px 0px;
	 font-family: 'Lato', sans-serif;
	 font-size: 0.875em;
	 color: #b3aca7;
	 outline: none;
	 cursor: pointer;
	 border: solid 1px #b3aca7;
	 border-top: none;
}
 #submit:hover {
	 color: #e2dedb;
}




/* Floating Contact Button */
.floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 999;  /* Lower value to appear below cookie banner */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.floating-contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.floating-contact-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.floating-contact-btn::before {
    font-size: 35px;
    color: white;
    position: absolute;
}

#contact-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 90%;
}

/* Contact Form Close Button Styling */
#contact-form .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;  /* Position on the right side */
    cursor: pointer;
    font-size: 28px;
    font-weight: bold;
    color: #726659;
    z-index: 10001;
}

#contact-form .close-btn a {
    text-decoration: none;  /* Remove underline */
    color: #726659;
}

#contact-form .close-btn a:hover {
    color: #000;
    text-decoration: none;  /* Keep no underline on hover */
}

.contact-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    display: none;
}

.contact-backdrop.active {
    display: block;
}


.contact-me-btn {
    background-color: #000; /* Black color */
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px; /* Soft rectangular edges */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.contact-me-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* FORM CONTAINER (modal content) */
#contact-form {
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    z-index: 10000;
    max-height: 90vh;
    overflow-y: auto;
}

/* your existing styles */
#form {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.service-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* a bit more space between box and label */
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: Montserrat, sans-serif;
}

input,
textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#submit {
    background-color: #000;
    color: white;
    padding: 1.5rem 0;
    width: 100%;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* COMPLETE CUSTOM CHECKBOX STYLING */
input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border: 2px solid #333;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    margin: 0;
    outline: none;
}

input[type="checkbox"]:checked {
    background-color: #000;
}

/* Add checkmark pseudo-element */
input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    font-weight: bold;
}

/* MOBILE: Bigger checkboxes + uncheck fix */
@media (max-width: 768px) {
    input[type="checkbox"] {
        width: 32px !important;
        height: 32px !important;
        border-width: 3px;
    }
    
    input[type="checkbox"]:checked::after {
        font-size: 20px;
    }
    
    /* Ensure labels don't interfere with tapping */
    .checkbox-container {
        padding: 12px 0;  /* more touch area */
        position: relative;
        z-index: 1;
    }
    
    .checkbox-container label {
        pointer-events: none;  /* prevent label blocking checkbox */
        user-select: none;
        line-height: 1.3;
    }
}

/* MOBILE OPTIMIZATIONS */
@media (max-width: 768px) {
    #contact-form {
        width: 95%;
        padding: 12px;
        max-height: 70vh;
        border-radius: 8px;
        /* wider margins from screen edges */
        margin-left: 2.5%;
        margin-right: 2.5%;
    }

    #form {
        padding: 8px;
        font-size: 14px;
    }


}

/* PRECISE HOVER OVERRIDE - PROTECTS CHECKBOXES */
#contact-form input[type="text"]:hover,
#contact-form input[type="email"]:hover,
#contact-form input[type="tel"]:hover,
#contact-form textarea:hover {
    background: none !important;
    background-color: inherit !important;
}

/* CHECKBOX HOVER - ALLOW NORMAL FUNCTION */
#contact-form input[type="checkbox"]:hover {
    background-color: white !important; /* unchecked hover */
}

#contact-form input[type="checkbox"]:checked:hover {
    background-color: #000 !important; /* checked hover stays black */
}

/* SUBMIT BUTTON HOVER - KEEP YOUR DESIGN */
#contact-form #submit:hover {
    background-color: #333 !important; /* subtle darken instead of contact.css behavior */
}

/* PLACEHOLDER - NORMAL BEHAVIOR */
#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: #999 !important;
}

/* BLACK BOLD TEXT CURSOR IN MODAL INPUTS */
#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form input[type="tel"],
#contact-form textarea {
    color: #000 !important;
    font-weight: 600 !important; /* bold */
    -webkit-text-fill-color: #000 !important; /* webkit override */
}

/* Active cursor/focus state */
#contact-form input:focus,
#contact-form textarea:focus {
    color: #000 !important;
    font-weight: 600 !important;
}

/* Ensure caret (cursor) is visible */
#contact-form input::selection,
#contact-form textarea::selection {
    background: #b3d9ff;
    color: #000;
}

/* FIX CUT-OFF BOTTOM BORDERS */
#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form input[type="tel"],
#contact-form textarea {
    border-bottom: 1px solid #ddd !important;
    border-bottom-style: solid !important;
}

/* Ensure full border on focus too */
#contact-form input:focus,
#contact-form textarea:focus {
    border: 2px solid #007bff !important; /* nice focus ring */
    border-bottom: 2px solid #007bff !important;
}

/* MOBILE SUCCESS STATE - FORCE GREEN BUTTON */
#contact-form #submit.success {
    background-color: #28a745 !important;
    color: white !important;
    border: none !important;
}

/* MOBILE ERROR STATE */
#contact-form #submit.error {
    background-color: #dc3545 !important;
    color: white !important;
}

/* Ensure disabled state works on mobile */
#contact-form #submit:disabled,
#contact-form #submit[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}