@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
body {
    margin: 0;
    background-color: #fdf8f4;
    color: #333;
}

.container {
    max-width: none;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background-color: #fdf8f4;
    padding: 20px 0 0 0;
    border-bottom: 1px solid #eee;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-clove {
    font-size: 2em;
    font-weight: bold;
    color: #e98f47;
}

.logo-smiley {
    color: #333;
}

.logo-dental {
    font-size: 0.8em;
    color: #333;
    letter-spacing: 2px;
}

.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn i {
    margin-right: 8px;
}

.primary-btn {
    background-color: #f1a05a;
    color: white;
    border: none;
}

.primary-btn:hover {
    background-color: #e98f47;
}

.secondary-btn {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.secondary-btn:hover {
    background-color: #f8f8f8;
}

@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .header-buttons {
        justify-content: center;
    }
}

.hero-section {
    background-color: #fdf8f4;
    max-width: none;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;

    width: 99%;
    max-width: none;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    min-width: 67.2%;
    background: url('images/hospital_bg.png') no-repeat center center / cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    padding: 120px 20px;
    box-sizing: border-box;
}

.hero-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: url('images/doctor.png') no-repeat right center / contain;
    z-index: 1;
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 500px;
    justify-content: left;
    background: rgba(255,255,255,0.50);
    color: #111; 
    border-radius: 8px;
    padding: 32px 78px 32px 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.hero-content {
    max-width: 60%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero-content > * {
    max-width: 50%;
}
@media (max-width: 900px) {
    .hero-content {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
    .hero-content > * {
        max-width: 90%;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-content h1, p {
    
    color: #111; 
}

.hero-content .primary-btn {
    width: 50%;
    min-width: 120px;
    max-width: 220px;
    display: inline-block;
    text-align: center;

}

.hero-right {
    flex: 1;
    min-width: 200px;
    background-color: #fdf8f4;
    padding: 120px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container h2 {
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.form-description {
    font-size: 1em;
    margin-bottom: 20px;
    color: #555;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgb(198 136 136);
    border-radius: 22px;
    font-size: 1em;
    box-sizing: border-box;
}

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

.captcha-group input[type="text"] {
    flex-grow: 1;
}

.captcha-btn {
    padding: 12px 15px;
    background-color: #5a2d0c;
    color: white;
    border: none;
    border-radius: 22px;
    font-size: 1em;
    cursor: pointer;
    flex-shrink: 0;
}

.terms-group {
    display: flex;
    align-items: flex-start;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.terms-group input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 4px;
}

.terms-group a {
    color: #000;
    font-weight: 400;
    text-decoration: none;
}

.terms-group a:hover {
    text-decoration: underline;
    
}

.submit-btn {
    width: 100%;
    text-align: center;
    background-color: #f58420;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #e98f47;
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        min-width: 100%;
        padding: 30px 20px;
    }

    .hero-left {
        height: 300px;
    }

    .hero-content {
        text-align: center;
        max-width: none;
    }

    .hero-content .primary-btn {
        width: auto;
        min-width: unset;
        margin: 0;
    }
    

    .captcha-group {
        flex-direction: column;
        gap: 5px;
    }

    .captcha-group input[type="text"],
    .captcha-btn {
        width: 100%;
    }
}

.rotating {

    position: relative;
    animation: scroll-off-left-to-off-right 10s linear infinite;

}

@keyframes scroll-left-to-right {
    0% {
        transform: translateX(0);

    }

    100% {
        transform: translateX(500px);
    }
}

.rct-section-container {
    max-width: 1160px;
    margin: 40px auto 0 auto;
    padding: 0 16px;
}

.rct-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.rct-subtitle {
    text-align: center;
    color: #444;
    margin-bottom: 30px;
    font-size: 1rem;
}

.rct-box-row {
    display: flex;
    gap: 88px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

@media (max-width: 1100px) {
    .rct-box-row {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .rct-box-row {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 15px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start;
        gap: 15px;
    }
    .rct-box-row::-webkit-scrollbar {
        display: none;
    }
    .rct-card {
        flex-shrink: 0;
        flex-basis: 80vw;
        width: 80vw;
        max-width: 250px;
        margin-right: 15px;
        margin-bottom: 0;
        flex-direction: column;
        align-items: center;
        height: auto;
    }
    .rct-card:last-child {
        margin-right: 0;
    }
}

.rct-card {
    display: flex;
    background: #f7f5f3;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    width: 500px;
    min-height: 330px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(180, 180, 180, .02);
}

.rct-img {
    width: 230px;
    object-fit: contain;
    background: none;
    border-radius: 18px 0 0 18px;
    align-self: center;
}

.rct-info {
    background: #fff;
    padding: 26px 24px 26px 24px;
    border-radius: 0 18px 18px 0;
    border: 1.5px solid #ffe6cc;
    border-left: none;
    min-width: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.rct-info h3 {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 1.13rem;
    font-weight: 700;
}

.rct-info .rct-desc {
    color: #444;
    font-size: 0.98rem;
    margin-bottom: 12px;
}

.rct-types-title {
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

.rct-info ul {
    margin: 0 0 14px 18px;
    padding: 0;
    font-size: 0.96rem;
    color: #333;
}

.rct-price-label {
    font-size: 0.97rem;
    color: #ff6600;
    margin: 0 0 2px 0;
    font-weight: 600;
}

.rct-price {
    font-weight: 700;
    font-size: 1.17rem;
    color: #262626;
    margin: 0 0 14px 0;
}

.rct-consult-btn {
    border: none;
    background: #ff8800;
    color: #fff;
    border-radius: 22px;
    padding: 10px 24px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.2s;
    margin-top: 6px;
}

.rct-consult-btn:hover {
    background: #ff6600;
}



.rsmiles-section {
    max-width: 1200px;
    margin: 32px auto 0 auto;
    padding: 0 16px;
    background: #fcf7f2;
}

.rsmiles-title {
    text-align: center;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.rsmiles-subtitle {
    text-align: center;
    color: #585858;
    margin-bottom: 20px;
    font-size: 1rem;
}

.rsmiles-gallery {
    display: flex;
    gap: 88px;
    justify-content: center;
    flex-wrap: wrap;
}

.rsmiles-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 207px;
    min-width: 143px;
    height: 153px;
}

.rsmiles-img {
    width: 100%;
    height: 163px;
    object-fit: cover;
    border-radius: 15px;
    background: #eee;
    border: none;
}

.rsmiles-caption {
    margin-top: 8px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    font-size: 1em;
    align-items: center;
}

.rsmiles-name {
    color: #2f2f2f;
    font-weight: 500;
}

.rsmiles-city {
    color: #e98f47;
    font-weight: 500;
    font-size: 1em;
    margin-left: 8px;
}

@media (max-width: 900px) {
    .rsmiles-gallery {
        gap: 14px;
    }

    .rsmiles-card {
        width: 160px;
    }

    .rsmiles-img {
        width: 65px;
        height: 80px;
    }
}

@media (max-width: 600px) {
    .rsmiles-gallery {
        flex-direction: column;
        align-items: center;
    }

    .rsmiles-card {
        width: 80vw;
        margin-bottom: 16px;
    }
}

.clove-why-container {
    width: 100%;
    background: #fff;
    padding: 40px 0 0 0;
}

.clove-why-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.clove-why-subtitle {
    color: #5a5a5a;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.clove-why-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 1180px;
    margin: 0 auto;
    gap: 64px;
}

.clove-why-left {
    flex: 1 1 350px;
    max-width: 540px;
}

.clove-why-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.clove-why-item {
    cursor: pointer;
    border-bottom: 1px solid #eee4da;
    margin-bottom: 0;
    transition: background 0.15s;
}

.clove-why-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.08em;
    color: #222;
    font-weight: 400;
    padding: 18px 26px 12px 0;
}

.clove-plus {
    font-size: 1.5em;
    color: #e98f47;
    font-weight: 700;
    margin-left: 20px;
    transition: transform 0.18s;
    user-select: none;
}

.clove-why-item:last-child {
    border-bottom: none;
}

.clove-why-item-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 1em;
    color: #4c4c4c;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.25s, margin 0.2s;
    background: #fff;
    padding: 0 0;
    margin: 0;
}

.clove-why-item.open .clove-why-item-answer {
    max-height: 140px;
    padding: 0 0 12px 0;
    margin: -4px 0 12px 0;
}

.clove-why-item.open .clove-plus {
    transform: rotate(45deg);
    color: #fa881e;
}

.clove-why-item:focus .clove-why-question,
.clove-why-item:hover .clove-why-question {
    color: #fa881e;
}

.clove-why-right {
    flex: 0 0 330px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.clove-why-image {
    width: 330px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    background: #f6f6f6;
    box-shadow: 0 2px 10px rgba(100, 85, 50, 0.04);
    display: block;
}

@media (max-width: 950px) {
    .clove-why-content {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .clove-why-right {
        justify-content: center;
    }

    .clove-why-image {
        width: 70vw;
        max-width: 330px;
        height: auto;
    }
}

@media (max-width: 600px) {
    .clove-why-left {
        max-width: 98vw;
    }

    .clove-why-question {
        font-size: .98em;
        padding-right: 0;
    }

    .clove-why-image {
        max-width: 98vw;
        height: auto;
    }
}

.appt-form-section {
    background: #fef9f4;
    padding: 40px 0 32px 0;
    border-radius: 18px;
    max-width: 95vw;
    width: 92vw;
    margin: 40px auto 0 auto;
    box-sizing: border-box;
}

.appt-form-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #262626;
}

.appt-form-row {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 90vw;
    width: 92vw;
    margin: 0 auto;
}

@media (min-width: 960px) {
    .appt-form-row {
        flex-direction: row;
        align-items: flex-start;
        gap: 18px;
        max-width: 1650px;
    }
}

.appt-form-input,
.appt-form-input-captcha {
    flex: 1 1 310px;
    padding: 20px;
    border: 1.3px solid #ffe4cc;
    border-radius: 35px;
    font-size: 1.16em;
    background: #fff;
    outline: none;
    margin-bottom: 0;
    transition: border-color 0.18s;
    box-sizing: border-box;
}

.appt-form-input:focus,
.appt-form-input-captcha:focus {
    border-color: #ff9922;
}

.appt-form-captcha-wrap {
    display: flex;
    flex: 1 1 310px;
    min-width: 220px;
    align-items: center;
    position: relative;
}

.appt-form-input-captcha {
    flex: 2;
    margin-right: -60px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.appt-form-captcha-box {
    flex: none;
    min-width: 120px;
    height: 100%;
    background: #402110;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 35px;
    border-bottom-right-radius: 35px;
    font-size: 1.12em;
    position: relative;
    left: -6px;
    z-index: 2;
    font-weight: 500;
}

.appt-form-actions {
    display: contents;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    margin-top: 14px;
    width: 100%;
    max-width: 800px;
}

@media (min-width: 960px) {
    .appt-form-row {
        flex-wrap: wrap;
        align-items: stretch;
    }

    .appt-form-actions {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
        width: 100%;
        margin-top: 0;
    }
}

.appt-form-checkbox-wrap {
    display: flex;
    align-items: center;
    font-size: 1em;
    color: #454545;
    gap: 10px;
    user-select: none;
}

.appt-form-checkbox-wrap input[type="checkbox"] {
    accent-color: #ffa047;
    width: 20px;
    height: 20px;
    margin-right: 7px;
}

.appt-form-checkbox-wrap a {
    color: #402110;
    text-decoration: underline;
    transition: color 0.18s;
}

.appt-form-checkbox-wrap a:hover {
    color: #ff8800;
}

.appt-form-btn {
    background: #fa881e;
    color: #fff;
    border: none;
    border-radius: 35px;
    padding: 18px 70px;
    font-size: 1.17em;
    font-weight: 500;
    cursor: pointer;
    margin-left: auto;
    transition: background 0.19s;
    box-shadow: none;
    margin-top: 6px;
    min-width: 240px;
}

.appt-form-btn:hover {
    background: #e97400;
}

@media (max-width: 900px) {
    .appt-form-section {
        max-width: none;
        width: 100vw;
        border-radius: 0;
        padding: 24px 0 20px 0;
    }

    .appt-form-row {
        gap: 15px;
        width: 97vw;
    }

    .appt-form-btn {
        width: 100%;
        min-width: 80vw;
        padding: 16px 0;
    }

    .appt-form-action {
        flex-direction: column;
    }

    .appt-form-captcha-box {
        min-width: 60px;
        font-size: 0.97em;
    }
}

.labcard-section {
    max-width: 95vw;
    margin: 38px auto 0 auto;
    padding: 0 12px;
}

.labcard-title {
    text-align: center;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.labcard-desc {
    text-align: center;
    color: #585858;
    margin-bottom: 28px;
    font-size: 1rem;
}

.labcard-cards {
    display: flex;
    flex-direction: row;
    gap: 34px;
    justify-content: center;
    flex-wrap: nowrap;
}

.labcard-card {
    width: 546px;
    height: 344px;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.labcard-card-content {
    width: 96%;
    margin: 0 auto 16px auto;
    background: rgba(27, 39, 54, 0.94);
    border-radius: 12px;
    padding: 20px 18px 20px 22px;
    color: #fff;
    position: relative;
    z-index: 2;
    min-height: 125px;
    display: flex;
    flex-direction: column;
}

.labcard-brown-overlay {
    background: rgba(101, 61, 28, 0.95);
}

.labcard-card-title {
    font-size: 1.10em;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.labcard-aips {
    color: #ffad5d;
    font-size: 1.17em;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.labcard-card-body {
    font-size: 1.01em;
    font-weight: 400;
    color: #efefef;
    margin-bottom: 18px;
    margin-top: 4px;
}

.labcard-learn {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 6px;
}

.labcard-learn-icon {
    color: #fa881e;
    font-size: 1.1em;
    margin-right: 6px;

}

.labcard-learn-link {
    color: #ffad5d;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    transition: text-decoration 0.18s;
}

.labcard-learn-link:hover {
    text-decoration: underline;
}

.labcard-learn-arrow {
    color: #ffad5d;
    font-size: 1.11em;
    font-weight: 900;
    margin-left: 1px;
}

@media (max-width: 1100px) {
    .labcard-cards {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 18px;
        padding: 0 15px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start;
    }
    .labcard-cards::-webkit-scrollbar {
        display: none;
    }
    .labcard-card {
        flex-shrink: 0;
        width: 92vw;
        max-width: 370px;
        min-width: 180px;
        margin-right: 18px;
        margin-bottom: 0;
        height: 250px; 
    }
    .labcard-card:last-child {
        margin-right: 0;
    }
}
@media (max-width: 650px) {
    .labcard-cards {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 15px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start;
        gap: 15px;
    }
    .labcard-cards::-webkit-scrollbar {
        display: none;
    }
    .labcard-card {
        flex-shrink: 0;
        flex-basis: 80vw;
        width: 80vw;
        max-width: 250px;
        margin-right: 15px;
        margin-bottom: 0;
        height: auto;
    }
    .labcard-card:last-child {
        margin-right: 0;
    }
}
.grrev-section {
    background: #fef8f4;
    border-radius: 10px;
    max-width: 99vw;
    margin: 16px auto 0 auto;
    padding: 22px 12px 32px 12px;
}

.grrev-title {
    text-align: center;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #262626;
}

.grrev-flexwrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    max-width: 1150px;
    margin: 0 auto;
}

.grrev-google-score {
    background: none;
    min-width: 298px;
    max-width: 314px;
    height: 230px;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 10px;
    border-right: 2px solid #f5e3d0;
}

.grrev-google-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.grrev-google-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
}

.grrev-rating-star {
    font-size: 1.6em;
    color: #ffbe45;
    margin-right: 2px;
}

.grrev-rating-value {
    font-size: 1.18em;
}

.grrev-rating-count {
    margin-top: 2px;
    color: #ff9900;
    font-weight: 600;
    font-size: 1.05em;
}

.grrev-rating-label {
    color: #696969;
    margin-top: 3px;
    font-size: 1em;
}

.grrev-rating-count-value {
    color: #ff9900;
    font-weight: 700;
}

.grrev-reviews-container {
    display: flex;
    gap: 22px;
    justify-content: flex-start;
    align-items: stretch;
    margin-left: 32px;
    flex: 1;
}

.grrev-review-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: none;
    padding: 26px 22px 24px 22px;
    min-width: 298px;
    max-width: 314px;
    height: 230px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.grrev-review-google-corner {
    position: absolute;
    top: 0;
    right: 0;
    background: #fff3e4;
    border-bottom-left-radius: 32px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 6px 6px 0 0;
    z-index: 1;
}

.grrev-review-google-corner img {
    width: 28px;
    height: 28px;
}

.grrev-review-img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 12px;
    border: 2px solid #ffd7ab;
}

.grrev-review-author {
    font-weight: 600;
    font-size: 1.11em;
    color: #1e1e1e;
    margin-bottom: 6px;
    margin-top: 2px;
    text-align: center;
}

.grrev-review-stars {
    color: #fec13d;
    font-size: 1.14em;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 1px;
    text-align: center;
}

.grrev-review-msg {
    color: #565656;
    font-size: 0.97em;
    text-align: center;
    line-height: 1.6;
    margin-top: 0;
}

@media (max-width: 1100px) {
    .grrev-flexwrap {
        flex-direction: column;
        align-items: center;
        gap: 38px;
    }

    .grrev-reviews-container {
        gap: 16px;
        margin-left: 0;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .grrev-section {
        padding: 10px 0 22px 0;
        border-radius: 0;
    }

    .grrev-title {
        font-size: 1.1rem;
    }

    .grrev-google-score {
        padding: 12px 0;
        min-width: 160px;
    }

    .grrev-reviews-container {
        gap: 10px;
    }

    .grrev-review-card {
        padding: 18px 10px 18px 10px;
        min-width: 160px;
        max-width: 220px;
    }

    .grrev-review-img {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 730px) {
    .grrev-reviews-container {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;

        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: auto;
        overflow-y: hidden;

        padding: 0 15px;

        scrollbar-width: none;
        -ms-overflow-style: none;

        justify-content: flex-start;
        gap: 10px;
        margin-left: 0;
        margin-right: 0;
    }

    .grrev-reviews-container::-webkit-scrollbar {
        display: none;
    } 

    .grrev-review-card {
        width: 92vw;
        min-width: 0;
        max-width: 97vw;
        margin-bottom: 14px;
    }
}

.faqsec-section {
    width: 100%;
    max-width: 1180px;
    margin: 22px auto 0 auto;
    padding: 0 20px;
}

.faqsec-title {
    text-align: center;
    font-size: 1.43rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #222;
}

.faqsec-cols {
    display: flex;
    gap: 54px;
    justify-content: center;
}

.faqsec-col {
    flex: 1 1 0;
    min-width: 340px;
    max-width: 540px;
}

.faqsec-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.07em;
    padding: 20px 0 12px 0;
    border-bottom: 1px solid #eee4da;
    color: #252525;
    font-weight: 400;
    gap: 24px;
}

.faqsec-item:last-child {
    border-bottom: none;
}

.faqsec-plus {
    color: #f89827;
    font-size: 1.6em;
    font-weight: 700;
    margin-left: 18px;
    cursor: pointer;
    line-height: 1;
    font-family: inherit;
}

@media (max-width: 900px) {
    .faqsec-cols {
        flex-direction: column;
        gap: 12px;
    }

    .faqsec-col {
        max-width: 98vw;
        min-width: 0;
    }

    .faqsec-item {
        font-size: 1.01em;
        padding: 16px 0 9px 0;
    }
}

.clovefooter-main {
    background: #4a2812;
    color: #fff4e4;
    padding: 22px 0 9px 0;
    font-family: inherit;
}

.clovefooter-top {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 32px;
}

.clovefooter-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.clovefooter-logo-main {
    color: #fa881e;
    font-size: 2.4em;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1;
}

.clovefooter-logo-smile {
    color: #fff4e4;
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 0;
}

.clovefooter-logo-sub {
    color: #fff4e4;
    letter-spacing: 0.16em;
    font-size: .98em;
    margin-left: 5px;
    margin-top: 6px;
    font-weight: 500;
}

.clovefooter-links {
    display: flex;
    gap: 34px;
    margin-top: 14px;
    margin-right: 10px;
}

.clovefooter-links a {
    color: #fff4e4;
    text-decoration: none;
    font-size: 1.08em;
    font-weight: 400;
    transition: color 0.2s;
}

.clovefooter-links a:hover {
    color: #fa881e;
    text-decoration: underline;
}

.clovefooter-divider {
    border: none;
    border-top: 1.5px solid #fff4e4;
    margin: 18px 10% 16px 18%;
    opacity: 0.7;
}

.clovefooter-bottom {
    text-align: right;
    font-size: 1em;
    max-width: 1200px;
    margin: 0 auto;
    padding-right: 40px;
    color: #fff4e4;
    opacity: 0.93;
    line-height: 1.7;
}

@media (max-width: 700px) {
    .clovefooter-top {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 18px;
        gap: 18px;
    }

    .clovefooter-logo {
        align-items: flex-start;
    }

    .clovefooter-links {
        margin: 0 0 0 2px;
    }

    .clovefooter-divider {
        margin: 18px 4% 14px 6%;
    }

    .clovefooter-bottom {
        text-align: left;
        padding-right: 8px;
        font-size: .98em;
    }
}

.membership-simple-container {
    display: flex;
    gap: 36px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    background: #fff8f2;
    flex-wrap: wrap;
    padding: 38px 0;
}

.membership-simple-formcard {
    background: #fff;
    border: 1.5px solid #ffe4cc;
    border-radius: 26px;
    padding: 38px 38px 32px 38px;
    min-width: 320px;
    max-width: 477px;
    flex: 1 1 340px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.membership-simple-formtitle {
    font-size: 1.55rem;
    font-weight: 700;
    color: #242424;
    margin-bottom: 12px;
}

.membership-simple-formsub {
    color: #525252;
    font-size: 1.07em;
    margin-bottom: 18px;
}

.membership-simple-formfields {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.membership-simple-formfields input[type="text"] {
    border: 1.2px solid #ffdcb7;
    border-radius: 28px;
    padding: 15px 18px;
    font-size: 1.06em;
    background: #fff;
    transition: border-color 0.15s;
}

.membership-simple-formfields input[type="text"]:focus {
    border-color: #ffa94b;
}

.membership-simple-consent {
    font-size: .97em;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: #484848;
}

.membership-simple-consent input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #ffa94b;
    margin-top: 3px;
}

.membership-simple-consent a {
    color: #ffa94b;
    text-decoration: underline;
}

.membership-simple-consent a:hover {
    color: #c96909;
}

.membership-simple-formfields button {
    width: 100%;
    margin-top: 6px;
    background: #fa881e;
    color: #fff;
    border: none;
    border-radius: 26px;
    padding: 15px 0;
    font-size: 1.12em;
    font-weight: 600;
    cursor: pointer;
    transition: background .16s;
}

.membership-simple-formfields button:hover {
    background: #e97400;
}

.membership-simple-img-offerblock {
    display: flex;
    background: #fff;
    border: 1.5px solid #ffe4cc;
    border-radius: 26px;
    padding: initial;
    min-width: 390px;
    max-width: 46vw;
    flex: 1 1 480px;
    gap: 0;
    box-sizing: border-box;
    align-items: stretch;
    position: relative;
}

.membership-simple-img {
    display: block;
    max-width: 340px;
    width: 48vw;
    height: auto;
    border-radius: 18px;
    object-fit: contain;
    background: #fbe7cf;
    flex-shrink: 0;
}

.membership-simple-offerbox {
    flex: 1 1 220px;
    padding-left: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
}

.membership-simple-offertitle {
    font-size: 1.18em;
    font-weight: 700;
    margin-bottom: 13px;
    color: #232323;
    margin-top: 30px;
}

.membership-simple-offerbox ul {
    color: #232323;
    font-size: 1em;
    margin-bottom: 19px;
    padding-left: 20px;
}

.membership-simple-offerbox li {
    margin-bottom: 7px;
    line-height: 1.6;
}

.membership-simple-offerbottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: -15px;
    justify-content: space-evenly;
}

.membership-simple-special {
    color: #fa881e;
    font-size: 1em;
    font-weight: 700;
    margin-bottom: 2px;
}

.membership-simple-price {
    font-size: 1.22em;
    color: #232323;
    font-weight: 700;
    margin-right: 9px;
}

.membership-simple-mrp {
    color: #9d9d9d;
    text-decoration: line-through;
    font-size: 1em;
}

.membership-simple-buy {
    background: #fa881e;
    color: #fff;
    border: none;
    border-radius: 26px;
    padding: 11px 38px;
    font-size: 1.06em;
    font-weight: 600;
    cursor: pointer;
    margin-left: auto;
    transition: background .14s;
    box-shadow: none;
}

.membership-simple-buy:hover {
    background: #e97400;
}

@media (max-width: 1150px) {
    .membership-simple-container {
        flex-direction: column;
        gap: 28px;
        align-items: center;
        padding: 22px 0;
    }

    .membership-simple-formcard,
    .membership-simple-img-offerblock {
        min-width: 240px;
        max-width: 98vw;
        width: 96vw;
        border-radius: 17px;
        padding-left: 8vw;
        padding-right: 8vw;
        margin: 0 auto;
    }

    .membership-simple-img-offerblock {
        flex-direction: column;
        align-items: center;
        padding-bottom: 28px;
    }

    .membership-simple-img {
        width: 84vw;
        max-width: 90vw;
        min-width: 190px;
        margin: 0 auto 19px auto;
        border-radius: 11px;
    }

    .membership-simple-offerbox {
        padding-left: 0;
        width: 100%;
        align-items: flex-start;
    }

    .membership-simple-offerbottom {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 650px) {

    .membership-simple-formcard,
    .membership-simple-img-offerblock {
        padding: 19px 4vw;
        font-size: .98em;
    }

    .membership-simple-img {
        width: 95vw;
        max-width: 99vw;
    }
}

.statsmarquee-container {
    width: 100vw;
    overflow: hidden;
    background: #fff8f2;
    padding: 0;
    margin: 0;
    height: 44px;
}

.statsmarquee-track {
    display: flex;
    width: max-content;
    animation: statsmarquee-scroll 32s linear infinite;
    align-items: center;
    gap: 36px;
}

.statsmarquee-item {
    display: flex;
    align-items: center;
    font-size: 1em;
    color: #3c2d21;
    gap: 6px;
    font-weight: 500;
    white-space: nowrap;
    min-width: 145px;
}

.statsmarquee-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-right: 4px;
}

.marquee-orange {
    color: #fa881e;
    font-weight: 700;
}

@keyframes statsmarquee-scroll {
    0% {
        transform: translateX(-15%);
    }

    100% {
        transform: translateX(10%);
    }
}

@media (max-width: 480px) {

    .hero-section {

        display: flex;
        flex-direction: column;

    }

    .hero-container {

        order: 1;
    }

    .statsmarquee-container {
        order: 1;
        width: 100%;

    }

    .site-header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        gap: 157px;
    }

    .header-buttons {
        flex-direction: row;
        gap: 0;
        width: auto;
    }

    .header-buttons .primary-btn {
        display: none;
    }

    .header-buttons .secondary-btn {
        width: auto;
        padding: 8px 12px;
        font-size: 0.9em;
        justify-content: center;
    }

    .header-buttons .secondary-btn i {
        margin-right: 5px;
    }

    .logo {

        flex-shrink: 0;
        margin-right: 10px;
    }

    .container {
        padding: 0 10px;
    }

    .site-header .container {
        padding: 15px 10px;
        gap: 20px;
    }

    .logo-clove {
        font-size: 1.8em;
    }

    .logo-dental {
        font-size: 0.7em;
        letter-spacing: 1px;
    }

    .header-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .btn {
        width: calc(100% - 20px);
        justify-content: center;
        padding: 10px 15px;
        font-size: 0.95em;
    }

    .hero-left,
    .hero-right {
        padding: 40px 15px;
    }

    .hero-content h1 {
        font-size: 2em;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .hero-left .primary-btn {
        width: auto;
        padding: 10px 20px;
    }

    .form-container h2 {
        font-size: 1.5em;
        margin-bottom: 8px;
    }

    .form-description {
        font-size: 0.95em;
        margin-bottom: 15px;
    }

    .form-group input[type="text"],
    .form-group input[type="tel"],
    .captcha-group input[type="text"],
    .captcha-btn {
        padding: 10px 12px;
        font-size: 0.95em;
    }

    .captcha-group {
        flex-direction: column;
        gap: 8px;
    }

    .captcha-group input[type="text"],
    .captcha-btn {
        width: 100%;
        box-sizing: border-box;
    }

    .terms-group {
        font-size: 0.85em;
        margin-bottom: 15px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 1.1em;
    }

    .statsmarquee-track {
        gap: 20px;
        animation-duration: 20s;
    }

    .statsmarquee-item {
        min-width: 120px;
        font-size: 0.9em;
    }

    .statsmarquee-item svg {
        width: 24px;
        height: 24px;
    }

    .rct-title {
        font-size: 1.3em;
        margin-bottom: 6px;
    }

    .rct-subtitle {
        font-size: 0.9em;
        margin-bottom: 20px;
    }

    .rct-card {
        flex-direction: column;
        height: auto;
        width: 98vw;
        max-width: 350px;
    }

    .rct-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 18px 18px 0 0;
    }

    .rct-info {
        border-radius: 0 0 18px 18px;
        border: 1.5px solid #ffe6cc;
        border-top: none;
        padding: 20px;
        min-width: auto;
    }

    .rct-info h3 {
        font-size: 1em;
        margin-bottom: 4px;
    }

    .rct-info .rct-desc,
    .rct-types-title,
    .rct-info ul,
    .rct-price-label,
    .rct-price,
    .rct-consult-btn {
        font-size: 0.9em;
    }

    .rct-price {
        font-size: 1em;
    }

    .rct-consult-btn {
        padding: 8px 16px;
    }

    .rsmiles-title {
        font-size: 1.2em;
    }

    .rsmiles-subtitle {
        font-size: 0.9em;
        margin-bottom: 15px;
    }

    .rsmiles-gallery {
        gap: 10px;
    }

    .rsmiles-card {
        width: 90vw;
        max-width: 250px;
        height: auto;
        margin-bottom: 10px;
    }

    .rsmiles-img {
        width: 100%;
        height: 120px;
        border-radius: 10px;
    }

    .rsmiles-caption {
        font-size: 0.9em;
    }

    .clove-why-title {
        font-size: 1.5em;
    }

    .clove-why-subtitle {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .clove-why-content {
        gap: 20px;
    }

    .clove-why-left {
        max-width: 100%;
    }

    .clove-why-question {
        font-size: 1em;
        padding: 15px 0 10px 0;
    }

    .clove-plus {
        font-size: 1.3em;
    }

    .clove-why-item-answer {
        font-size: 0.95em;
    }

    .clove-why-image {
        width: 90vw;
        max-width: 300px;
        height: auto;
        border-radius: 15px;
    }

    .appt-form-section {
        padding: 20px 0;
    }

    .appt-form-title {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .appt-form-row {
        gap: 10px;
        width: 58vw;
        height: 10vh;
        margin-bottom: 233px;
    }

    .appt-form-input,
    .appt-form-input-captcha {
        padding: 15px;
        font-size: 1em;
        border-radius: 30px;
    }

    .appt-form-captcha-wrap {
        flex-direction: column;
        gap: 0;
    }

    .appt-form-input-captcha {
        margin-right: 0;
        border-top-right-radius: 30px;
        border-bottom-right-radius: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .appt-form-captcha-box {
        width: 100%;
        min-width: auto;
        height: 50px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 30px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 30px;
        left: 0;
        font-size: 1em;
    }

    .appt-form-checkbox-wrap {
        font-size: 0.9em;
        gap: 8px;
    }

    .appt-form-checkbox-wrap input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-right: 5px;
    }

    .appt-form-btn {
        padding: 15px 0;
        font-size: 1.1em;
        border-radius: 30px;
        min-width: auto;
        width: 100%;
        margin-left: 0;
    }

    .labcard-title {
        font-size: 1.2em;
    }

    .labcard-desc {
        font-size: 0.9em;
        margin-bottom: 20px;
    }

    .labcard-cards {
    gap: 15px;
    }

    .labcard-card {
        width: 95vw;
        min-width: auto;
        height: 200px;
        border-radius: 15px;
        display: flex;
        align-items: flex-end;
        padding: 0;
        position: relative;
        overflow: hidden;
    }

    .labcard-card-content {
        min-height: 66px;
        height: 50%;
        max-height: 50%;
        padding: 12px;
        border-radius: 10px;
        width: calc(100% - 24px);
        margin-bottom: 0;
        background: rgba(27, 39, 54, 0.94); 
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .labcard-card-title {
        font-size: 1em;
        gap: 5px;
    }

    .labcard-aips {
        font-size: 1em;
    }

    .labcard-card-body {
        font-size: 0.65em;
        margin-bottom: 12px;
    }

    .labcard-learn {
        font-size: 0.95em;
        gap: 5px;
    }

    .labcard-learn-icon {
        font-size: 1em;
        margin-right: 4px;
    }

    .labcard-learn-arrow {
        font-size: 1em;
        margin-left: 0;
    }

    .grrev-section {
        padding: 15px 0;
    }

    .grrev-title {
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .grrev-flexwrap {
        gap: 25px;
    }

    .grrev-google-score {
        min-width: auto;
        max-width: 95vw;
        border-right: none;
        border-bottom: 2px solid #f5e3d0;
        padding: 15px 0;
        height: auto;
    }

    .grrev-google-logo {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }

    .grrev-google-rating {
        font-size: 1.2em;
    }

    .grrev-rating-star {
        font-size: 1.4em;
    }

    .grrev-rating-value {
        font-size: 1em;
    }

    .grrev-rating-count,
    .grrev-rating-label {
        font-size: 0.9em;
    }
    .grrev-reviews-container {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;

        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: auto;
        overflow-y: hidden;

        padding: 0 15px;

        scrollbar-width: none;
        -ms-overflow-style: none;

        justify-content: flex-start;
        gap: 10px;
        margin-left: 0;
        margin-right: 0;
    }

    .grrev-reviews-container::-webkit-scrollbar {
        display: none;
    }

    .grrev-review-card {
        min-width: auto;
        max-width: 95vw;
        width: 95vw;
        padding: 15px;
        height: auto;
        margin-bottom: 10px;
        border-radius: 10px;
    }

    .grrev-review-google-corner {
        width: 30px;
        height: 30px;
        border-bottom-left-radius: 20px;
        padding: 4px 4px 0 0;
    }

    .grrev-review-google-corner img {
        width: 20px;
        height: 20px;
    }

    .grrev-review-img {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }

    .grrev-review-author {
        font-size: 1em;
        margin-bottom: 4px;
    }

    .grrev-review-stars {
        font-size: 1em;
        margin-bottom: 8px;
    }

    .grrev-review-msg {
        font-size: 0.9em;
        line-height: 1.5;
    }

    .faqsec-section {
        padding: 0 10px;
    }

    .faqsec-title {
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .faqsec-cols {
        gap: 10px;
    }

    .faqsec-col {
        max-width: 100%;
    }

    .faqsec-item {
        font-size: 1em;
        padding: 12px 0 8px 0;
        gap: 15px;
    }

    .faqsec-plus {
        font-size: 1.4em;
        margin-left: 10px;
    }

    .clovefooter-main {
        padding: 15px 0 8px 0;
    }

    .clovefooter-top {
        padding: 0 10px;
        gap: 10px;
    }

    .clovefooter-logo-main {
        font-size: 2em;
    }

    .clovefooter-logo-smile {
        font-size: 0.9em;
    }

    .clovefooter-logo-sub {
        font-size: 0.8em;
        margin-left: 3px;
        margin-top: 4px;
    }

    .clovefooter-links {
        gap: 15px;
        margin-top: 10px;
        margin-right: 0;
        flex-wrap: wrap;
    }

    .clovefooter-links a {
        font-size: 1em;
    }

    .clovefooter-divider {
        margin: 10px 5% 10px 5%;
    }

    .clovefooter-bottom {
        font-size: 0.9em;
        padding-right: 10px;
        line-height: 1.5;
    }

    .membership-simple-container {
        padding: 20px 0;
        gap: 20px;
    }

    .membership-simple-formcard,
    .membership-simple-img-offerblock {
        padding: 20px;
        border-radius: 20px;
        width: 95vw;
        max-width: 350px;
        min-width: auto;
    }

    .membership-simple-formtitle {
        font-size: 1.3em;
        margin-bottom: 10px;
    }

    .membership-simple-formsub {
        font-size: 1em;
        margin-bottom: 15px;
    }

    .membership-simple-formfields {
        gap: 10px;
    }

    .membership-simple-formfields input[type="text"] {
        padding: 12px 15px;
        font-size: 1em;
        border-radius: 25px;
    }

    .membership-simple-consent {
        font-size: 0.9em;
        gap: 5px;
    }

    .membership-simple-consent input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }

    .membership-simple-formfields button {
        margin-top: 10px;
        padding: 12px 0;
        font-size: 1.05em;
        border-radius: 25px;
    }

    .membership-simple-img-offerblock {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .membership-simple-img {
        width: 90%;
        max-width: 300px;
        margin: 0 auto 15px auto;
        border-radius: 10px;
    }

    .membership-simple-offerbox {
        padding-left: 0;
        width: 100%;
    }

    .membership-simple-offertitle {
        font-size: 1.1em;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .membership-simple-offerbox ul {
        font-size: 0.95em;
        margin-bottom: 15px;
        padding-left: 15px;
    }

    .membership-simple-offerbox li {
        margin-bottom: 5px;
    }

    .membership-simple-offerbottom {
        margin-top: 10px;
        gap: 8px;
        flex-direction: column;
        align-items: flex-start;
    }

    .membership-simple-special {
        font-size: 0.95em;
    }

    .membership-simple-price {
        font-size: 1.1em;
        margin-right: 5px;
    }

    .membership-simple-mrp {
        font-size: 0.95em;
    }

    .membership-simple-buy {
        padding: 10px 20px;
        font-size: 1em;
        border-radius: 20px;
        margin-left: 0;
        width: 100%;
    }

}

.rsmiles-gallery {
    display: flex;
    gap: 88px;
    justify-content: center;
    flex-wrap: wrap;

}

.rsmiles-card {

    width: 207px;
    min-width: 143px;
    flex-shrink: 1;

}

@media (max-width: 900px) {
    .rsmiles-gallery {
        gap: 14px;

        flex-wrap: wrap;

    }

    .rsmiles-card {
        width: 160px;

        flex-shrink: 1;

    }

}

@media (max-width: 600px) {
    .rsmiles-gallery {
        flex-direction: row;
        flex-wrap: nowrap;

        overflow-x: auto;
        overflow-y: hidden;

        padding: 0 15px;

        scrollbar-width: none;
        -ms-overflow-style: none;

        justify-content: flex-start;
        gap: 15px;
    }

    .rsmiles-gallery::-webkit-scrollbar {
        display: none;
    }

    .rsmiles-card {
        flex-shrink: 0;
        flex-basis: 80vw;
        width: 80vw;
        max-width: 250px;

        margin-right: 15px;
        margin-bottom: 0;

        flex-direction: column;
        align-items: center;

        height: auto;
    }

    .rsmiles-card:last-child {
        margin-right: 0;
    }

    .rsmiles-img {

        width: 100%;
        height: auto;
        max-height: 150px;
        object-fit: cover;
    }

    .rsmiles-caption {

        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

}

@media (max-width: 480px) {

    .grrev-reviews-container {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;

        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: auto;
        overflow-y: hidden;

        padding: 0 15px;

        scrollbar-width: none;
        -ms-overflow-style: none;

        justify-content: flex-start;
        gap: 10px;
        margin-left: 0;
        margin-right: 0;
    }

    .grrev-reviews-container::-webkit-scrollbar {
        display: none;
    }

    .grrev-review-card {
        flex-shrink: 0;
        flex-basis: 85vw;
        width: 85vw;
        max-width: none;
        min-width: auto;

        margin-right: 10px;
        margin-bottom: 0;

        flex-direction: column;
        align-items: center;

        padding: 15px;
    }

    .grrev-review-card:last-child {
        margin-right: 0;
    }

    .grrev-google-score {

        padding: 10px 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        flex-direction: column;
        min-height: auto;
        gap: 0px;

    }

}

@media (max-width: 480px) {

    .site-header .container {
        flex-direction: row;

        align-items: center;
        padding: 10px;
        gap: 20px;

    }

    .header-buttons {
        flex-direction: row;
        gap: 0;
        width: auto;

        margin-left: auto;
    }

    .header-buttons .primary-btn {
        display: none;
    }

    .header-buttons .secondary-btn {

        width: auto;
        padding: 8px 12px;
        font-size: 0.9em;
        justify-content: center;
    }

    .logo {

        flex-shrink: 0;

        margin-right: 0;
    }

}

@media (max-width: 950px) {
    .clove-why-content {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .clove-why-left {

        order: 2;

        max-width: 98vw;
        width: 100%;
    }

    .clove-why-right {

        order: 1;
        justify-content: center;

        max-width: 98vw;
        width: 100%;
    }

    .clove-why-image {

        display: block;
        max-width: 330px;
        width: 70vw;
        height: auto;
        margin: 0 auto;
    }

}
.patients-say-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 20px;
    width: 1320px;
    height: 479px;
    margin: 0 auto;
}

.patients-say-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 4px;
    max-width: 100vw;
    width: 820px;
    height: 61px;
}

.patients-say-title {
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    color: #303030;
    max-width: 100%;
    width: auto;
    height: auto;
    text-align: center;
    word-break: break-word;
}

.patients-say-subtitle {
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: #474747;
    width: 100%;
    max-width: 820px;
    text-align: center;
    word-break: break-word;
    margin: 0 auto;
    box-sizing: border-box;
}

.patients-say-cards-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 24px;
    width: 1320px;
    height: 398px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #e98f47 #fff8f2;
}

.patients-say-cards-row::-webkit-scrollbar {
    height: 8px;
    background: #fff8f2;
}
.patients-say-cards-row::-webkit-scrollbar-thumb {
    background: #e98f47;
    border-radius: 4px;
}

.patients-say-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 8px;
    width: 224px;
    height: 398px;
    flex: none;
    order: 0;
    flex-grow: 0;
    background: none;
}

.patients-say-img {
    width: 224px;
    height: 350px;
    background: #eee center center/cover no-repeat;
    border-radius: 10px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.patients-say-card-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
    gap: 8px;
    width: 224px;
    height: 40px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

.patients-say-card-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    height: 40px;
    margin: 0 auto;
}

.patients-say-name {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #1A1A1A;
}

.patients-say-city {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #777777;
}

.patients-say-treatment {
    margin: 0 auto;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #F58420;
    align-self: center;
}

@media (max-width: 1400px) {
    .patients-say-section,
    .patients-say-cards-row {
        width: 100vw;
        max-width: 100vw;
    }
    .patients-say-header {
        width: 100vw;
        max-width: 820px;
        padding: 0 2vw;
    }
    .patients-say-subtitle {
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: #474747;
    width: 100%;
    max-width: 820px;
    text-align: center;
    word-break: break-word;
    margin: 0 auto;
    box-sizing: border-box;
}
}

@media (max-width: 900px) {
    .patients-say-section {
        width: 100vw;
        height: auto;
        padding: 0 2vw;
    }
    .patients-say-cards-row {
        width: 100vw;
        gap: 12px;
        height: 398px;
        padding: 0 2vw;
    }
    .patients-say-header {
        width: 100vw;
        max-width: 98vw;
        height: auto;
        padding: 0 2vw;
    }
    .patients-say-title {
        font-size: 18px;
        width: 100%;
        height: auto;
        text-align: center;
        word-break: break-word;
    }
    .patients-say-subtitle {
        font-size: 15px;
        width: 100%;
        height: auto;
        text-align: center;
        word-break: break-word;
    }
}

@media (max-width: 600px) {
    .patients-say-section {
        width: 100vw;
        height: auto;
        gap: 10px;
        padding: 0 1vw;
    }
    .patients-say-header {
        width: 100vw;
        max-width: 100vw;
        gap: 2px;
        padding: 0 1vw;
    }
    .patients-say-title {
        font-size: 1em;
        width: 100%;
        text-align: center;
        word-break: break-word;
    }
    .patients-say-subtitle {
        font-size: 0.9em;
        width: 100%;
        text-align: center;
        word-break: break-word;
    }
    .patients-say-cards-row {
        width: 100vw;
        gap: 8px;
        height: 280px;
        padding: 0 2px;
    }
    .patients-say-card {
        width: 140px;
        height: 280px;
    }
    .patients-say-img {
        width: 140px;
        height: 180px;
    }
    .patients-say-card-info {
        width: 140px;
        height: 40px;
    }
}
.hero-mobile-heading {
    display: none;
    flex-direction: column;
    gap: 0.2em;
    margin-bottom: 1em;
}
.hero-mobile-title {
    color: #111;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    display: block;
}
.hero-mobile-clove {
    color: #EA7D28;
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1.1;
}

.hero-desktop-title {
    color: #111;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5em;
    display: block;
}

@media (max-width: 900px) {
    .hero-mobile-heading {
        display: flex;
        align-items: flex-start;
    }
    .hero-desktop-title {
        display: none;
    }
}