/* === Stylish Input and Textarea === */
input.stylish-input,
textarea.stylish-input {
    width: 100%;                /* Take full width of the parent */
    max-width: 100%;            /* Prevent accidental shrinkage */
    border: none;
    border-radius: 12px;
    padding: 30px 20px;
    font-size: 18px;
    background-color: #f9f9f9;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    color: #333;
    resize: none;
    display: block;
}

/* On focus effect */
input.stylish-input:focus,
textarea.stylish-input:focus {
    background-color: #fff;
    box-shadow: 0 0 8px rgba(207, 144, 66, 0.4);
    outline: none;
}

/* === Stylish Labels === */
label.form-label {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: #333;
}

/* === Stylish Submit Button === */
.stylish-submit-btn {
    background: #cf9042;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    padding: 16px;
    color: white;
    width: 100%;
    margin-top: 15px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

/* Hover and focus effects */
.stylish-submit-btn:hover,
.stylish-submit-btn:focus {
    background-color: #a87130;
    transform: translateY(-2px);
    outline: none;
}
.contact-heading {
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.contact-heading:hover {
    color: #a87130;
}
/* Stylish heading for the contact form */
.contact-form h3 {
    font-size: 30px;
    font-weight: 700;
    color: #5c3317;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif; /* More elegant typeface */
    text-transform: capitalize;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
    line-height: 1.3;
}

.contact-form h3::after {
    content: '';
    width: 70px;
    height: 3px;
    background-color: #d19642;
    display: block;
    margin-top: 10px;
    border-radius: 2px;
    transition: width 0.4s ease;
}

