:root {
    --primary-gradient: linear-gradient(90deg, #3b82f6 0%, #6ea8ff 60%);
    --accent: #4f9ef8;
    --card-bg: rgba(255, 255, 255, 0.9);
}

html, body {
    height: 100%;
}

html * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

h1, h2{
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.5);
}
h3,h4,h5{
    font-family: cursive;
}

/** HEADER **/

.nav-actions {
    margin-left: auto;
    display: flex;
    gap: 12px;
    align-items: center;
}

.phone-btn {
    border-radius: 30px;
    padding: 8px 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
}

.appointment-btn {
    border-radius: 30px;
    padding: 8px 14px;
    background: var(--accent);
    color: #fff;
    border: none;
}

section.wp-block-group:hover{
    transition: all .5s;
    box-shadow: 6px 6px 9px rgba(0, 0, 0, 0.2);
}

.add-link, .remove-link{
    width: 100%;
}


/** HERO **/
.btn-dental2 > a{
    background: white;
    border: 2px solid;
}


/** BENEFITS **/

#benefits > .is-layout-flex{
    display: flex !important;
    flex-wrap: wrap !important;
}

#benefits .benefit-item {
    border: 1px solid #eee;
    padding: 15px 10px;
    transition: all .5s;
    width: clamp(20rem, 14rem + 5vw, 25rem);
    box-sizing: content-box;
}

#benefits .benefit-item:hover{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#benefits .benefit-item > .wp-block-column{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}


/** SERVICE **/

#services > .is-layout-flex{
    display: flex !important;
    flex-wrap: wrap !important;

}

@media screen and (min-width: 1470px){
    #services > .is-layout-flex{
        justify-content: space-between;
    }
}

#services .service-item{
    border: 1px solid #eee;
    padding: 15px 10px;
    transition: all .5s;
    width: clamp(20rem, 14rem + 5vw, 25rem);
    box-sizing: content-box;
    flex-basis: inherit;
    flex-grow: inherit;
}


/** APPOINTMENT **/

.appointment-form{
    background: white;
    padding: 10px 15px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.appointment-fields{
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

input[name=appointment-name], input[name=appointment-tel]{
    padding: 10px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.1rem;
    outline: none;
    width: 100%;
}

select[name=appointment-select]{
    padding: 10px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.1rem;
    outline: none;
    width: 100%;
    margin-bottom: 30px;
}

input.appointment-form-btn{
    padding: 8px 14px;
    background: var(--accent);
    color: #fff;
    border: none;
    width: 100%;

}


input.appointment-form-btn:hover{
    transition: background .5s;
    background: var(--primary-gradient)
}


/** FAQ **/

.faq-section{
    /*background: #f7fafc;*/
    padding: 80px;
}

.faq-section  .title{
    text-align: center;
    font-size: 2rem;
    filter: invert(1);
    margin-bottom: 60px;
    font-weight: 600;
}

.faq-section  .question-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-section  .question-item > .question{
    color: #2c5282;
    margin-bottom: 15px;
    font-size: 1.2rem;
}


.faq-section  .question-item > .answer{
    color: #718096;
    line-height: 1.6;
    margin: 0;
}


/* Footer */
.footer{
    width: 100%;
    padding:22px 36px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}

.socials{
    display:flex;
    gap:10px;
    align-items:center;
}

@media screen and (max-width: 425px) {
    .socials{
        flex-direction: column;
    }
    .footer {
        font-size: .8rem;
    }
}

