/* ===========================================
   BASE STYLES
   Custom properties and global typography
   =========================================== */
:root {
    --orange: #f96532;
    --orange-deep: #f96532;
    --orange-mid: #f96532;
}

body {
    font-family: 'Rubik', sans-serif;
}

h1, h2, h3 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
}

/* ===========================================
   IMPACT SECTION
   Metrics and award highlight cards
   =========================================== */
.impact{
    background-color: #fff;
}
.impact-shell {    
    padding: 2rem;
    position: relative;
}

.impact-head {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(251,146,60,.14);
}

.impact-eyebrow {
    color: #f97316;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.impact-title {
    color: var(--orange-deep);
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(1.55rem, 3.1vw, 2.35rem);
    font-weight: 800;
    line-height: 1.2;
    margin-top: .1rem;
}
.impact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto;
}

.impact-item {
    background: rgba(248,250,252,.98);
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: .85rem;
    min-height: 7rem;
    padding: 1rem 1.1rem;
    position: relative;
    transition: transform .22s ease, box-shadow .22s ease;
}

.impact-item:hover {
    box-shadow: 0 18px 40px rgba(143,55,27,.12);
    transform: translateY(-3px);
}

.impact-img-box {
    flex-shrink: 0;
}

.impact-text-box {
    flex: 1;
}

.impact-icon {
    align-items: center;
    border: 1px solid #fde68a;
    border-radius: 16px;
    display: inline-flex;
    flex-shrink: 0;
    font-size: 1.8rem;
    height: 4rem;
    justify-content: center;
    width: 4rem;
}

.impact-kpi {
    color: var(--orange-deep);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}

.impact-label {
    color: #64748b;
    font-size: .78rem;
    line-height: 1.3;
    margin: 0;
    margin-top: .2rem;
}

.impact-item.award-item {
    background: linear-gradient(145deg, #f96532, rgba(193,79,40,.96));
    border-color: rgba(255,255,255,.16);
}

.impact-item.award-item .impact-icon {
    background: rgba(255,255,255,.16);
    border-color: rgba(255,255,255,.22);
    color: #fdba74;
}

.impact-item.award-item .impact-kpi {
    color: #fff;
}

.impact-item.award-item .impact-label {
    color: #fed7aa;
}
/* ===========================================
   WHAT ARE DENTAL BRACES SECTION
   Educational overview card and feature list
   =========================================== */
.teeth-braces-section {
    background:
        radial-gradient(circle at 10% 8%, rgba(249,101,50,.15), transparent 28%),
        radial-gradient(circle at 92% 22%, rgba(193,79,40,.12), transparent 34%),
        linear-gradient(180deg, #fffaf5 0%, #fff 100%);
    border-bottom: 1px solid rgba(251,146,60,.18);
    border-top: 1px solid rgba(251,146,60,.2);
    padding: 2.2rem 0 2.8rem;
}

.teeth-braces-grid {
    align-items: center;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
}

.teeth-braces-visual {
    display: grid;
    gap: .9rem;
    position: relative;
}

.teeth-braces-main-card {
    background: #fff;
    border: 1px solid rgba(251,146,60,.28);
    border-radius: 22px;
    box-shadow: 0 16px 34px rgba(143,55,27,.14);
    overflow: hidden;
}

.teeth-braces-main-card img {
    display: block;
    height: 23rem;
    object-fit: cover;
    width: 100%;
}

.teeth-braces-mini-card {
    background: #fff;
    border: 1px solid rgba(251,146,60,.3);
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(143,55,27,.13);
    margin-left: auto;
    overflow: hidden;
    width: min(72%, 19rem);
}

.teeth-braces-mini-card img {
    display: block;
    height: 9rem;
    object-fit: cover;
    width: 100%;
}

.teeth-braces-particle {
    filter: drop-shadow(0 6px 10px rgba(143,55,27,.2));
    height: auto;
    opacity: .9;
    position: absolute;
    right: -0.45rem;
    top: -0.7rem;
    width: 4.2rem;
}

.teeth-braces-content {
    background: #fff;
    border: 1px solid rgba(251,146,60,.24);
    border-radius: 22px;
    box-shadow: 0 14px 30px rgba(143,55,27,.1);
    padding: clamp(1rem, 2.6vw, 1.6rem);
}

.teeth-braces-kicker {
    align-items: center;
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: 9999px;
    color: #9a3412;
    display: inline-flex;
    font-size: .67rem;
    font-weight: 700;
    gap: .42rem;
    letter-spacing: .08em;
    padding: .4rem .75rem;
    text-transform: uppercase;
}

.teeth-braces-title {
    color: #f96532;
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.7rem);
    font-weight: 800;
    line-height: 1.02;
    margin-top: .78rem;
}

.teeth-braces-copy {
    color: #7c2d12;
    font-size: .92rem;
    line-height: 1.62;
    margin-top: .72rem;
    opacity: .86;
}

.teeth-braces-copy + .teeth-braces-copy {
    margin-top: .58rem;
}

.teeth-braces-list-head {
    color: #7c2d12;
    font-size: .92rem;
    font-weight: 700;
    margin-top: .8rem;
}

.teeth-braces-list-grid {
    margin-top: .55rem;
}

.teeth-braces-list {
    color: #7c2d12;
    font-size: .86rem;
    line-height: 1.8;
    margin: 0;
    opacity: .92;
    padding-left: 0;
    list-style: none;
}

.teeth-braces-list li {
    align-items: flex-start;
    display: flex;
    gap: .65rem;
    margin-bottom: .6rem;
    padding-left: 1.1rem;
    position: relative;
}

.teeth-braces-list li::before {
    color: #f96532;
    content: "➜";
    font-size: .95rem;
    left: 0;
    position: absolute;
}


.teeth-braces-cta {
    align-items: center;
    background: linear-gradient(95deg, #F96532 0%, #cf4c1f 100%);
    border-radius: 9999px;
    box-shadow: 0 10px 20px rgba(249,101,50,.26);
    color: #fff;
    display: inline-flex;
    font-size: .86rem;
    font-weight: 700;
    gap: .45rem;
    margin-top: .95rem;
    padding: .68rem 1.04rem;
    text-decoration: none;
    transition: all .2s ease;
}

.teeth-braces-cta:hover {
    box-shadow: 0 13px 26px rgba(207,76,31,.34);
    transform: translateY(-1px);
}


/* ===========================================
   BOOK APPOINTMENT SECTION
   Lead capture form and supporting media
   =========================================== */
.book-section {
    background:#fff;
    border-top: 1px solid rgba(251,146,60,.22);
    padding: 2.4rem 0;
}

.book-shell {
    background: #fff;
    border: 1px solid rgba(251,146,60,.32);
    border-radius: 28px;
    box-shadow: 0 24px 52px rgba(143,55,27,.16);
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    overflow: hidden;
}

.book-media {
    background: #f96532;
    min-height: 100%;
    position: relative;
}

.book-media::after {
    content: "";
    inset: 0;
    position: absolute;
}

.book-media img {
    display: block;
    height: 100%;
    min-height: 29rem;
    object-fit: cover;
    opacity: .88;
    width: 100%;
}

.book-badge {
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(251,146,60,.3);
    border-radius: 9999px;
    color: #9a3412;
    display: inline-flex;
    font-size: .74rem;
    font-weight: 700;
    gap: .45rem;
    left: 1rem;
    padding: .55rem .85rem;
    position: absolute;
    top: 1rem;
    z-index: 2;
    align-items: center;
}

.book-feature-list {
    bottom: 1rem;
    display: grid;
    gap: .5rem;
    left: 1rem;
    position: absolute;
    right: 1rem;
    z-index: 2;
}

.book-feature-list li {
    align-items: center;
    background: rgba(15,23,42,.35);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 10px;
    color: #fff;
    display: inline-flex;
    font-size: .83rem;
    font-weight: 500;
    gap: .5rem;
    list-style: none;
    padding: .45rem .55rem;
}

.book-feature-list i {
    color: #fdba74;
    font-size: .78rem;
}

.book-content {
    background: linear-gradient(180deg, #fff 0%, #fff7ed 100%);
    padding: clamp(1.2rem, 3vw, 2rem);
}

.book-kicker {
    align-items: center;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 9999px;
    color: #9a3412;
    display: inline-flex;
    font-size: .68rem;
    font-weight: 700;
    gap: .45rem;
    letter-spacing: .08em;
    padding: .42rem .78rem;
    text-transform: uppercase;
}

.book-title {
    color: #f96532;
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(1.55rem, 3.1vw, 2.35rem);
    font-weight: 800;
    line-height: 1.06;
    margin-bottom: .35rem;
    margin-top: .8rem;
}

.book-copy {
    color: #7c2d12;
    font-size: .95rem;
    line-height: 1.55;
    margin-bottom: .95rem;
    opacity: .88;
}

.book-form {
    display: grid;
    gap: .8rem;
}

.book-field {
    display: grid;
    gap: .36rem;
}

.book-grid-2 {
    display: grid;
    gap: .75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.book-label {
    color: #9a3412;
    font-size: .78rem;
    font-weight: 600;
}

.book-input {
    background: rgba(255,255,255,.95);
    border: 1px solid #fdba74;
    border-radius: 12px;
    color: #431407;
    font-size: .9rem;
    outline: none;
    padding: .76rem .85rem;
    transition: all .2s ease;
    width: 100%;
}

.book-input::placeholder {
    color: #a16207;
    opacity: .72;
}

.book-input:focus {
    background: #fff;
    border-color: #F96532;
    box-shadow: 0 0 0 3px rgba(249,101,50,.17);
}

.book-btn {
    align-items: center;
    background: linear-gradient(95deg, #F96532 0%, #cf4c1f 100%);
    border: 0;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(249,101,50,.28);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: .92rem;
    font-weight: 700;
    justify-content: center;
    padding: .85rem 1rem;
    transition: all .2s ease;
    width: 100%;
}

.book-btn:hover {
    box-shadow: 0 14px 30px rgba(207,76,31,.36);
    transform: translateY(-1px);
}

.book-note {
    align-items: center;
    color: #9a3412;
    display: inline-flex;
    font-size: .75rem;
    gap: .38rem;
    margin-top: .75rem;
}
/* ===========================================
   TREATMENT PROCESS SECTION
   Process intro, cards, and supporting links
   =========================================== */
.treatments-section {
    background:
        radial-gradient(circle at 12% 0%, rgba(249,101,50,.13), transparent 28%),
        radial-gradient(circle at 88% 20%, rgba(193,79,40,.1), transparent 35%),
        linear-gradient(180deg, #fff 0%, #fffaf6 100%);
    border-bottom: 1px solid rgba(251,146,60,.18);
    border-top: 1px solid rgba(251,146,60,.2);
    padding: 3.1rem 0 2rem;
}

.treatments-head {
    margin: 0 auto 1.15rem;
    max-width: 52rem;
    text-align: center;
}

.treatments-kicker {
    align-items: center;
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: 9999px;
    color: #9a3412;
    display: inline-flex;
    font-size: .68rem;
    font-weight: 700;
    gap: .45rem;
    letter-spacing: .08em;
    padding: .42rem .8rem;
    text-transform: uppercase;
}

.treatments-title {
    color: #f96532;
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(1.85rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1;
    margin-top: .8rem;
}

.treatment-links {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    justify-content: center;
    margin: 1rem auto 1.5rem;
    max-width: 72rem;
}

.treatment-link {
    align-items: center;
    background: #fff;
    border: 1px solid #fdba74;
    border-radius: 9999px;
    color: #9a3412;
    display: inline-flex;
    font-size: .77rem;
    font-weight: 600;
    gap: .4rem;
    padding: .44rem .75rem;
    text-decoration: none;
    transition: all .2s ease;
}

.treatment-link:hover {
    background: #fff7ed;
    border-color: #fb923c;
    transform: translateY(-1px);
}
.treatments-accordion {
    display: grid;
    gap: .8rem;
}

.treatment-item {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(251,146,60,.28);
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(143,55,27,.08);
}

.treatment-toggle {
    width: 100%;
    border: 0;
    background: linear-gradient(90deg, rgba(255,247,237,.78) 0%, rgba(255,255,255,.96) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .7rem;
    padding: .85rem .95rem;
    text-align: left;
    cursor: pointer;
}

.treatment-toggle-left {
    display: flex;
    align-items: center;
    gap: .7rem;
    min-width: 0;
}

.treatment-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    background: linear-gradient(150deg, #f96532 0%, #f96532 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .9rem;
    align-self: flex-start;
}

.treatment-name {
    font-weight: 800;
    color: #f96532;
    font-size: .96rem;
    line-height: 1.2;
}

.treatment-meta {
    color: #a16207;
    font-size: .76rem;
    margin-top: .1rem;
}

.treatment-arrow {
    width: 1.95rem;
    height: 1.95rem;
    border-radius: 9999px;
    border: 1px solid #fdba74;
    color: #9a3412;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: transform .2s ease;
    flex-shrink: 0;
}

.treatment-item.open .treatment-arrow {
    transform: rotate(180deg);
}

.treatment-panel {
    display: none;
    padding: .15rem .95rem .95rem;
}

.treatment-item.open .treatment-panel {
    display: block;
}

.treatment-desc {
    color: #7c2d12;
    opacity: .84;
    font-size: .88rem;
    line-height: 1.6;
    margin-bottom: .75rem;
}

.procedure-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .7rem;
}

.procedure-card {
    border-radius: 14px;
    border: 1px solid rgba(251,146,60,.3);
    background: #fffaf5;
    padding: .72rem;
    display: grid;
    gap: .36rem;
}

.procedure-tag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    width: fit-content;
    border-radius: 9999px;
    padding: .26rem .54rem;
    border: 1px solid #fed7aa;
    background: #fff;
    color: #9a3412;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.procedure-title {
    color: #f96532;
    font-size: .88rem;
    line-height: 1.3;
    font-weight: 700;
    margin-top: .2rem;
}

.procedure-offer {
    color: #ea580c;
    font-size: .74rem;
    font-weight: 700;
}

.procedure-feat {
    font-size: .75rem;
    color: #7c2d12;
    opacity: .82;
    line-height: 1.35;
}

.procedure-btn {
    margin-top: .35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .38rem;
    text-decoration: none;
    border-radius: 10px;
    background: linear-gradient(95deg, #F96532 0%, #cf4c1f 100%);
    color: #fff;
    font-size: .76rem;
    font-weight: 700;
    padding: .52rem .66rem;
    border: 0;
    transition: all .2s ease;
}

.procedure-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(249,101,50,.25);
}


/* ===========================================
   WHY TOOT SECTION
   Trust signals and treatment advantages
   =========================================== */
.whytoot-section {
    background:
        radial-gradient(circle at 10% 14%, rgba(249,101,50,.14), transparent 30%),
        radial-gradient(circle at 90% 22%, rgba(193,79,40,.1), transparent 34%),
        linear-gradient(180deg, #fff 0%, #fff9f2 100%);
    border-bottom: 1px solid rgba(251,146,60,.18);
    border-top: 1px solid rgba(251,146,60,.2);
    padding: 3rem 0 3.35rem;
}

.whytoot-grid {
    align-items: center;
    display: grid;
    gap: 1.2rem;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
}

.whytoot-visual {
    display: grid;
    min-height: 24rem;
    place-items: center;
    position: relative;
}

.whytoot-main {
    background: #fff;
    border: 1px solid rgba(251,146,60,.35);
    border-radius: 9999px;
    box-shadow: 0 16px 36px rgba(143,55,27,.14);
    padding: .7rem;
    width: min(20rem, 82%);
}

.whytoot-main img {
    display: block;
    height: auto;
    width: 100%;
}

.whytoot-float {
    background: #fff;
    border: 1px solid rgba(251,146,60,.35);
    border-radius: 9999px;
    bottom: 7%;
    box-shadow: 0 14px 28px rgba(143,55,27,.15);
    padding: .45rem;
    position: absolute;
    right: 5%;
    width: min(11.5rem, 48%);
}

.whytoot-float img {
    display: block;
    height: auto;
    width: 100%;
}

.whytoot-particle {
    filter: drop-shadow(0 6px 12px rgba(143,55,27,.2));
    height: 4rem;
    left: 8%;
    opacity: .9;
    position: absolute;
    top: 5%;
    width: 4rem;
}

.whytoot-content {
    background: #fff;
    border: 1px solid rgba(251,146,60,.25);
    border-radius: 20px;
    box-shadow: 0 14px 30px rgba(143,55,27,.1);
    padding: 1rem;
}

.whytoot-kicker {
    align-items: center;
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: 9999px;
    color: #9a3412;
    display: inline-flex;
    font-size: .68rem;
    font-weight: 700;
    gap: .42rem;
    letter-spacing: .08em;
    padding: .42rem .78rem;
    text-transform: uppercase;
}

.whytoot-title {
    color: #f96532;
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(1.55rem, 3.6vw, 2.35rem);
    font-weight: 800;
    line-height: 1.1;
    margin-top: .78rem;
}

.whytoot-list {
    color: #7c2d12;
    font-size: .86rem;
    line-height: 1.55;
    margin: .82rem 0 0;
    opacity: .9;
}

.whytoot-copy {
    color: #7c2d12;
    font-size: .9rem;
    line-height: 1.6;
    margin-top: .7rem;
    opacity: .87;
}

.whytoot-cta {
    align-items: center;
    background: linear-gradient(95deg, #F96532 0%, #cf4c1f 100%);
    border-radius: 9999px;
    box-shadow: 0 10px 20px rgba(249,101,50,.26);
    color: #fff;
    display: inline-flex;
    font-size: .84rem;
    font-weight: 700;
    gap: .45rem;
    margin-top: .9rem;
    padding: .66rem 1rem;
    text-decoration: none;
    transition: all .2s ease;
}

.whytoot-cta:hover {
    box-shadow: 0 13px 24px rgba(207,76,31,.33);
    transform: translateY(-1px);
}

/* ===========================================
   ABOUT CLINIC SECTION
   Brand story and experience highlight
   =========================================== */
.about-section {
    background:
        radial-gradient(circle at 12% 12%, rgba(249,101,50,.16), transparent 32%),
        radial-gradient(circle at 88% 18%, rgba(193,79,40,.12), transparent 36%),
        linear-gradient(180deg, #fffaf5 0%, #fff 100%);
    border-bottom: 1px solid rgba(251,146,60,.18);
    border-top: 1px solid rgba(251,146,60,.22);
    padding: 3.5rem 0 3.8rem;
    position: relative;
    overflow: hidden;
}
.about-grid {
    display: grid;
    align-items: center;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
    max-width: 1220px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-left {
    position: relative;
    display: grid;
    gap: 1.5rem;
}

.about-main-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(143,55,27,0.2);
    object-fit: cover;
    transition: transform 0.5s ease;
    position: relative;
}

.about-left:hover .about-main-img {
    transform: scale(1.02);
}

.about-stats-badge {
    position: absolute;
    top: 2rem;
    right: 8rem;
    background: linear-gradient(145deg, #f96532, rgba(193,79,40,0.96));
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 24px;
    color: #fff;
    padding: 1.2rem 1.8rem;
    font-family: 'Exo 2', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 20px 40px rgba(249,101,50,0.3);
    transform: scale(0.8) rotate(-5deg);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 3;
    animation: zoomIn 0.8s ease-out 0.3s both;
}

.about-left:hover .about-stats-badge {
    transform: scale(0.9) rotate(-2deg);
}

.about-stats-badge p {
    margin: 0;
    font-size: 0.85em;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.about-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251,146,60,0.25);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 20px 45px rgba(143,55,27,0.15);
    position: relative;
}

.about-subtitle {
    color: #f96532;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.5s;
}

.about-title {
    color: #f96532;
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.6s;
}

.about-content {
    color: #7c2d12;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.7;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.7s;
}

.about-content p {
    margin-bottom: 1rem;
}

.about-cta {
    align-self: flex-start;
    background: linear-gradient(95deg, #F96532 0%, #cf4c1f 100%);
    border-radius: 12px;
    color: #fff;
    display: inline-flex;
    font-size: 1rem;
    font-weight: 700;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(249,101,50,0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.8s ease-out 0.8s;
}

.about-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 35px rgba(207,76,31,0.4);
}

.about-section.animate-in .about-subtitle,
.about-section.animate-in .about-title,
.about-section.animate-in .about-content,
.about-section.animate-in .about-cta {
    opacity: 1;
    transform: translateY(0);
}

.about-section.animate-in .about-cta {
    transform: translateY(0) scale(1);
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-10deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        opacity: 1;
        transform: scale(0.8) rotate(-5deg);
    }
}

/* Active tab styling */
#tab1:checked ~ .tab-buttons .tab-button:nth-child(1),
#tab2:checked ~ .tab-buttons .tab-button:nth-child(2),
#tab3:checked ~ .tab-buttons .tab-button:nth-child(3),
#tab4:checked ~ .tab-buttons .tab-button:nth-child(4) {
    color: #f96532;
    border-bottom-color: #f96532;
    background: rgba(249, 101, 50, 0.1);
}

/* Tab Content */
.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.tab-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.tab-text h3 {
    color: #f96532;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tab-text p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tab-text strong {
    color: #f96532;
    font-weight: 700;
}

.safety-btn {
    display: inline-block;
    background: linear-gradient(95deg, #F96532 0%, #cf4c1f 100%);
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    border: 1px solid #f96532;
}

.safety-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249,101,50,.3);
}

/* Show active tab */
#tab1:checked ~ .tab-content .tab1-content,
#tab2:checked ~ .tab-content .tab2-content,
#tab3:checked ~ .tab-content .tab3-content,
#tab4:checked ~ .tab-content .tab4-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ===========================================
   LOCATIONS SECTION
   Clinic tabs and location detail panels
   =========================================== */
.locations-section {
    background:
        radial-gradient(circle at 12% 12%, rgba(249,101,50,.16), transparent 32%),
        radial-gradient(circle at 88% 18%, rgba(193,79,40,.12), transparent 36%),
        linear-gradient(180deg, #fffaf5 0%, #fff 100%);
    border-bottom: 1px solid rgba(251,146,60,.18);
    border-top: 1px solid rgba(251,146,60,.22);
    padding: 3.5rem 0;
}

.locations-head {
    margin-bottom: 2.5rem;
    text-align: center;
}

.locations-kicker {
    align-items: center;
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: 9999px;
    color: #9a3412;
    display: inline-flex;
    font-size: .68rem;
    font-weight: 700;
    gap: .45rem;
    letter-spacing: .08em;
    padding: .42rem .78rem;
    text-transform: uppercase;
}

.locations-title {
    color: #f96532;
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(1.85rem, 4vw, 2.85rem);
    font-weight: 800;
    line-height: 1.1;
    margin-top: .8rem;
}

.locations-tabs {
    background: #fff;
    border: 1px solid rgba(251,146,60,.25);
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(143,55,27,.12);
    overflow: hidden;
    position: relative;
}

.locations-tab-list {
    background: linear-gradient(180deg, #fff7ed 0%, rgba(255,247,237,.82) 100%);
    border-bottom: 1px solid rgba(251,146,60,.18);
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
    overflow: visible;
    padding: 1rem;
    position: relative;
}

.locations-tab-list::-webkit-scrollbar {
    display: none;
}

.locations-tab-list::-webkit-scrollbar-track {
    display: none;
}

.locations-tab-list::-webkit-scrollbar-thumb {
    display: none;
}

.locations-tab-list::-webkit-scrollbar-thumb:hover {
    display: none;
}

.locations-tab {
    align-items: center;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(249,101,50,.14);
    border-radius: 999px;
    color: #9a3412;
    cursor: pointer;
    display: flex;
    flex: 0 0 auto;
    font-size: .96rem;
    font-weight: 600;
    gap: .5rem;
    justify-content: center;
    line-height: 1.2;
    min-width: 0;
    padding: .82rem 1.1rem;
    position: relative;
    text-align: center;
    transition: all .25s ease;
    white-space: nowrap;
}

.locations-tab i {
    align-items: center;
    background: rgba(249,101,50,.12);
    border-radius: 999px;
    color: #ea580c;
    display: inline-flex;
    flex-shrink: 0;
    font-size: .95rem;
    height: 2rem;
    justify-content: center;
    opacity: 1;
    width: 2rem;
}

.locations-tab span {
    min-width: 0;
}

.locations-tab:hover {
    background: rgba(255,255,255,.94);
    border-color: rgba(249,101,50,.24);
    color: #ea580c;
    transform: translateY(-2px);
}

.locations-tab.active {
    background: linear-gradient(135deg, #f96532 0%, #ea580c 100%);
    border-color: rgba(255,255,255,.35);
    box-shadow: 0 18px 30px rgba(249,101,50,.22);
    color: #fff;
    transform: translateY(-2px);
}

.locations-tab.active i {
    background: rgba(255,255,255,.16);
    color: #fff;
}

.locations-tab:focus-visible {
    outline: 3px solid rgba(249,101,50,.25);
    outline-offset: 2px;
}

.locations-content {
    background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, #fffaf5 100%);
    min-width: 0;
    position: relative;
}

.locations-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all .4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.locations-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.locations-info {
    min-height: 100%;
    padding: 2.75rem 2.5rem;
}

.locations-info h3 {
    color: #f96532;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.locations-details p {
    color: #7c2d12;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.locations-details strong {
    color: #7c2d12;
}

.locations-features {
    display: grid;
    gap: .6rem;
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.locations-features li {
    align-items: center;
    color: #9a3412;
    display: flex;
    font-size: .95rem;
    gap: .6rem;
}

.locations-features i {
    color: #f59e0b;
    font-size: .9rem;
    width: 1.1rem;
}

.locations-cta {
    align-items: center;
    background: linear-gradient(95deg, #f96532 0%, #ea580c 100%);
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(249,101,50,.3);
    color: #fff;
    display: inline-flex;
    font-size: .95rem;
    font-weight: 700;
    gap: .55rem;
    margin-top: 1.5rem;
    padding: 1rem 1.75rem;
    text-decoration: none;
    transition: all .25s ease;
}

.locations-cta:hover {
    box-shadow: 0 16px 32px rgba(249,101,50,.4);
    transform: translateY(-2px);
}

/* ===========================================
   DOCTORS SECTION
   Dentist slider and navigation controls
   =========================================== */
.doctors-section {
    padding: 3rem 0 3.4rem;
}

.doctors-head {
    margin-bottom: 1.3rem;
    text-align: center;
}

.doctors-kicker {
    align-items: center;
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: 9999px;
    color: #9a3412;
    display: inline-flex;
    font-size: .68rem;
    font-weight: 700;
    gap: .45rem;
    letter-spacing: .08em;
    padding: .44rem .8rem;
    text-transform: uppercase;
}

.doctors-title {
    color: #f96532;
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.85rem);
    font-weight: 800;
    line-height: 1;
    margin-top: .8rem;
}

.doctor-slider {
    --doc-visible: 4;
    border-radius: 24px;
    overflow: hidden;
    padding: .2rem;
    position: relative;
}

.doctor-track {
    display: flex;
    gap: 1rem;
    transition: transform 560ms cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.doctor-card {
    border-radius: 18px;
    background: #fff;
    flex: 0 0 calc((100% - ((var(--doc-visible) - 1) * 1rem)) / var(--doc-visible));
}
.doctor-photo {
    background: #fff;
    border-radius: 18px;
    display: block;
    height: 13.4rem;
    object-fit: contain;
    object-position: center top;
    width: 100%;
}

.doctor-info {
    padding: .62rem .75rem .8rem;
    text-align: center;
}

.doctor-name {
    color: #f96532;
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.2;
}

.doctor-role {
    color: #9a3412;
    font-size: .72rem;
    margin-top: .22rem;
    opacity: .84;
}

.doctor-nav {
    align-items: center;
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(251,146,60,.45);
    border-radius: 9999px;
    color: #9a3412;
    cursor: pointer;
    display: inline-flex;
    height: 2.25rem;
    justify-content: center;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    transition: all .2s ease;
    width: 2.25rem;
    z-index: 2;
}

.doctor-nav:hover {
    background: #fff7ed;
    color: #ea580c;
    transform: translateY(-50%) scale(1.02);
}

.doctor-nav.prev {
    left: .55rem;
}

.doctor-nav.next {
    right: .55rem;
}

.doctor-dots {
    align-items: center;
    display: flex;
    gap: .36rem;
    justify-content: center;
    margin-top: .95rem;
}

.doctor-dot {
    background: rgba(251,146,60,.4);
    border: 0;
    border-radius: 9999px;
    cursor: pointer;
    height: .56rem;
    transition: all .2s ease;
    width: .56rem;
}

.doctor-dot.active {
    background: #F96532;
    width: 1.3rem;
}


/* ===========================================
   TESTIMONIALS SECTION STYLES
   =========================================== */
/* Testimonial Section */
.testimonial-section {
    background:
        radial-gradient(circle at 10% 10%, rgba(249,101,50,.14), transparent 30%),
        radial-gradient(circle at 92% 20%, rgba(193,79,40,.1), transparent 34%),
        linear-gradient(180deg, #fffaf4 0%, #fff 100%);
    border-bottom: 1px solid rgba(251,146,60,.18);
    border-top: 1px solid rgba(251,146,60,.2);
    padding: 3rem 0 3.4rem;
}

.testimonial-grid {
    align-items: start;
    display: grid;
    gap: 1.15rem;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
}

.testimonial-intro {
    background: #fff;
    border: 1px solid rgba(251,146,60,.25);
    border-radius: 20px;
    box-shadow: 0 14px 30px rgba(143,55,27,.1);
    padding: 1rem;
}

.testimonial-kicker {
    align-items: center;
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: 9999px;
    color: #9a3412;
    display: inline-flex;
    font-size: .68rem;
    font-weight: 700;
    gap: .42rem;
    letter-spacing: .08em;
    padding: .42rem .78rem;
    text-transform: uppercase;
}

.testimonial-title {
    color: #f96532;
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(1.55rem, 3.6vw, 2.4rem);
    font-weight: 800;
    line-height: 1.08;
    margin-top: .82rem;
}

.testimonial-copy {
    color: #7c2d12;
    font-size: .92rem;
    line-height: 1.58;
    margin-top: .62rem;
    opacity: .86;
}

.testimonial-btn {
    align-items: center;
    background: linear-gradient(95deg, #F96532 0%, #cf4c1f 100%);
    border-radius: 9999px;
    box-shadow: 0 10px 20px rgba(249,101,50,.26);
    color: #fff;
    display: inline-flex;
    font-size: .84rem;
    font-weight: 700;
    gap: .45rem;
    margin-top: .95rem;
    padding: .66rem 1rem;
    text-decoration: none;
    transition: all .2s ease;
}

.testimonial-btn:hover {
    box-shadow: 0 13px 24px rgba(207,76,31,.33);
    transform: translateY(-1px);
}

.testi-slider {
    --testi-visible: 2;
    background: #fff;
    border: 1px solid rgba(251,146,60,.24);
    border-radius: 20px;
    box-shadow: 0 14px 30px rgba(143,55,27,.1);
    overflow: hidden;
    padding: .9rem;
}

.testi-track {
    display: flex;
    gap: .9rem;
    transition: transform 560ms cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
    margin-top: 5px;
}

.testi-card {
    background: linear-gradient(160deg, #fff 0%, #fff8f1 100%);
    border: 1px solid rgba(251,146,60,.25);
    border-radius: 14px;
    display: grid;
    flex: 0 0 calc((100% - ((var(--testi-visible) - 1) * .9rem)) / var(--testi-visible));
    gap: .55rem;
    padding: .78rem;
}

.testi-head {
    align-items: center;
    display: flex;
    gap: .55rem;
}

.testi-avatar {
    background: #fff;
    border: 2px solid #fdba74;
    border-radius: 9999px;
    flex-shrink: 0;
    height: 2.5rem;
    object-fit: cover;
    width: 2.5rem;
}

.testi-name {
    color: #7c2d12;
    font-size: .84rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.testi-role {
    color: #9a3412;
    font-size: .7rem;
    margin: .12rem 0 0;
    opacity: .82;
}

.testi-stars {
    color: #f59e0b;
    display: flex;
    font-size: .72rem;
    gap: .22rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.testi-quote {
    color: #7c2d12;
    font-size: .82rem;
    line-height: 1.53;
    margin: 0;
    min-height: 7.35rem;
    opacity: .87;
}

.testi-dots {
    align-items: center;
    display: flex;
    gap: .34rem;
    justify-content: center;
    margin-top: .8rem;
}

.testi-dot {
    background: rgba(251,146,60,.4);
    border: 0;
    border-radius: 9999px;
    cursor: pointer;
    height: .56rem;
    transition: all .2s ease;
    width: .56rem;
}

.testi-dot.active {
    background: #F96532;
    width: 1.25rem;
}

/* ===========================================
   FAQ SECTION
   Accordion layout and question states
   =========================================== */
.faq-section {
    background:
        radial-gradient(circle at 10% 14%, rgba(249,101,50,.13), transparent 30%),
        radial-gradient(circle at 90% 20%, rgba(193,79,40,.1), transparent 34%),
        linear-gradient(180deg, #fff9f2 0%, #fff 100%);
    border-bottom: 1px solid rgba(251,146,60,.18);
    border-top: 1px solid rgba(251,146,60,.2);
    padding: 3rem 0 6rem;
}

.faq-head {
    margin: 0 auto 1.1rem;
    max-width: 46rem;
    text-align: center;
}

.faq-kicker {
    align-items: center;
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: 9999px;
    color: #9a3412;
    display: inline-flex;
    font-size: .68rem;
    font-weight: 700;
    gap: .42rem;
    letter-spacing: .08em;
    padding: .42rem .78rem;
    text-transform: uppercase;
}

.faq-title {
    color: #f96532;
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(1.6rem, 3.6vw, 2.45rem);
    font-weight: 800;
    line-height: 1.1;
    margin-top: .74rem;
}

.faq-copy {
    color: #7c2d12;
    font-size: .92rem;
    line-height: 1.62;
    margin-top: .55rem;
    opacity: .85;
}

.faq-grid {
    align-items: center;
    display: grid;
    gap: 1.2rem;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
}

.faq-video-card {
    background: #fff;
    border: 1px solid rgba(251,146,60,.25);
    border-radius: 20px;
    box-shadow: 0 14px 30px rgba(143,55,27,.1);
    padding: .9rem;
}

.faq-video-wrap {
    border: 1px solid rgba(251,146,60,.28);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.faq-video-wrap video {
    border: 0;
    aspect-ratio: 16 / 9;
    display: block;
    height: auto;
    width: 100%;
}
.faq-video-note {
    color: #7c2d12;
    font-size: .82rem;
    line-height: 1.5;
    margin-top: .74rem;
    opacity: .82;
}

.faq-accordion {
    display: grid;
    gap: .62rem;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(251,146,60,.24);
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(143,55,27,.08);
    overflow: hidden;
    transition: all .2s ease;
}

.faq-item.open {
    border-color: rgba(249,101,50,.38);
    box-shadow: 0 14px 26px rgba(143,55,27,.14);
}

.faq-item .fa-solid{
    margin-top: 2px;
}
.faq-trigger {
    align-items: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: flex;
    gap: .8rem;
    justify-content: space-between;
    padding: .78rem .88rem;
    text-align: left;
    width: 100%;
}

.faq-question {
    color: #f96532;
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.45;
}

.faq-icon {
    align-items: center;
    background: #fff;
    border: 1px solid #fdba74;
    border-radius: 9999px;
    color: #ea580c;
    display: inline-flex;
    flex-shrink: 0;
    font-size: .78rem;
    height: 1.75rem;
    justify-content: center;
    transition: all .2s ease;
    width: 1.75rem;
}

.faq-item.open .faq-icon {
    background: #F96532;
    border-color: #F96532;
    color: #fff;
    transform: rotate(180deg);
}

.faq-panel {
    color: #7c2d12;
    display: none;
    font-size: .84rem;
    line-height: 1.6;
    opacity: .85;
    padding: 0 .88rem .88rem;
}

.faq-item.open .faq-panel {
    display: block;
}

/* ===========================================
   SHARED LAYOUT COMPONENTS
   Header, treatment cards, and utility patterns
   =========================================== */
.progressive-header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 50;
}

.progressive-header::after {
    background: linear-gradient(180deg, rgba(15, 23, 42, .08) 0%, rgb(15 23 42 / 10%) 100%);
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    opacity: .85;
    position: absolute;
    right: 0;
}

.sync-fade {
    transition: opacity .22s ease;
}

.sync-fade.out {
    opacity: .35;
}

/* Treatment process cards */
.treatments-grid {
    display: grid;
    gap: 2.5rem;
}

.treatment-row {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    align-items: start;
}

.treatment-row:last-child {
    justify-items: center;
}

.treatment-card {
    background: #fff;
    border: 1px solid rgba(251, 146, 60, 0.3);
    border-radius: 24px;
    box-shadow: 0 16px 38px rgba(143, 55, 27, 0.12);
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    align-items: center;
}

.treatment-card:hover {
    box-shadow: 0 20px 45px rgba(143, 55, 27, 0.18);
    transform: translateY(-4px);
}

.treatment-image {
    flex-shrink: 0;
    width: 300px;
    min-width: 300px;
}

.treatment-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(143, 55, 27, 0.15);
}

.treatment-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.treatment-icon img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(251, 146, 60, 0.2);
}

.treatment-title {
    color: #f96532;
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.treatment-info p {
    color: #7c2d12;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Treatment row entrance animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.fadeInUp:nth-child(1) { animation-delay: 0.1s; }
.fadeInUp:nth-child(2) { animation-delay: 0.2s; }
.fadeInUp:nth-child(3) { animation-delay: 0.3s; }
.fadeInUp:nth-child(4) { animation-delay: 0.4s; }
.fadeInUp:nth-child(5) { animation-delay: 0.5s; }

/* ===========================================
   HERO SECTION
   Primary above-the-fold banner
   =========================================== */

.hero-section-simple {
    background: url('../images/Braces-1.webp') center/cover no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-left: clamp(1rem, 5vw, 3rem);
}

.hero-simple-content {
    max-width: 800px;
    padding: 2rem;
    z-index: 2;
}

.hero-simple-title {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 2.5rem;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    letter-spacing: -0.02em;
}

.hero-simple-cta {
    background: linear-gradient(135deg, #f96532 0%, #ea580c 100%);
    color: white;
    padding: 1.4rem 3.5rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 12px 35px rgba(249,101,50,0.5);
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-simple-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.hero-simple-cta:hover::before {
    left: 100%;
}

.hero-simple-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 45px rgba(249,101,50,0.7);
}

/* ===========================================
   FOOTER AND FLOATING ACTIONS
   Footer copy plus persistent quick-action buttons
   =========================================== */
.footer-bottom {
    margin: 16px;
    text-align: center;
}

.footer-bottom p {
    color: #7c2d12;
    font-size: .85rem;
    margin: 0;
}

/* Fixed contact menu */
.fixed-menu {
    position: fixed;
    bottom: 8rem;
    left: 2rem;
    right: auto;
    z-index: 1000;
}

.fixed-main-icon {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    height: 4.2rem;
    width: 4.2rem;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-bottom: 1rem;
}

.fixed-main-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.7), inset 0 1px 0 rgba(255,255,255,0.4);
}

/* Fixed menu popup options */
.fixed-options {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding: 1.2rem;
    backdrop-filter: blur(25px);
    border-radius: 24px;
    position: absolute;
    bottom: 100%;
    left: 0;
}

@keyframes popupSlide {
    from { opacity: 0; transform: translateY(-15px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.fixed-option {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    border: none;
    border-radius: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.4rem;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4), inset 0 1px 0 rgba(255,255,255,0.25);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(10px);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.fixed-menu:hover .fixed-option:nth-child(1) { transition-delay: 0.1s; }
.fixed-menu:hover .fixed-option:nth-child(2) { transition-delay: 0.2s; }

.fixed-menu:hover .fixed-option {
    opacity: 1;
    transform: translateY(0);
}

.fixed-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.7s;
}

.fixed-option:hover::before {
    left: 100%;
}

.fixed-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.6);
}

/* Scroll-to-top button */
.scroll-top {
    position: fixed;
    bottom: 4rem;
    right: 2rem;
    left: auto;
    z-index: 1000;
    background: linear-gradient(135deg, #f96532 0%, #f96532 100%);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    height: 4.2rem;
    width: 4.2rem;
    box-shadow: 0 8px 25px #f96532, inset 0 1px 0 #f96532;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fixed-menu:hover .fixed-options {
    display: flex;
}

.fixed-option {
    background: #fff;
    border: 1px solid #fdba74;
    border-radius: 8px;
    color: #9a3412;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.fixed-menu:hover .fixed-option {
    opacity: 1;
    transform: translateY(0);
}

.fixed-option:nth-child(1) {
    transition-delay: 0.1s;
}

.fixed-option:nth-child(2) {
    transition-delay: 0.2s;
}

.fixed-option:nth-child(3) {
    transition-delay: 0.3s;
}

.fixed-option:hover {
    background: #fff7ed;
    border-color: #fb923c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fixed-option i {
    font-size: 1rem;
}

/* WhatsApp shortcut */
.whatsapp-button {
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    text-decoration: none;
    position: fixed;
    bottom: 4rem;
    left: 2rem;
    right: auto;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    height: 4.2rem;
    width: 4.2rem;
    font-size: 1.6rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-button:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.4);

}

/* ===========================================
   SAFETY SECTION
   CSS-only informational tabs
   =========================================== */
.safety-section {
    background: #fff;
    padding: 3rem 0;
    border-top: 1px solid rgba(251,146,60,.22);
}

.safety-title {
    color: #f96532;
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* CSS-Only Tabs */
.safety-tabs {
    position: relative;
}

/* Hide radio buttons */
.safety-tabs input[type="radio"] {
    display: none;
}

/* Tab Buttons */
.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.tab-button {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    color: #6b7280;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    border-radius: 8px 8px 0 0;
}

.tab-button:hover {
    color: #f96532;
    background: rgba(249, 101, 50, 0.05);
}

/* Tab Content */
.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.tab-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.tab-text h3 {
    color: #f96532;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tab-text p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tab-text strong {
    color: #f96532;
    font-weight: 700;
}

.safety-btn {
    display: inline-block;
    background: linear-gradient(95deg, #F96532 0%, #cf4c1f 100%);
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    border: 1px solid #f96532;
}

.safety-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249,101,50,.3);
}

/* Show active tab */
#tab1:checked ~ .tab-content .tab1-content,
#tab2:checked ~ .tab-content .tab2-content,
#tab3:checked ~ .tab-content .tab3-content,
#tab4:checked ~ .tab-content .tab4-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
/* ===========================================
   RESPONSIVE OVERRIDES
   Breakpoint-specific layout adjustments
   =========================================== */
@media (max-width: 480px) {
    .hero-section-simple {
        min-height: 30vh;
        padding-left: 0;
    }

    .teeth-braces-grid{
        grid-template-columns: 1fr;
    }

    .hero-simple-title {
        margin-bottom: 0.5rem;
    }
    
    .hero-simple-content{
        text-align: left;
    }
    
    .hero-simple-cta{
        font-size: 0.5rem;
        padding: 1rem;
    }
    
    .book-grid-2 {
        grid-template-columns: 1fr;
    }

    .book-feature-list {
        bottom: .7rem;
        left: .7rem;
        right: .7rem;
    }

    .book-feature-list li {
        font-size: .76rem;
        padding: .42rem .5rem;
    }

    .procedure-grid {
        grid-template-columns: 1fr;
    }

    .procedure-card {
        padding: .5rem;
    }

    .about-right {
        padding: 1.5rem;
        border-radius: 20px 20px 0 0;
        border-left: none;
        border-right: none;
    }
    
    .about-grid {
        padding: 0 1rem;
        gap: 2rem;
    }
    .locations-tab {
        font-size: .76rem;
        padding: .7rem .55rem;
    }

    .locations-tab span {
        font-size: .76rem;
    }

    .locations-info {
        padding: 1.15rem 1rem 1.2rem;
    }

    .locations-info h3 {
        font-size: 1.25rem;
    }

    .locations-details p {
        font-size: .9rem;
        padding: .82rem .9rem;
    }

    .doctor-slider {
        --doc-visible: 1;
    }

    .doctor-photo {
        height: 12.4rem;
    }

    .doctor-nav {
        height: 2rem;
        width: 2rem;
    }

    .faq-trigger {
        padding: .72rem .75rem;
    }

    .hero-section {
        padding-top: 1.8rem;
    }

    .invis-main-card img {
        height: 15.6rem;
    }

    .invis-mini-card {
        width: min(78%, 15.4rem);
    }

    .invis-mini-card img {
        height: 7.2rem;
    }

    .invis-list-grid {
        gap: .12rem;
        grid-template-columns: 1fr;
    }

    .hero-media-slide img {
        min-height: 18.5rem;
    }
    .impact-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: .6rem;
        padding-bottom: .8rem;
        margin-bottom: .4rem;
        -webkit-overflow-scrolling: touch;
    }

    .impact-grid::-webkit-scrollbar {
        height: 6px;
    }

    .impact-grid::-webkit-scrollbar-thumb {
        background: rgba(148, 163, 184, .45);
        border-radius: 9999px;
    }

    .impact-grid::-webkit-scrollbar-track {
        background: transparent;
    }

    .impact-item {
        flex: 0 0 min(65%, 14rem);
        max-width: min(65%, 14rem);
        min-height: 5.5rem;
        padding: .7rem .8rem;
    }

    .impact-icon {
        font-size: 1.4rem;
        height: 3rem;
        width: 3rem;
    }

    .impact-kpi {
        font-size: 1.6rem;
    }

    .impact-label {
        font-size: .7rem;
    }
    .procedure-card {
        padding: .5rem;
    }
    .expertise-section {
        padding-top: 2.2rem;
    }

    .expertise-list-grid {
        gap: .1rem;
        grid-template-columns: 1fr;
    }
    .testimonial-section {
        padding-top: 2.2rem;
    }
    .whytoot-section {
        padding-top: 2.2rem;
    }

    .whytoot-visual {
        min-height: 19rem;
    }

    .whytoot-main {
        width: min(16.8rem, 82%);
    }

    .whytoot-float {
        width: min(9rem, 45%);
    }
    .faq-section {
        padding-top: 2.2rem;
    }
    .footer {
        padding: 1.8rem 0 1.2rem;
    }

    .footer-bottom {
        padding: 1.2rem 1rem 0;
        font-size: .9rem;
    }
}
@media (max-width: 768px) {
    .impact-item {
        flex: 0 0 calc((100% - 3rem) / 4);
        max-width: calc((100% - 3rem) / 4);
    }

    .tab-button {
        text-align: center;
        border-radius: 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .tab-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tab-image {
        order: -1;
    }

    .safety-title {
        font-size: 1.8rem;
    }
    .book-grid-2 {
        grid-template-columns: 1fr;
    }
    .about-section {
        padding: 2.5rem 0;
    }
    
    .about-right {
        padding: 2rem;
    }
    
    .about-main-img {
        max-width: 100%;
    }
    
    .about-stats-badge {
        font-size: 2rem;
        padding: 1rem 1.5rem;
        top: 0.5rem;
        right: -0.5rem;
    }
    .locations-section {
        padding: 2.5rem 0;
    }

    .locations-tabs {
        background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, #fff7ed 100%);
        border: 1px solid rgba(251,146,60,.22);
        border-radius: 26px;
        display: block;
        padding: 1rem;
    }

    .locations-tab-list {
        background: transparent;
        border-bottom: 0;
        border-right: 0;
        display: grid;
        gap: .55rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
        padding: 0;
        scrollbar-color: auto;
        scrollbar-width: auto;
    }

    .locations-tab-list::-webkit-scrollbar,
    .locations-tab-list::-webkit-scrollbar-track,
    .locations-tab-list::-webkit-scrollbar-thumb,
    .locations-tab-list::-webkit-scrollbar-thumb:hover {
        display: none;
    }

    .locations-tab {
        background: rgba(255,255,255,.9);
        border: 1px solid rgba(249,101,50,.16);
        border-radius: 18px;
        font-size: .8rem;
        font-weight: 700;
        gap: .4rem;
        justify-content: center;
        min-height: 0;
        padding: .72rem .8rem;
        text-align: center;
        transform: none;
        white-space: normal;
    }

    .locations-tab i {
        display: none;
    }

    .locations-tab span {
        display: block;
        font-size: .8rem;
        font-weight: 700;
        line-height: 1.15;
        overflow-wrap: break-word;
    }

    .locations-tab:hover {
        border-color: rgba(249,101,50,.28);
        transform: translateY(-2px);
    }

    .locations-tab.active {
        border-color: rgba(234,88,12,.2);
        box-shadow: 0 14px 26px rgba(249,101,50,.22);
        transform: translateY(-2px);
    }

    .locations-tab.active i {
        display: none;
    }

    .locations-content {
        background: transparent;
        padding-top: 1rem;
    }

    .locations-info {
        background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, #fffaf5 100%);
        border: 1px solid rgba(251,146,60,.18);
        border-radius: 24px;
        box-shadow: 0 16px 34px rgba(143,55,27,.08);
        padding: 1.45rem 1.2rem 1.5rem;
    }

    .locations-info h3 {
        font-size: 1.45rem;
        margin-bottom: 1rem;
    }

    .locations-details {
        display: grid;
        gap: .85rem;
    }

    .locations-details p {
        background: rgba(255,247,237,.9);
        border: 1px solid rgba(251,146,60,.14);
        border-radius: 16px;
        font-size: .93rem;
        margin-bottom: 0;
        padding: .9rem 1rem;
    }

    .locations-features {
        gap: .55rem;
        grid-template-columns: 1fr;
        margin: .15rem 0 0;
    }

    .locations-features li {
        align-items: center;
        background: rgba(255,255,255,.82);
        border: 1px solid rgba(251,146,60,.14);
        border-radius: 14px;
        font-size: .88rem;
        padding: .78rem .9rem;
    }

    .locations-cta {
        justify-content: center;
        padding: .95rem 1rem;
        width: 100%;
    }
    .hero-section {
        padding-top: 1.8rem;
    }

    .invis-mini-card {
        width: min(78%, 15.4rem);
    }

    .invis-mini-card img {
        height: 7.2rem;
    }

    .invis-list-grid {
        gap: .12rem;
        grid-template-columns: 1fr;
    }

    .hero-media-slide img {
        min-height: 18.5rem;
    }
    .impact-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: .5rem;
        padding-bottom: .6rem;
        margin-bottom: .3rem;
        -webkit-overflow-scrolling: touch;
    }

    .impact-grid::-webkit-scrollbar {
        height: 5px;
    }

    .impact-grid::-webkit-scrollbar-thumb {
        background: rgba(148, 163, 184, .45);
        border-radius: 9999px;
    }

    .impact-grid::-webkit-scrollbar-track {
        background: transparent;
    }

    .impact-item {
        flex: 0 0 min(60%, 12rem);
        max-width: min(60%, 12rem);
        min-height: 4.8rem;
        padding: .55rem .65rem;
        display: flex;
        align-items: center;
        gap: .6rem;
    }

    .impact-text-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
    }

    .impact-kpi {
        font-size: 1.45rem;
        margin: 0;
    }

    .impact-label {
        font-size: .65rem;
        margin: 0;
    }

    .impact-icon {
        font-size: 1.25rem;
        height: 2.6rem;
        width: 2.6rem;
        flex-shrink: 0;
    }

    .book-feature-list {
        bottom: .7rem;
        left: .7rem;
        right: .7rem;
    }

    .book-feature-list li {
        font-size: .76rem;
        padding: .42rem .5rem;
    }
    .tab-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .procedure-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .expertise-section {
        padding-top: 2.2rem;
    }

    .expertise-list-grid {
        gap: .1rem;
        grid-template-columns: 1fr;
    }
    .doctors-section {
        padding-top: 2.2rem;
    }

    .doctor-slider {
        --doc-visible: 1;
    }

    .doctor-photo {
        height: 12.4rem;
    }

    .doctor-nav {
        height: 2rem;
        width: 2rem;
    }
    .testimonial-section {
        padding-top: 2.2rem;
    }
    .whytoot-section {
        padding-top: 2.2rem;
    }

    .whytoot-visual {
        min-height: 19rem;
    }

    .whytoot-main {
        width: min(16.8rem, 82%);
    }

    .whytoot-float {
        width: min(9rem, 45%);
    }
    .faq-section {
        padding-top: 2.2rem;
    }

    .faq-trigger {
        padding: .72rem .75rem;
    }
    .footer {
        padding: 2.2rem 0 1.8rem;
    }
    .treatments-grid {
        gap: 2rem;
    }
    
    .treatment-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .treatment-row:last-child {
        justify-items: start;
    }
    
    .treatment-card {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
        width: 100%;
        max-width: none;
        align-items: stretch;
    }
    
    .treatment-image {
        width: 100%;
        min-width: auto;
        margin: 0 auto;
    }
    
    .treatment-image img {
        width: 100%;
        height: 240px;
        margin: 0 auto;
    }
    
    .treatment-icon {
        position: static;
        align-self: center;
        margin-top: -20px;
    }
    
    .treatment-icon img {
        width: 70px;
        height: 70px;
    }

    .footer-bottom {
        display: none;
    }
    .fixed-menu {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0;
        background: #f96532;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        height: 50px;
        overflow: hidden;
        box-shadow: 0 -2px 10px rgba(249,101,50,0.4);
    }

    .fixed-main-icon {
        display: none;
    }

    .fixed-options {
        display: flex;
        position: static;
        flex-direction: row;
        gap: 0;
        margin: 0;
        width: 100%;
        height: 100%;
        padding: 0;
    }

    .fixed-options .fixed-option {
        opacity: 1;
        transform: none;
        transition: none;
        flex: 1;
        height: 100%;
        background: #f96532;
        border: none;
        border-radius: 0;
        margin: 0;
        padding: 0;
        font-size: 0.8rem;
        font-weight: 700;
        color: #ffffff;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        line-height: 1.1;
        white-space: nowrap;
        box-shadow: none;
    }

    .fixed-options a:first-child {
        border-right: 1px solid #ffffff;
    }

    .whatsapp-button {
        bottom: 4.2rem;
    }
}
@media (max-width: 1024px) {
    .book-shell {
        grid-template-columns: 1fr;
    }

    .book-content {
        padding: 1.2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-left {
        justify-items: center;
    }
    
    .about-main-img {
        max-width: 350px;
    }
    
    .about-stats-badge {
        top: 1rem;
        right: 0;
    }

    .locations-tab-list {
        gap: .55rem;
        padding: .9rem;
    }

    .locations-tab {
        font-size: .9rem;
        padding: .75rem 1rem;
    }

    .locations-info {
        padding: 2.1rem;
    }

    .treatment-image {
        width: 250px;
        min-width: 250px;
    }
    
    .treatment-image img {
        height: 250px;
    }
    .impact-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .impact-grid {
        justify-content: space-between;
        gap: .9rem;
    }

    .book-media {
        display: none;
    }

    .book-media img {
        min-height: 16rem;
    }
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    .doctor-slider {
        --doc-visible: 1;
    }

    .doctor-photo {
        height: 12.8rem;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testi-slider {
        --testi-visible: 1;
    }

    .testi-quote {
        min-height: 0;
    }
    .whytoot-grid {
        grid-template-columns: 1fr;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .treatment-row {
        grid-template-columns: 1fr;
    }
    
    .treatment-card {
        gap: 1rem;
        padding: 1.2rem;
    }
    .footer {
        padding: 2.2rem 0 1.8rem;
    }
}

@media screen and (width: 768px) and (height: 1024px) {
    .treatment-row {
        grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    }
    .treatment-row:last-child {
        justify-items: center;
    }
    .treatment-card.max-w-2xl {
        max-width: 22rem;
    }
    .doctor-slider {
        --doc-visible: 3;
    }
}

@media screen and (height: 768px) and (width: 1024px) {
    .treatment-row {
        grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    }
    .whytoot-grid {
        grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    }
    .about-grid{
        gap: 2rem;
        grid-template-columns: 1fr 1fr;
    }
    .about-right {
        margin-right: 2rem;
    }
    .treatment-row:last-child {
        justify-items: center;
    }
    .treatment-card.max-w-2xl {
        max-width: 29rem;
    }
    .doctor-slider {
        --doc-visible: 3;
    }
    .faq-grid{
        grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    }
}
@media screen and (width: 820px) and (height: 1180px) {
    .treatment-row:last-child {
        justify-items: left;
    }
    .treatment-card.max-w-2xl {
        max-width: 49rem;
    }
    .whytoot-grid {
        grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    }
    .about-grid{
        gap: 2rem;
        grid-template-columns: 1fr 1fr;
    }
    .about-right {
        margin-right: 1.5rem;
    }
    .doctor-slider {
        --doc-visible: 3;
    }
    .faq-grid{
        grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    }
}
@media screen and (height: 820px) and (width: 1180px) {    
    .treatment-card.max-w-2xl {
        max-width: 34rem;
    }
    .about-right {
        margin-right: 2rem;
    }
}
/* Desktop-only fixed menu hover behavior */
@media (min-width: 769px) {
    .fixed-menu:hover .fixed-options {
        display: flex;
        animation: popupSlide 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .impact-item {
        flex: 0 0 calc((100% - 3rem) / 4);
        max-width: calc((100% - 3rem) / 4);
    }
}


@media (max-width: 768px) and (min-width: 481px) {
    .footer {
        padding: 2.2rem 0 1.8rem;
    }
}