/* ============================================
   Julia Lee D.D.S. - Master Stylesheet
   Design: Clean, modern, premium dental practice
   Colors: White base, #E1C76E gold accent,
           #1a1a1a / #2d2d2d dark, #f5f5f5 light
   Fonts:  Montserrat (headings), Open Sans (body)
   ============================================ */

/* ------------------------------------------
   CSS Custom Properties
   ------------------------------------------ */
:root {
    --color-gold: #E1C76E;
    --color-gold-dark: #c9af55;
    --color-gold-light: #f0dfa0;
    --color-black: #1a1a1a;
    --color-dark: #2d2d2d;
    --color-gray-dark: #555;
    --color-gray: #888;
    --color-gray-light: #e8e8e8;
    --color-bg-light: #f5f5f5;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-text-light: #ccc;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --container-max: 1280px;
    --nav-height: 80px;
    --transition: 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --radius: 4px;
    --radius-lg: 8px;
}

/* ------------------------------------------
   Reset / Base
   ------------------------------------------ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-gold-dark);
}

ul,
ol {
    list-style: none;
}

.bg_theme{
    background-color: #FEF9EF;
}

/* ------------------------------------------
   Typography
   ------------------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-black);
    margin-bottom: 0.5em;
}

h1 {
    font-size: 48px;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 36px;
    font-weight: 600;
}

h3 {
    font-size: 26px;
    font-weight: 600;
}

h4 {
    font-size: 20px;
    font-weight: 600;
}

h5 {
    font-size: 18px;
    font-weight: 600;
}

h6 {
    font-size: 16px;
    font-weight: 600;
}

p {
    margin-bottom: 1em;
    font-size: 16px;
    line-height: 1.7;
}

.lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-gray-dark);
}

/* ------------------------------------------
   Layout
   ------------------------------------------ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-sm {
    padding: 50px 0;
}

/* ------------------------------------------
   Top Bar
   ------------------------------------------ */
.top-bar {
    background-color: var(--color-black);
    color: var(--color-white);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}

.top-bar a:hover {
    color: var(--color-gold);
}

.top-bar-phone .icon-phone,
.top-bar-email .icon-email {
    flex-shrink: 0;
}

.phone-desktop {
    display: inline;
}

.phone-mobile {
    display: none;
}

/* ------------------------------------------
   Main Navigation
   ------------------------------------------ */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-white);
    transition: box-shadow var(--transition);
}

.main-nav.nav-scrolled {
    box-shadow: var(--shadow-md);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    max-width: 1340px;
}

.nav-logo {
    flex-shrink: 0;
}


.on_scroll_logo_none {
    display: block;
}

.on_scroll_logo {
    display: none;
}



body.is-homepage .main-nav-v2.nav-transparent a.nav-logo img.logo-img.on_scroll_logo_none {
    display: none;
}

body.is-homepage .main-nav-v2.nav-transparent a.nav-logo img.logo-img.on_scroll_logo {
    display: block;
}

.is-homepage a.nav-logo img.logo-img.on_scroll_logo_none {
    display: block;
}

.is-homepage a.nav-logo img.logo-img.on_scroll_logo {
    display: none;
}

body.is-homepage .main-nav-v2.nav-transparent.nav-scrolled a.nav-logo img.logo-img.on_scroll_logo_none {
    display: block;
}
body.is-homepage .main-nav-v2.nav-transparent.nav-scrolled a.nav-logo img.logo-img.on_scroll_logo {
    display: none;
}

.main-nav-v2.nav-transparent.nav-scrolled .on_scroll_logo_none,
.main-nav-v2.nav-scrolled .on_scroll_logo_none {
    display: block;
}

.main-nav-v2.nav-transparent.nav-scrolled .on_scroll_logo,
.main-nav-v2.nav-scrolled .on_scroll_logo {
    display: none;
}

.logo-img {
    max-height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 10px 8px;
    font-family: var(--font-heading);
    font-size: 11.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-black);
    transition: color var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

.nav-link.active {
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background-color: var(--color-gold);
}

/* Dropdown Menus */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--color-white);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--color-gold);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1001;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.dropdown-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--color-text);
    font-weight: 400;
    transition: all var(--transition);
}

.dropdown-menu li a:hover {
    background-color: var(--color-bg-light);
    color: var(--color-gold);
    padding-left: 24px;
}

/* Nav CTA Button */
.nav-cta {
    margin-left: 8px;
    font-size: 11.5px;
    padding: 9px 20px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    gap: 5px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-black);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.is-active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ------------------------------------------
   Buttons
   ------------------------------------------ */
.btn {
    display: inline-block;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.32px;
    padding: 12px 30px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    border: 2px solid transparent;
    line-height: 1.4;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--gold-v2);
    color: #fff;
    border-color: var(--gold-v2);
}

.btn-primary:hover {
    background-color: var(--gold-v2-light);
    border-color: var(--gold-v2-light);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(179, 138, 0, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--gold-v2);
    border-color: var(--gold-v2);
}

.btn-secondary:hover {
    background-color: var(--gold-v2);
    color: #fff;
    transform: translateY(-1px);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 15px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}


/*----------------------------*/

body.is-homepage main section {
    background-color: #FEF9EF;
}

/*----------------------------*/
/* ------------------------------------------
   Hero / Page Banner
   ------------------------------------------ */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(45, 45, 45, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    color: var(--color-white);
    font-size: 56px;
    margin-bottom: 20px;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

.hero .btn {
    margin: 0 8px;
}

.page-banner {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    color: var(--color-white);
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.48) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.32) 2.6%, rgba(0, 0, 0, 0) 21.1%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.32) 3.8%, rgba(0, 0, 0, 0) 26%);
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
    padding-top: 40px;
    padding-bottom: 40px;
}

.page-banner h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-style: italic;
    font-size: 52px;
    line-height: 1.15;
    color: #fff;
    margin-top: 12px;
    margin-bottom: 0;
    letter-spacing: 0;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--color-gold);
}

.breadcrumb a:hover {
    color: var(--color-gold-light);
}

.breadcrumb .separator {
    color: var(--color-gray);
}

.breadcrumb .current {
    color: rgba(255, 255, 255, 0.7);
}

/* ------------------------------------------
   Section Backgrounds
   ------------------------------------------ */
.bg-light {
    background-color: var(--color-bg-light);
}

.bg-dark {
    background-color: var(--color-black);
    color: var(--color-white);
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 {
    color: var(--color-white);
}

.bg-dark p {
    color: var(--color-text-light);
}

.section-dark {
    background-color: var(--color-black);
    color: var(--color-white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--color-white);
}

.section-dark p {
    color: var(--color-text-light);
}

.section-gray {
    background-color: var(--color-bg-light);
}

/* ------------------------------------------
   Section Headings
   ------------------------------------------ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    color: var(--color-gray-dark);
    font-size: 16px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.heading-line::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    margin-top: 15px;
}

.heading-line-center::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 15px auto 0;
}

/* ------------------------------------------
   Hero Banner (alternate style used on service pages)
   ------------------------------------------ */
.hero-banner {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    color: var(--color-white);
    background-image: url(/assets/images/about-hero.webp) !important;
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.48) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.32) 2.6%, rgba(0, 0, 0, 0) 21.1%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.32) 3.8%, rgba(0, 0, 0, 0) 26%);
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-banner h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-style: italic;
    font-size: 52px;
    line-height: 1.15;
    color: #fff;
    margin-top: 12px;
    margin-bottom: 0;
    letter-spacing: 0;
}

.hero-banner .breadcrumb {
    margin-bottom: 0;
    justify-content: flex-start;
}

.hero-banner .breadcrumb a,
.hero-banner .breadcrumb span {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

.hero-banner .breadcrumb a:hover {
    color: #fff;
}

/* ------------------------------------------
   Section Light
   ------------------------------------------ */
.section-light {
    padding: 80px 0;
}

/* ------------------------------------------
   Welcome Grid (Homepage)
   ------------------------------------------ */
.welcome-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.welcome-text h2 {
    margin-bottom: 10px;
}

.welcome-text h3 {
    color: var(--color-gray-dark);
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 20px;
}

.welcome-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.doctor-quote {
    border-left: 4px solid var(--color-gold);
    padding: 20px 24px;
    margin: 24px 0;
    background-color: var(--color-bg-light);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.doctor-quote p {
    font-style: italic;
    font-size: 18px;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.doctor-quote cite {
    font-style: normal;
    font-weight: 600;
    color: var(--color-gold-dark);
    font-size: 14px;
}

/* Section Heading Utilities */
.section-heading {
    margin-bottom: 16px;
}

.section-subheading {
    color: var(--color-gray-dark);
    font-weight: 500;
    margin-bottom: 20px;
}

/* ------------------------------------------
   Hero Variants
   ------------------------------------------ */
.hero-home {
    min-height: 650px;
}

.hero-interior {
    min-height: 350px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(45, 45, 45, 0.55) 100%);
    z-index: 1;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ------------------------------------------
   Service Card Image
   ------------------------------------------ */
.service-card-image {
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

/* ------------------------------------------
   Cards / Services Grid
   ------------------------------------------ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card-body {
    padding: 28px;
}

.service-card-body h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card-body p {
    color: var(--color-gray-dark);
    font-size: 15px;
    margin-bottom: 15px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-gold);
}

.service-card-link:hover {
    gap: 10px;
    color: var(--color-gold-dark);
}

/* Icon Cards */
.icon-card {
    text-align: center;
    padding: 40px 28px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.icon-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.icon-card .icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(225, 199, 110, 0.12);
    border-radius: 50%;
    color: var(--color-gold);
}

.icon-card h4 {
    margin-bottom: 10px;
}

.icon-card p {
    font-size: 15px;
    color: var(--color-gray-dark);
    margin-bottom: 0;
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-col-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.two-col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ------------------------------------------
   Forms
   ------------------------------------------ */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-black);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text);
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--color-gray-light);
    outline: none;
    transition: border-color var(--transition);
}

.form-control:focus {
    border-bottom-color: var(--color-gold);
}

.form-control::placeholder {
    color: var(--color-gray);
}

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

select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 24px;
}

/* Boxed form variant */
.form-control-boxed {
    padding: 14px 16px;
    border: 1px solid var(--color-gray-light);
    border-radius: var(--radius);
    background-color: var(--color-white);
}

.form-control-boxed:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(225, 199, 110, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit {
    margin-top: 10px;
}

/* ------------------------------------------
   Gallery / Before & After
   ------------------------------------------ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-pair {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.gallery-pair:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.gallery-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.gallery-img-wrap {
    position: relative;
    overflow: hidden;
}

.gallery-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-pair:hover .gallery-img-wrap img {
    transform: scale(1.05);
}

.gallery-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background-color: rgba(26, 26, 26, 0.8);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 3px;
}

.gallery-caption {
    padding: 16px 20px;
    font-size: 14px;
    color: var(--color-gray-dark);
    text-align: center;
}

/* ------------------------------------------
   Testimonials
   ------------------------------------------ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    font-size: 48px;
    font-family: Georgia, serif;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-gray-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--color-gold);
}

.testimonial-author {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-black);
}

.testimonial-role {
    font-size: 13px;
    color: var(--color-gray);
    margin-bottom: 0;
}

/* ------------------------------------------
   CTA Section
   ------------------------------------------ */
.cta-section {
    background-color: var(--color-black);
    padding: 80px 0;
    text-align: center;
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.cta-heading {
    color: var(--color-white);
    font-size: 36px;
    margin-bottom: 12px;
}

.cta-subtext {
    color: var(--color-text-light);
    font-size: 17px;
    margin-bottom: 30px;
}

.cta-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 36px;
}

.cta-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.cta-info-item a {
    color: rgba(255, 255, 255, 0.85);
}

.cta-info-item a:hover {
    color: var(--color-gold);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ------------------------------------------
   Footer
   ------------------------------------------ */
.site-footer {
    background-color: var(--color-black);
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo-img {
    max-height: 50px;
    margin-bottom: 16px;
}

.footer-about-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
}

.social-link:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    align-items: flex-start;
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-gold);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.footer-bottom a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: var(--color-gold);
}

/* ------------------------------------------
   404 Error Page
   ------------------------------------------ */
.error-page {
    padding: 60px 0;
}

.error-code {
    display: block;
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 20px;
}

.error-page h2 {
    margin-bottom: 16px;
}

.error-page p {
    max-width: 500px;
    margin: 0 auto 30px;
    color: var(--color-gray-dark);
}

.error-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ------------------------------------------
   Utility Classes
   ------------------------------------------ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-gold {
    color: var(--color-gold);
}

.text-white {
    color: var(--color-white);
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 40px;
}

.mb-5 {
    margin-bottom: 60px;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-5 {
    margin-top: 60px;
}

.pt-0 {
    padding-top: 0;
}

.pb-0 {
    padding-bottom: 0;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-600 {
    max-width: 600px;
}

.max-w-700 {
    max-width: 700px;
}

.max-w-800 {
    max-width: 800px;
}

/* ------------------------------------------
   Animation Classes
   ------------------------------------------ */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.animate-fade-in.is-visible {
    opacity: 1;
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-slide-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-slide-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
}

/* Staggered animation delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* Smooth page load */
@keyframes pageLoad {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

main {
    animation: pageLoad 0.4s ease;
}

/* Subtle hover animations */
.service-card,
.gallery-pair,
.testimonial-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Smooth image zoom on hover */
.service-card img,
.gallery-pair img {
    transition: transform 0.5s ease;
}

/* Gold underline animation for links in content */
.content-area a:not(.btn) {
    position: relative;
    color: var(--color-gold-dark);
}

.content-area a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.content-area a:not(.btn):hover::after {
    width: 100%;
}

/* ------------------------------------------
   Service Showcase Sections (Homepage)
   ------------------------------------------ */
.section-showcase {
    padding: 100px 0;
}

.showcase-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.showcase-layout-reverse .showcase-image {
    order: -1;
}

.showcase-layout-reverse .showcase-content {
    order: 1;
}

.showcase-content .section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.showcase-content .section-heading {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.showcase-content>p {
    color: var(--color-gray-dark);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.showcase-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.showcase-link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
}

.showcase-link-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.showcase-link-item:hover {
    color: var(--color-gold);
    padding-left: 6px;
}

.showcase-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(225, 199, 110, 0.1);
    color: var(--color-gold);
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.showcase-link-item:hover .showcase-link-icon {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.showcase-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.showcase-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-image:hover img {
    transform: scale(1.03);
}

.showcase-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 16px 22px;
    text-align: center;
    border: 1px solid rgba(225, 199, 110, 0.3);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1.1;
}

.badge-text {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

/* ------------------------------------------
   Services Grid 3-column variant
   ------------------------------------------ */
.services-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* ------------------------------------------
   Gallery Preview (Homepage)
   ------------------------------------------ */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-preview-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.ba-image {
    position: relative;
    overflow: hidden;
}

.ba-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-preview-item:hover .ba-image img {
    transform: scale(1.05);
}

.ba-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(26, 26, 26, 0.8);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 3px;
}

/* ------------------------------------------
   Implant Guide Section (Homepage)
   ------------------------------------------ */
.section-implant-guide {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f6f0 0%, #f5f5f5 100%);
}

.implant-guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.implant-guide-content h2 {
    margin-bottom: 10px;
}

.implant-guide-content h3 {
    color: var(--color-gray-dark);
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 20px;
}

.guide-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.guide-benefits li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--color-text);
}

.guide-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
    font-size: 16px;
}

.implant-guide-image img {
    max-width: 300px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.implant-guide-form {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Lead Form */
.lead-form .form-group {
    margin-bottom: 20px;
}

.lead-form .form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-black);
    margin-bottom: 6px;
}

.lead-form .form-group input[type="text"],
.lead-form .form-group input[type="email"],
.lead-form .form-group input[type="tel"] {
    width: 100%;
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text);
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--color-gray-light);
    outline: none;
    transition: border-color var(--transition);
}

.lead-form .form-group input:focus {
    border-bottom-color: var(--color-gold);
}

.lead-form .form-group input::placeholder {
    color: var(--color-gray);
}

/* Checkbox */
.form-group-checkbox {
    margin-bottom: 24px !important;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 400 !important;
    color: var(--color-gray-dark) !important;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--color-gold);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ------------------------------------------
   Testimonial Stars (text spans)
   ------------------------------------------ */
.testimonial-stars .star {
    color: var(--color-gold);
    font-size: 20px;
}

.testimonial-source {
    display: block;
    font-size: 13px;
    color: var(--color-gray);
    font-weight: 400;
    margin-top: 4px;
}

/* ------------------------------------------
   Office Photos Grid (Homepage)
   ------------------------------------------ */
.office-photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.office-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
}

.office-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.office-photo:hover img {
    transform: scale(1.08);
}

/* ------------------------------------------
   Page FAQ Section (service pages)
   ------------------------------------------ */
.page-faq-section {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.page-faq-section .faq-section-inner {
    max-width: 860px;
    margin: 0 auto;
}

.page-faq-section .faq-section-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-style: italic;
    font-size: 38px;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 12px;
}

.page-faq-section .faq-section-divider {
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    margin: 0 auto 40px;
}

.page-faq-section details {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
    overflow: hidden;
    transition: border-color 0.3s;
}

.page-faq-section details[open] {
    border-color: var(--color-gold);
}

.page-faq-section details summary {
    padding: 18px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    color: #222;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.page-faq-section details summary:hover {
    background: #faf8f0;
}

.page-faq-section details summary::-webkit-details-marker {
    display: none;
}

.page-faq-section details summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--color-gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-left: 15px;
    transition: transform 0.3s;
}

.page-faq-section details[open] summary::after {
    content: '\2212';
}

.page-faq-section details .faq-answer {
    padding: 0 24px 20px;
    color: #555;
    line-height: 1.8;
}

/* ------------------------------------------
   FAQ Accordion
   ------------------------------------------ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-gray-light);
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--color-black);
    cursor: pointer;
    list-style: none;
    transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--color-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item summary:hover {
    color: var(--color-gold);
}

.faq-item .faq-answer {
    padding: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-gray-dark);
}

/* ------------------------------------------
   Contact Grid (used on contact page)
   ------------------------------------------ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* ------------------------------------------
   Phone Responsive Classes
   ------------------------------------------ */
.phone-desktop {
    display: inline;
}

.phone-mobile {
    display: none;
}

/* ------------------------------------------
   Media Queries
   ------------------------------------------ */

/* Tablet: max-width 992px */
@media (max-width: 992px) {
    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 22px;
    }

    .section {
        padding: 60px 0;
    }

    /* Navigation - Mobile */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 30px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        transition: right 0.35s ease;
        overflow-y: auto;
        z-index: 1001;
        gap: 0;
    }

    .nav-menu.is-open {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-item {
        border-bottom: 1px solid var(--color-gray-light);
    }

    .nav-link {
        padding: 14px 0;
        font-size: 14px;
    }

    .nav-link.active::after {
        display: none;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-top: none;
        border-radius: 0;
        padding: 0 0 8px 16px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background-color: transparent;
    }

    .has-dropdown.dropdown-open .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 8px 0;
        font-size: 13px;
    }

    .dropdown-menu li a:hover {
        padding-left: 0;
        background-color: transparent;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 20px;
        text-align: center;
    }

    /* Welcome Grid */
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-light {
        padding: 60px 0;
    }

    /* Showcase */
    .section-showcase {
        padding: 70px 0;
    }

    .showcase-layout {
        gap: 40px;
    }

    .showcase-content .section-heading {
        font-size: 28px;
    }

    .showcase-image img {
        height: 420px;
    }

    /* Implant Guide */
    .implant-guide-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Gallery Preview */
    .gallery-preview-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Office Photos */
    .office-photos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    /* Grids */
    .services-grid,
    .services-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    /* Hero */
    .hero {
        min-height: 450px;
    }

    .hero-home {
        min-height: 500px;
    }

    .hero-interior {
        min-height: 280px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-banner {
        min-height: 360px;
    }

    .hero-banner h1 {
        font-size: 40px;
    }

    /* CTA */
    .cta-heading {
        font-size: 30px;
    }

    .cta-details {
        flex-direction: column;
        align-items: center;
    }
}

/* Two-column reorder: image on top, content below (≤991px)
   Applies to all inner pages — homepage excluded by its own layout classes */
@media (max-width: 991px) {

    /* Standard service-page two-col */
    .two-col {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .two-col .two-col-img {
        order: -1;
    }

    /* Inline-styled two-col-grid (what-to-expect, tooth-colored-fillings,
       post-operative-instructions). !important overrides inline grid-template-columns.
       :has(> img) puts whichever column contains an image on top. */
    .two-col-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .two-col-grid>div:has(> img) {
        order: -1;
    }

    /* patient-info.php flex two-column section */
    .alternate_section_reverse .row {
        flex-direction: column;
    }

    .alternate_section_reverse .alternate_section_reverse_img {
        order: -1;
        width: 100%;
    }
}

/* Mobile: max-width 768px */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 20px;
    }

    .section {
        padding: 50px 0;
    }

    .phone-desktop {
        display: none;
    }

    .phone-mobile {
        display: inline;
    }

    /* Hero */
    .hero {
        min-height: 380px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero .btn {
        margin: 4px;
    }

    .hero-banner {
        min-height: 300px;
    }

    .hero-banner h1 {
        font-size: 34px;
    }

    /* Page Banner */
    .page-banner {
        padding: 60px 0 40px;
    }

    .page-banner h1 {
        font-size: 32px;
    }

    /* Grids */
    .services-grid,
    .services-grid-3 {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr !important;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .two-col {
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
    }

    .section-light {
        padding: 50px 0;
    }

    /* Showcase */
    .section-showcase {
        padding: 50px 0;
    }

    .showcase-layout,
    .showcase-layout-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }

    .showcase-content .section-heading {
        font-size: 26px;
    }

    .showcase-image img {
        height: 320px;
    }

    .showcase-image {
        order: -1;
    }

    /* Gallery Preview */
    .ba-image img {
        height: 180px;
    }

    /* Office Photos */
    .office-photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .office-photo:nth-child(n+7) {
        display: none;
    }

    /* Implant Guide */
    .section-implant-guide {
        padding: 50px 0;
    }

    .implant-guide-form {
        padding: 28px;
    }

    .hero-home {
        min-height: 400px;
    }

    /* CTA */
    .cta-section {
        padding: 60px 0;
    }

    .cta-heading {
        font-size: 26px;
    }

    .cta-info-item {
        font-size: 14px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Error Page */
    .error-code {
        font-size: 80px;
    }

    .error-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 575px) {
    .main-nav-v2 .nav-v2-inner .nav-v2-actions a.btn-pill.btn-pill-gold {
        display: none;
    }
}

/* Small Mobile: max-width 480px */
@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 18px;
    }

    .container {
        padding: 0 16px;
    }

    .section {
        padding: 40px 0;
    }

    .hero {
        min-height: 320px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .btn {
        padding: 10px 24px;
        font-size: 13px;
    }

    .btn-lg {
        padding: 12px 30px;
        font-size: 14px;
    }

    .page-banner h1 {
        font-size: 26px;
    }

    .nav-menu {
        width: 280px;
    }

    .service-card-body {
        padding: 20px;
    }

    .testimonial-card {
        padding: 28px 22px;
    }

    .gallery-img-wrap img {
        height: 150px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Top Bar */
    .top-bar {
        font-size: 12px;
        padding: 6px 0;
    }

    .top-bar .top-bar-email {
        display: none !important;
    }

    .top-bar-inner {
        justify-content: center;
    }
}

@media only screen and (max-width: 425.5px) {
    .gallery-pair{
        grid-template-columns: 1fr !important;
    }
}

/* ------------------------------------------
   Print Styles
   ------------------------------------------ */
@media print {

    .top-bar,
    .main-nav,
    .cta-section,
    .site-footer {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}

/* ============================================
   V2 REDESIGN STYLES
   Figma-matched styles for homepage, header, footer
   ============================================ */

/* ------------------------------------------
   V2 CSS Variables
   ------------------------------------------ */
:root {
    --gold-v2: #b38a00;
    --gold-v2-light: #d4a800;
    --cream: #f8f2e4;
    --cream-light: #fef9ef;
    --cream-dark: #faf2e3;
    --border-cream: #f0e5d0;
    --border-warm: #d1c9bf;
    --dark-v2: #1e1e1e;
    --font-display: 'Poltawski Nowy', Georgia, serif;
    --font-inter: 'Inter', sans-serif;
    --container-v2: 1440px;
}

/* ------------------------------------------
   V2 Container
   ------------------------------------------ */
.container-v2 {
    max-width: var(--container-v2);
    margin: 0 auto;
    padding: 0 40px;
}

/* ------------------------------------------
   V2 Pill Buttons
   ------------------------------------------ */
.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.32px;
    padding: 14px 26px;
    border-radius: 120px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
    line-height: 1.15;
    white-space: nowrap;
}

.btn-pill-gold {
    background-color: var(--gold-v2);
    color: #fff;
    border-color: var(--gold-v2);
}

.btn-pill-gold:hover {
    background-color: var(--gold-v2-light);
    border-color: var(--gold-v2-light);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(179, 138, 0, 0.35);
}

.btn-pill-white {
    background-color: #fff;
    color: var(--gold-v2);
    border-color: #fff;
}

.btn-pill-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--gold-v2);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.35);
}

.btn-pill-outline {
    background-color: transparent;
    color: var(--gold-v2);
    border-color: var(--gold-v2);
}

.btn-pill-outline:hover {
    background-color: var(--gold-v2);
    color: #fff;
    transform: translateY(-1px);
}

/* ------------------------------------------
   V2 Section Title
   ------------------------------------------ */
.section-title-v2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-style: italic;
    font-size: 48px;
    line-height: 1.15;
    color: var(--dark-v2);
    margin-bottom: 16px;
}

/* ------------------------------------------
   V2 Top Bar
   ------------------------------------------ */
.top-bar-v2 {
    background-color: var(--gold-v2);
    text-align: center;
    padding: 12px 10px;
    width: 100%;
    height: 100%;
}

.top-bar-v2-link {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    text-decoration: underline;
    line-height: 1.1;
    display: flex;
    justify-content: center;
}

.top-bar-v2-link:hover {
    color: #fff;
    opacity: 0.85;
}

/* ------------------------------------------
   V2 Navigation
   ------------------------------------------ */
.main-nav-v2 {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
}

.main-nav-v2.nav-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Transparent nav for homepage - overlays hero */
.main-nav-v2.nav-transparent {
    position: absolute;
    top: 42px;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 100;
    padding-top: 24px;
}

.main-nav-v2.nav-transparent.nav-scrolled {
    position: fixed;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.main-nav-v2.nav-transparent.nav-scrolled {
    padding-top: 0;
    background-color: #fff;
}

.nav-v2-inner {
    max-width: var(--container-v2);
    margin: 0 auto;
    padding: 12px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 12px;
}

.main-nav-v2:not(.nav-transparent) .nav-v2-inner {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
}

.main-nav-v2 .nav-logo {
    flex-shrink: 0;
}

.main-nav-v2 .logo-img {
    max-height: 60px;
    width: auto;
}

.nav-v2-links {
    display: flex;
    align-items: center;
}

.nav-v2-list {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-v2-item {
    position: relative;
}

.nav-v2-link {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.32px;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-v2-link svg {
    flex-shrink: 0;
}

.nav-v2-link:hover {
    color: var(--gold-v2);
}

/* Non-transparent nav: dark text */
.main-nav-v2:not(.nav-transparent) .nav-v2-link,
.main-nav-v2.nav-transparent.nav-scrolled .nav-v2-link {
    color: var(--dark-v2);
}

.main-nav-v2:not(.nav-transparent) .nav-v2-link:hover,
.main-nav-v2.nav-transparent.nav-scrolled .nav-v2-link:hover {
    color: var(--gold-v2);
}

/* Nav dropdowns */
.nav-v2-item .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: #fff;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    border-top: 3px solid var(--gold-v2);
    border-radius: 0 0 4px 4px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1001;
}

.nav-v2-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-v2-item .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--color-text);
    font-weight: 400;
    transition: all 0.3s ease;
}

.nav-v2-item .dropdown-menu li a:hover {
    background-color: var(--color-bg-light);
    color: var(--gold-v2);
    padding-left: 24px;
}

.nav-v2-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-v2-actions .btn-pill-gold {
    font-size: 16px;
    padding: 14px 26px;
}

/* V2 nav hamburger: hidden by default, shown on mobile */
.main-nav-v2 .hamburger {
    display: none;
}

/* Non-transparent hamburger color */
.main-nav-v2:not(.nav-transparent) .hamburger-line,
.main-nav-v2.nav-transparent.nav-scrolled .hamburger-line {
    background-color: var(--dark-v2);
}

.main-nav-v2.nav-transparent .hamburger-line {
    background-color: #fff;
}

/* ------------------------------------------
   V2 Hero
   ------------------------------------------ */
.hero-v2 {
    position: relative;
    min-height: 900px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding-bottom: 60px;
}

.hero-v2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.48) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.32) 2.6%, rgba(0, 0, 0, 0) 21.1%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.32) 3.8%, rgba(0, 0, 0, 0) 26%);
    z-index: 1;
}

.hero-v2-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-v2);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-v2-text {
    max-width: 708px;
}

.hero-v2-badge {
    display: inline-block;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    padding: 8px 24px;
    border-radius: 120px;
    margin-bottom: 16px;
}

.hero-v2-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-style: italic;
    font-size: 48px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
}

.hero-v2-subtitle {
    font-family: var(--font-inter);
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 24px;
}

.hero-v2-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    color: #fff;
    white-space: nowrap;
}

.hero-stat-number {
    font-family: var(--font-inter);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.52px;
    line-height: 1.4;
}

.hero-stat-label {
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.36px;
    line-height: 1.4;
}

.hero-stat-divider {
    width: 2px;
    height: 61px;
    background: rgba(255, 255, 255, 0.25);
}

/* ------------------------------------------
   V2 Services Section
   ------------------------------------------ */
.section-services-v2 {
    padding: 100px 0;
    background-color: #fff;
}

.section-services-v2 h2.section-title-v2 {
    text-align: center;
    margin-bottom: 48px;
}

.services-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.service-v2-card {
    background-color: var(--cream);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 21px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-v2-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-v2-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.service-v2-num {
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-v2);
    letter-spacing: 0.36px;
    line-height: 1.4;
}

.service-v2-title {
    font-family: var(--font-inter);
    font-size: 28px;
    font-weight: 400;
    color: var(--dark-v2);
    letter-spacing: 0.56px;
    line-height: 1.2;
    margin-bottom: 0;
}

.service-v2-desc {
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 400;
    color: var(--dark-v2);
    letter-spacing: 0.36px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0;
}

.service-v2-img {
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
}

.service-v2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-v2-card:hover .service-v2-img img {
    transform: scale(1.05);
}

.services-v2-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

/* ------------------------------------------
   V2 Diagnostics Section
   ------------------------------------------ */
.section-diagnostics {
    padding: 100px 0;
    background-color: var(--cream-light);
}

.diagnostics-header {
    text-align: center;
    margin-bottom: 80px;
}

.diagnostics-header .section-title-v2 {
    max-width: 500px;
    margin: 0 auto 42px;
}

.diagnostics-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.diagnostics-quote p {
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 400;
    color: var(--dark-v2);
    letter-spacing: 0.36px;
    line-height: 1.6;
    text-align: center;
    max-width: 445px;
    margin-bottom: 0;
}

.diagnostics-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.diagnostics-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.diagnostics-author span {
    font-family: var(--font-inter);
    font-size: 18px;
    font-style: italic;
    color: var(--dark-v2);
    letter-spacing: 0.36px;
}

.diagnostics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.diagnostics-cell {
    padding: 0 48px 60px;
    border-right: 1px solid var(--border-warm);
    border-bottom: 1px solid var(--border-warm);
    position: relative;
    overflow: hidden;
}

.diagnostics-cell:nth-child(3),
.diagnostics-cell:nth-child(6) {
    border-right: none;
}

.diagnostics-cell:nth-child(4),
.diagnostics-cell:nth-child(5),
.diagnostics-cell:nth-child(6) {
    padding-top: 60px;
    border-bottom: none;
}

.diagnostics-cell-title {
    font-family: var(--font-inter);
    font-size: 34px;
    font-weight: 400;
    color: var(--dark-v2);
    letter-spacing: 0.68px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.diagnostics-cell-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 400;
    color: var(--gold-v2);
    letter-spacing: 0.36px;
    margin-bottom: 44px;
}

.diagnostics-cell-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.diagnostics-cell-list li {
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 400;
    color: var(--dark-v2);
    letter-spacing: 0.36px;
    line-height: 1.2;
}

.diagnostics-cell-fade {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 209px;
    background: linear-gradient(180deg, rgba(254, 249, 239, 0) 0.5%, rgb(254, 249, 239) 81.3%);
    pointer-events: none;
    display: none;
}

.diagnostics-cell-cta {
    background-color: var(--cream-dark);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px 48px;
    border-right: none;
}

.diagnostics-cta-title {
    font-family: var(--font-inter);
    font-size: 34px;
    font-weight: 400;
    color: var(--gold-v2);
    letter-spacing: 0.68px;
    line-height: 1.3;
    margin-bottom: 0;
}

.diagnostics-cta-text {
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 400;
    color: var(--gold-v2);
    letter-spacing: 0.36px;
    line-height: 1.5;
    margin-bottom: 0;
}

.diagnostics-cell-cta .btn-pill-outline {
    align-self: flex-start;
    background-color: var(--cream-light);
}

/* ------------------------------------------
   V2 The New Standard Section
   ------------------------------------------ */
.section-standard {
    padding: 100px 0;
    background-color: #fff;
}

.standard-header {
    text-align: center;
    margin-bottom: 48px;
}

.standard-subtitle {
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 400;
    color: var(--dark-v2);
    letter-spacing: 0.36px;
    line-height: 1.6;
    margin-bottom: 0;
}

.standard-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.standard-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.standard-img {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-cream);
    transition: all 0.6s ease;
    position: relative;
}

.standard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.standard-img:hover img {
    transition: all 0.6s ease;
}


.standard-img-short {
    height: auto;
}

.standard-img:hover img.hover-af-img {
    opacity: 0;
    transition: all 0.6s ease;
}

.standard-img img.hover-img{
    opacity: 0;
    position: absolute;
    inset: 0;
    transition: all 0.6s ease;
}

.standard-img:hover img.hover-img{
    opacity: 1;
    cursor: pointer;
}


/* ------------------------------------------
   V2 Results / Before-After Section
   ------------------------------------------ */
.section-results {
    padding: 100px 0;
    background-color: var(--cream);
}

.section-results .section-title-v2 {
    /* color: #fff; */
    text-align: center;
    margin-bottom: 48px;
}

.results-gallery {
    /* display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px; */
    /* max-width: 1000px;
    width: 100%;
    margin: 0 auto; */
}

.results-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.results-img {
    position: relative;
    overflow: hidden;
}

.results-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.results-pair:hover .results-img img {
    transform: scale(1.05);
}

.results-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(26, 26, 26, 0.8);
    color: #fff;
    font-family: var(--font-inter);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 3px;
}

/* ------------------------------------------
   V2 What Makes Us Different
   ------------------------------------------ */
.section-different {
    padding: 100px 0;
    background-color: #fff;
}

.different-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.different-content .section-title-v2 {
    font-size: 48px;
}

.different-content p {
    font-family: var(--font-inter);
    font-size: 16px;
    color: var(--dark-v2);
    line-height: 1.7;
}

.different-image {
    border-radius: 12px;
    overflow: hidden;
}

.different-image img {
    width: 100%;
    height: 477px;
    object-fit: cover;
    border-radius: 12px;
}

/* ------------------------------------------
   V2 Checklist / Comparison Table Section
   ------------------------------------------ */
.section-checklist {
    padding: 100px 0;
    background-color: var(--color-white);
}

.section-checklist .section-title-v2 {
    text-align: center;
    margin-bottom: 48px;
}

/* Outer wrapper: positions the gold stripe and rows */
.cmp-table-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    /* border: 1.5px dashed #c8bfb0; */
    border-radius: 8px;
    overflow: hidden;
}

/* The continuous gold background stripe for the Julia Lee column */
.cmp-gold-stripe {
    position: absolute;
    top: 0;
    bottom: 0;
    /* Align with the us column — 70px wide, positioned right before the "Other" column */
    right: 120px;
    width: 120px;
    /* background-color: var(--gold-v2); */
    z-index: 0;
    pointer-events: none;
}

/* Every row: 3 columns — features | us | them */
.cmp-row {
    display: flex;
    /* grid-template-columns: 1fr 120px 120px; */
    align-items: center;
    /* min-height: 70px; */
    height: 70px;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #D1C9BF;
    margin: 0 40px;
}

.cmp-row:last-child {
    border-bottom: none;
}

/* Header row */
.cmp-header-row {
    min-height: 90px;
    /* border-bottom: 1px solid rgba(193, 181, 168, 0.4); */
    border-bottom: unset;
}

/* Feature name cell */
.cmp-feature-cell {
    font-family: var(--font-inter);
    font-size: 17px;
    font-weight: 400;
    color: var(--dark-v2);
    padding: 0 24px 0 40px;
    line-height: 1.4;
    width: 100%;
    max-width: 644px;
}

/* Julia Lee column cell */
.cmp-us-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gold-v2);
    align-self: stretch;
    height: 100%;
    width: 100%;
    max-width: 247px;
}

/* Logo in header */
.cmp-us-logo {
    padding: 16px 12px;
    flex-direction: column;
    gap: 4px;
    border-radius: 12px 12px 0px 0px;
}

.cmp-us-logo img {
    max-width: 218px;
    width: 100%;
    object-fit: contain;
    /* White tint for visibility on gold */
    filter: brightness(0) invert(1);
}

/* "Other" column cell */
.cmp-them-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    height: 100%;
    width: 100%;
    max-width: 226px;
}

/* "Other" header label */
.cmp-them-header {
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-v2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cpw_row_back_clr {
    background-color: #FAF2E3;
    border-radius: 24px;
}

.cpw_row_back_clr .cmp-row:last-child {
    margin-bottom: 24px;
}

.cpw_row_back_clr .cmp-row:last-child .cmp-us-cell {
    position: relative;
}

.cpw_row_back_clr .cmp-row:last-child .cmp-us-cell:after {
    content: "";
    background-color: var(--gold-v2);
    width: 100%;
    height: 24px;
    position: absolute;
    bottom: -24px;
    border-radius: 0 0 12px 12px;
}

/* ------------------------------------------
   V2 Doctor Section
   ------------------------------------------ */
.section-doctor {
    padding: 100px 0;
    background-color: #fff;
}

.doctor-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: center;
}

.doctor-image {
    border-radius: 12px;
    overflow: hidden;
}

.doctor-image img {
    width: 100%;
    height: 525px;
    object-fit: cover;
    border-radius: 12px;
}

.doctor-content .section-title-v2 {
    font-size: 48px;
}

.doctor-tagline {
    font-family: var(--font-inter);
    font-size: 20px;
    font-weight: 400;
    color: var(--dark-v2);
    line-height: 1.45;
    margin-bottom: 20px;
}

.doctor-content p {
    font-family: var(--font-inter);
    font-size: 16px;
    color: var(--dark-v2);
    line-height: 1.7;
}

/* ------------------------------------------
   V2 Pricing Section
   ------------------------------------------ */
.section-pricing {
    padding: 100px 0;
    background-color: var(--cream);
}

.pricing-header {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-header .section-title-v2 {
    font-size: 42px;
}

.pricing-header .section-title-v2 strong {
    color: var(--gold-v2);
}

.pricing-subtitle {
    font-family: var(--font-inter);
    font-size: 18px;
    color: var(--dark-v2);
    margin-bottom: 8px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
    margin-top: 60px;
    margin-bottom: 60px;
}

h3.pricing_box_item_title {
    color: #B38A00;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 6px;
}

p.pricing_box_item_desc {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: normal;
}

.pricing-dollar {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--dark-v2);
}

.pricing-amount span {
    display: block;
    width: 100%;
}

.pricing-value {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 400;
    color: var(--dark-v2);
    /* border-bottom: 3px solid var(--gold-v2); */
    padding-bottom: 8px;
    line-height: 1;
}

.pricing-amount span sub {
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

.pricing-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16.5px 32px;
    justify-content: center;
    max-width: 265px;
    margin: 0 auto;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-inter);
    font-size: 16px;
    color: var(--dark-v2);
    width: 100%;
    line-height: normal;
}


.pricing_box_item_row {
    display: flex;
    max-width: 1000px;
    width: 100%;
    margin: auto;
    padding: 60px;
    background: #FEF9EF;
    border: 1px solid #D1C9BF;
    box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    justify-content: space-between;
    gap: 30px;
}

.pricing_box_item_col1,
.pricing_box_item_col2 {
    width: 100%;
}

.pricing_box_item_col1 {
    max-width: 454px;
}

.pricing_box_item_col2 {
    max-width: 265px;
}

.pricing_box_item_col1 a.btn-pill.btn-pill-gold {
    width: 100%;
}

span.pricing_divider {
    position: relative;
}

span.pricing_divider:after {
    content: "";
    background-color: #D1C9BF;
    width: 1px;
    height: 100%;
    position: absolute;
}

@media only screen and (max-width: 767px) {
    .pricing_box_item_row {
        flex-wrap: wrap;
        padding: 40px 30px;
    }

    span.pricing_divider {
        position: relative;
        width: 100%;
    }

    span.pricing_divider:after {
        width: 100%;
        height: 1px;
        left: 0;
    }

    .pricing-amount {
        margin-top: 40px;
        margin-bottom: 30px;
    }
}

/* ------------------------------------------
   V2 Testimonials Section
   ------------------------------------------ */
.section-testimonials-v2 {
    padding: 100px 0;
    background-color: #fff;
}

.section-testimonials-v2 .section-title-v2 {
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-v2-card {
    background-color: #fff;
    border: 1px solid var(--border-cream);
    border-radius: 12px;
    padding: 24px;
    transition: box-shadow 0.3s ease;
}

.testimonial-v2-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-v2-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.testimonial-v2-name {
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-v2);
}

.testimonial-v2-stars {
    display: flex;
    gap: 4px;
}

.testimonial-v2-text {
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 400;
    color: var(--dark-v2);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-v2-more {
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 500;
    color: var(--gold-v2);
    text-decoration: underline;
}

/* ------------------------------------------
   V2 CTA Section
   ------------------------------------------ */
.section-cta-v2 {
    padding: 100px 0;
    background-color: var(--cream);
}

.cta-v2-header {
    text-align: center;
    margin-bottom: 32px;
}

.cta-v2-subtitle {
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 400;
    color: var(--dark-v2);
    letter-spacing: 0.36px;
    margin-bottom: 0;
}

.cta-v2-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ------------------------------------------
   V2 Footer
   ------------------------------------------ */
.site-footer-v2 {
    background-color: var(--cream);
    padding: 48px 0 0;
}

.footer-v2-container {
    max-width: var(--container-v2);
    margin: 0 auto;
    padding: 0 42px;
}

.footer-v2-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-warm);
}

.footer-v2-top .footer-logo-img {
    max-height: 60px;
    margin-bottom: 0;
}

.footer-v2-social {
    display: flex;
    gap: 12px;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border-warm);
    color: var(--dark-v2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    background-color: var(--gold-v2);
    border-color: var(--gold-v2);
    color: #fff;
}

.footer-social-icon:hover path {
    fill: #fff;
}

.footer-v2-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 48px 0;
}

.footer-v2-heading {
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-v2);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-v2-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-v2-links li {
    margin-bottom: 12px;
}

.footer-v2-links a {
    font-family: var(--font-inter);
    font-size: 15px;
    color: var(--dark-v2);
    opacity: 0.7;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-v2-links a:hover {
    color: var(--gold-v2);
    opacity: 1;
}

.footer-v2-social-col {
    flex-wrap: wrap;
}

.footer-v2-bottom {
    border-top: 1px solid var(--border-warm);
    padding: 20px 0;
    text-align: center;
}

.footer-v2-bottom p {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--dark-v2);
    opacity: 0.6;
    margin-bottom: 0;
}

.footer-v2-bottom a {
    color: var(--dark-v2);
    opacity: 0.6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-v2-bottom a:hover {
    color: var(--gold-v2);
    opacity: 1;
}

/* ------------------------------------------
   V2 Responsive: Tablet
   ------------------------------------------ */
@media (max-width: 1200px) {
    .container-v2 {
        padding: 0 24px;
    }

    .nav-v2-inner {
        padding: 12px 24px;
    }

    .hero-v2-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        padding: 0 24px;
    }

    .hero-v2-title {
        font-size: 38px;
    }

    .section-title-v2 {
        font-size: 38px;
    }

    .diagnostics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diagnostics-cell:nth-child(2) {
        border-right: none;
    }

    .diagnostics-cell:nth-child(3) {
        border-right: 1px solid var(--border-warm);
    }

    .diagnostics-cell:nth-child(3),
    .diagnostics-cell:nth-child(4) {
        padding-top: 60px;
    }

    .diagnostics-cell:nth-child(5),
    .diagnostics-cell:nth-child(6) {
        border-bottom: none;
    }

    .standard-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .doctor-layout {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    /* Comparison table tablet: shrink icon columns slightly */
    .cmp-row {
        grid-template-columns: 1fr 100px 100px;
    }

    .cmp-gold-stripe {
        right: 100px;
        width: 100px;
    }
}

/* ------------------------------------------
   V2 Responsive: Nav Mobile (≤1200px)
   ------------------------------------------ */
@media (max-width: 1200px) {

    /* Show hamburger button */
    .main-nav-v2 .hamburger {
        display: flex;
    }

    /* Keep nav actions (hamburger) above the overlay */
    .main-nav-v2 .nav-v2-actions {
        position: relative;
        z-index: 1002;
    }

    /* Remove backdrop-filter so it does not create a containing block
       for position:fixed children (Chromium behaviour) */
    .main-nav-v2 .nav-v2-inner {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    /* Full-screen overlay drawer — sized by top/bottom, NOT height:100vh */
    .nav-v2-links {
        display: none;
        position: fixed;
        top: 151px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        z-index: 1001;
        padding: 20px 20px 30px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        height: auto;
    }


    body.menu-open .main-nav-v2 div#navMenu {
        top: 123px;
    }
    
    body.is-homepage.menu-open .main-nav-v2.nav-transparent div#navMenu {
        top: 151px;
    }

    .main-nav-v2.nav-transparent.nav-scrolled div#navMenu {
        top: 84px;
    }

    .main-nav-v2.nav-scrolled nav#mainNav {
        top: 84px;
    }

    .nav-v2-links.is-open {
        display: block;
    }
    
    body.menu-open .userway_buttons_wrapper {
        display: none !important;
    }
    
    body.menu-open .main-nav-v2.nav-scrolled div#navMenu {
        top: 84px !important;
    }
    
    body.is-homepage.menu-open .main-nav-v2.nav-scrolled div#navMenu {
        height: 100vh;
    }

    .nav-v2-list {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .nav-v2-link {
        color: var(--dark-v2);
        padding: 14px 0;
        border-bottom: 1px solid #eee;
        font-size: 16px;
        justify-content: space-between;
        width: 100%;
    }

    .nav-v2-link svg {
        width: 20px;
        height: 20px;
    }

    /* Disable hover-based dropdowns in mobile mode */
    .nav-v2-item:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
    }

    /* Click-based submenu in the overlay */
    .nav-v2-item .dropdown-menu {
        position: static;
        box-shadow: none;
        border-top: none;
        padding: 0 0 8px 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        transition: none;
    }

    .nav-v2-item.dropdown-open .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .nav-v2-item .dropdown-menu li a {
        font-size: 16px;
    }
}

/* ------------------------------------------
   V2 Responsive: Mobile (≤768px)
   ------------------------------------------ */
@media (max-width: 768px) {
    .container-v2 {
        padding: 0 16px;
    }

    .nav-v2-inner {
        padding: 12px 16px;
    }

    .hero-v2 {
        min-height: 600px;
        padding-bottom: 40px;
    }

    .hero-v2-content {
        padding: 0 16px;
    }

    .hero-v2-title {
        font-size: 32px;
    }

    .hero-v2-subtitle {
        font-size: 16px;
    }

    .hero-v2-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-stat-number {
        font-size: 20px;
    }

    .hero-stat-label {
        font-size: 14px;
    }

    .section-title-v2 {
        font-size: 30px;
    }

    .services-v2-grid {
        grid-template-columns: 1fr;
    }

    .diagnostics-grid {
        grid-template-columns: 1fr;
    }

    .diagnostics-cell {
        border-right: none !important;
        padding: 30px 24px;
    }

    .diagnostics-cell-title {
        font-size: 26px;
    }

    .standard-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .standard-img-tall {
        height: 100%;
    }

    .standard-img-short {
        height: 100%;
    }

    .results-gallery {
        grid-template-columns: 1fr;
    }

    .different-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .different-image img {
        height: 300px;
    }

    /* Comparison table mobile */
    .cmp-table-wrap {
        max-width: 100%;
    }

    .cmp-gold-stripe {
        right: 60px;
        width: 60px;
    }

    .cmp-row {
        grid-template-columns: 1fr 60px 60px;
        min-height: 56px;
    }

    .cmp-header-row {
        min-height: 70px;
    }

    .cmp-feature-cell {
        font-size: 14px;
        padding: 0 10px 0 16px;
    }

    .cmp-us-logo img {
        max-width: 180px;
    }

    .doctor-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .doctor-image img {
        height: 100%;
        width: 100%;
    }
    .doctor-layout .doctor-image{
        width: fit-content;
    }

    .testimonials-v2-grid {
        grid-template-columns: 1fr;
    }

    .footer-v2-top {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .footer-v2-columns {
        grid-template-columns: 1fr 1fr;
    }

    .services-v2-buttons,
    .cta-v2-buttons {
        flex-direction: column;
        align-items: center;
    }

    .pricing-features {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 24px;
    }

    .top-bar-v2-link {
        font-size: 14px;
    }

    .section-services-v2,
    .section-diagnostics,
    .section-standard,
    .section-results,
    .section-different,
    .section-checklist,
    .section-doctor,
    .section-pricing,
    .section-testimonials-v2,
    .section-cta-v2 {
        padding: 60px 0;
    }
    
    .same_grid_container_blk {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 575.98px) {
    .doctor-layout .doctor-image {
        width: 100%;
    }
    .same_grid_container_575_blk {
        grid-template-columns: 1fr !important;
    }
}

/* ------------------------------------------
   V2 Responsive: Small Mobile
   ------------------------------------------ */
@media (max-width: 480px) {
    .standard-gallery {
        grid-template-columns: 1fr;
    }

    .footer-v2-columns {
        grid-template-columns: 1fr;
    }

    .hero-v2-stats {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stat-divider {
        width: 60px;
        height: 2px;
    }
    .hero-v2-stats {
        display: none !important;
    }
}

/*------------------------Homepage Gallery Section -------------------------*/

.trnasformation-sliders {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 20px;
}

.comparison-content {
    padding: 0 6px;
}

.comparison-content h4 {
    padding-top: 15px;
    margin-bottom: 10px;
    text-align: center;
}

.comparison-content p {
    margin-bottom: 0px;
    text-align: center;
}

.repid-smile-bg .comparison-main .comparison {
    padding-bottom: 92%;
}

.repid-smile-bg .comparison-main>* {
    padding: 0;
}

.comparison {
    width: 100%;
    padding-bottom: 52.2%;
    overflow: hidden;
    position: relative;
}

.home .comparison {
    padding-bottom: 54%;
}

.comparison-content p {
    font-size: 14px;
}

.figure {
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover;
    font-size: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    background-image: var(--after-img);

}

.divisor {
    background-size: cover;
    position: absolute;
    width: 50%;
    -webkit-box-shadow: 0 5px 10px -2px rgba(0, 0, 0, .3);
    box-shadow: 0 5px 10px -2px rgba(0, 0, 0, .3);
    bottom: 0;
    height: 100%;
    background-image: var(--before-img);
}

.divisor:before,
.divisor:after {
    content: "";
    position: absolute;
    right: -2px;
    width: 4px;
    height: calc(50% - 20px);
    background: #fff;
    z-index: 3;
}

.divisor:before {
    top: 0;
    -webkit-box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, .3);
    box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, .3);
}

.divisor:after {
    bottom: 0;
    -webkit-box-shadow: 0 3px 8px 1px rgba(0, 0, 0, .3);
    box-shadow: 0 3px 8px 1px rgba(0, 0, 0, .3);
}

figure.figure::before {
    position: absolute;
    content: "Before";
    top: 45%;
    bottom: 0;
    left: 10px;
    max-width: calc(50% - 15px);
    width: 89px;
    height: 36px;
    z-index: 1;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    font-family: var(--recoleta);
    background-color: #00000080;
    padding: 7px 9px;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    opacity: 0;
    transition: opacity .3s ease-in-out, transform .3s ease-in-out;

}

figure.figure::after {
    position: absolute;
    content: "After";
    max-width: calc(50% - 15px);
    width: 89px;
    top: 45%;
    bottom: 0px;
    right: 10px;
    height: 36px;
    z-index: 1;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    font-family: var(--recoleta);
    background-color: #00000080;
    padding: 7px 12px;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    opacity: 0;
    transition: .3s ease-in-out, transform .3s ease-in-out;

}

figure:hover.figure::after,
figure:hover.figure::before {

    opacity: 1;
    transition: opacity .3s ease-in-out, transform .3s ease-in-out;


}

.divisor span {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.handle {
    position: absolute;
    height: 40px;
    width: 40px;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    z-index: 1;
    border-radius: 100%;
    background-color: #fff;
}

.handle:before,
.handle:after {
    content: "";
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute;
    top: 50%;
    margin-top: -6px;
}

.handle:before {
    border-right: 6px solid #B38A00;
    left: 50%;
    margin-left: -17px;
}

.handle:after {
    border-left: 6px solid #B38A00;
    right: 50%;
    margin-right: -17px;
}

.comparison input[type=range] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: absolute;
    top: 50%;
    left: -25px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: transparent;
    width: calc(100% + 50px);
    z-index: 2;
    cursor: col-resize;
    border: none;
    max-width: inherit;
    padding: 0;
}

input[type=range]:focus,
input[type=range]:active {
    border: none;
    outline: none;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: 0 0;
    border: 3px solid #fff;
    -webkit-box-shadow: 0 0 8px 1px rgba(0, 0, 0, .3);
    box-shadow: 0 0 8px 1px rgba(0, 0, 0, .3);
}

input[type=range]::-moz-range-track {
    -moz-appearance: none;
    height: 15px;
    width: 100%;
    background-color: transparent;
    position: relative;
    outline: none;
}

.comprison-before-after {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.comprison-before-after>* {
    padding: 0;
    border-radius: 4px;
    overflow: hidden;
}


.trnasformation-slider {
    background-color: rgba(255, 255, 255, 1) !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: 0 25px 50px -10px rgb(0 0 0 / 20%) !important;
    padding: 15px 40px;
}

.Upper_container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 15px 40px;
}

.transformation_container {
    max-width: 1400px;
    width: 100%;
    margin: auto;
    /* padding: 15px 27px; */
    background-color: #fff;
}

section.transformation-section.section_padding {
    padding: 80px 40px;
}

@media only screen and (max-width: 1400px) {}

@media only screen and (max-width: 991px) {
    .transformation_container {
        padding: 15px 0px;

    }

    .Upper_container {
        padding: 15px 15px;
    }

    section.transformation-section.section_padding {
        padding: 60px 40px;
    }
}

@media only screen and (max-width: 767px) {

    .trnasformation-sliders {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .transformation-title.common-title.heading-pb.text-center h3 {
        font-size: 30px;
        font-weight: 600;
    }

    section.transformation-section.section_padding {
        padding: 40px 40px;
    }
}

@media only screen and (max-width: 575px) {
    .comparison-content {
        margin: 0;
    }

    .Group_btn li a {

        font-size: 12px;
    }
}

@media only screen and (max-width: 480px) {}

/*------------------------Homepage Gallery Section -------------------------*/

.insurance_logo_items_col1 {
    text-align: center;
}

.insurance_logo_items_col2 {
    text-align: center;
}

ul.insurance_logo_items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 50px !important;
}

ul.insurance_logo_items li {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    max-width: 250px;
    margin: auto;
}

.insurance_logo_items_inner_col1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 50px !important;
}

ul.insurance_logo_items_inner_col1 li {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    padding: 30px;
}

ul.insurance_logo_items_inner_col1 li img {
    margin: auto;
    width: 100%;
    max-width: 280px;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 575px) {
    ul.insurance_logo_items {
        grid-template-columns: 1fr;
    }

    .insurance_logo_items_inner_col1 {
        grid-template-columns: 1fr;
    }
}


@media only screen and (min-width: 576px) and (max-width: 991px) {
    ul.insurance_logo_items {
        grid-template-columns: 1fr 1fr;
    }

}

/*----------------*/

@media only screen and (min-width: 992px) {
    .two_col_reverse_blk {
        display: flex;
    }

    .two_col_reverse_blk div {
        width: 100%;
    }

    .two_col_reverse_blk .two-col-img {
        order: -1 !important;
    }
}


 
/* ==============Doctor Page css Start=================== */

.doctor-col {
    background: #eee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section_padding{
    padding: 80px 0px;
}

@media only screen and (max-width: 768.98px){
    .doctor-container{
        grid-template-columns: 1fr !important;
    }
    .doctor-col {
       width: 100%;
       max-width: 300px;
    }
    .doctor-col img{
        width:100%;
        height: 100%;
        object-fit: cover;
    }
    .section_padding{
        padding: 60px 0px;
    }
}

@media only screen and (max-width: 480.98px){
    .doctor-col {
       width: 100%;
       max-width: 100%;
    }
}



/*-----------------------*/

.testimonial-v2-card a.testimonial-v2-more {
    cursor: pointer;
    text-decoration: unset;
}

.testimonial-v2-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* collapsed */
    -webkit-box-orient: vertical;
    transition: all 0.3s ease;
}

.testimonial-v2-card.active .testimonial-v2-text {
    overflow: auto;
}


/*------------------Sitemap Page-----------------*/

 
.site-map-menu-blk {
  padding: 80px 24px;
}

.site_map_menu_blk_container {
  max-width: 1000px;
  width: 100%;
  margin: auto;
}

.site-map-menu {
  margin: 0;
  padding: 0;
  display: grid;
  flex-wrap: wrap;
  gap: 15px;
}

.site-map-menu li a {
  text-align: left;
  color: #1f1f1f;
  font-weight: 500;
  position: relative;
  padding-left: 25px;
  width: 100%;
  max-width: 100%;
  cursor: pointer;
}

.site-map-menu li a:hover {
  color: var(--color-gold);
}

.site-map-menu li {
  list-style: none;
  padding-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  max-width: fit-content;
}

.site-map-menu ul.sitemap-sub-menu {
  padding-top: 0;
  padding-left: 30px;
  display: grid;
  flex-wrap: wrap;
  gap: 15px;
}

.site-map-menu li>ul.sitemap-sub-menu {
  padding-top: 15px !important;
}

.site-map-menu li a:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  background-image: url(/assets/images/list_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 5px;
}

@media (max-width: 991px) {
    .site-map-menu-blk {
        padding: 50px 24px;
    }
}
/*------------------Sitemap Page-----------------*/