/* ======= Typography style ======= */
:root {
    --primary-pink: #E83F8E;
    --secondary-blue: #153CAF;
    --dark-blue: #05054f;
    --text-gray: #67696c;
    --bg-color: #FAFAF7;
    --light-gray: #F5F4EE;
    --soft-white: #F9F9F9;
    --black: #000000;
    --white: #FFFFFF;

}







html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;

}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}

body {
    color: var(--text-gray);
    background: var(--bg-color);
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

p {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: var(--text-gray);
}


h1,
h2 {
    font-family: 'Boldonse', sans-serif;
    color: var(--secondary-blue);
    font-weight: 400;
    line-height: 1.5em;
    margin-bottom: 5px;
    margin: 0 0 15px 0;
}













/* BreadCrumb Section */
.breadcrumb-box {
    position: relative;
    background: url('../img/profesional-upholstery-cleaning3.webp') center center / cover no-repeat;
    width: 100%;
    padding: clamp(4rem, 10vw, 8rem) 1rem;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.breadcrumb-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.breadcrumb-content {
    max-width: 900px;
}


.breadcrumb-content>* {
    position: relative;
    z-index: 2;
}

.breadcrumb-content h1 {
    text-transform: uppercase;
    font-family: 'Boldonse', sans-serif;
    font-size: clamp(35px, 6vw, 55px);
    color: var(--white);
}

.breadcrumb-content p {
    text-transform: capitalize;
    font-family: 'Roboto Flex', sans-serif;
    font-size: 16px;
    color: var(--white);
}


.breadcrumb-content a {
    position: relative;
    color: var(--white);
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size 0.3s ease;
}

.breadcrumb-content a:hover {
    background-size: 100% 2px;
}



.breadcrumb-content span {
    text-transform: capitalize;
    text-decoration: none;
    color: var(--white);
}







@media (max-width:945px) {
    .breadcrumb-content {
        max-width: 900px;
        margin-top: 40px;
    }
}

/* BreadCrumb Section */

























/* contact Section */


.contact-item {
    padding: 40px 20px;
    margin: 10px 0px;
    border-radius: 20px;
    align-items: center;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}


.contact-item:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-style: none;
}


.contact-icon {
    width: 80px;
    height: 80px;
    aspect-ratio: 1/1;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-blue);
}

.contact-icon i {
    font-size: 25px;
    color: var(--white);
}

.contact-contain {
    text-align: center;
    margin-top: 20px;
}

.contact-contain h3 {
    font-size: 20px;
    font-family: 'Boldonse', sans-serif;
    color: var(--dark-blue);

}


.contact-contain p {
    margin: 0px;
    color: var(--text-gray);
}

/* contact Section */




















/* contact Section 2 */

.contact-section-form {
    position: relative;
    overflow: hidden;
}

.contact-section-form::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/map.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.contact-section-form>* {
    position: relative;
    z-index: 1;
}





/* ===== FORM CONTAINER ===== */
.form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
}

/* ===== INPUTS & SELECT ===== */
.form-control,
.form-select {
    height: 55px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: none;
}



/* Textarea */
textarea.form-control {
    height: auto;
    min-height: 140px;
    resize: none;
}

/* Focus Effect */
.form-control:focus,
.form-select:focus {
    border-color: #1e6bff;
    /* primary blue */
    box-shadow: 0 0 0 3px rgba(30, 107, 255, 0.08);
}

/* Placeholder color */
.form-control::placeholder {
    color: #9ca3af;
}

/* Full width button on small screens */
@media (max-width: 576px) {
    .button-2 {
        width: 100%;
        text-align: center;
    }
}


/* Tablets */
@media (max-width: 991px) {
    .form-container {
        padding: 30px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .form-container {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .form-control,
    .form-select {
        height: 50px;
        font-size: 14px;
    }

    textarea.form-control {
        min-height: 120px;
    }

}

/* Small Mobile */
@media (max-width: 480px) {
    .form-container {
        padding: 20px 15px;
    }
}

/* ===== ROW FIX FOR SMALL SCREENS ===== */
@media (max-width: 767px) {
    .row.mb-3>div {
        margin-bottom: 15px;
    }
}

/* Remove extra bottom margin for last input in row */
@media (min-width: 768px) {
    .row.mb-3>div:last-child {
        margin-bottom: 0;
    }
}



/* contact Section 2 */































/* map section */
.map-section {
    width: 100%;
    padding-bottom: 20px;
    overflow: hidden;
}


.map-section iframe {
    width: 100%;
    border-radius: 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

/* map section */